input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"merge_method": {"type": "string"}}, "required": ["merge_method"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"merge_method" : "rebase"}
json_instruct
{"type": "object", "properties": {"merge_method": {"type": "string"}}, "required": ["merge_method"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"width" : 0.2836144, "rotation" : -0.92222726, "xCenter" : 0.66898614, "yCenter" : 0.43397027, "height" : 0.5042033}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "01b53e35ff5f06004a57", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cas": {"type": "string"}, "cid": {"type": "integer"}, "iupac_name": {"type": "string"}, "canonical_smiles": {"type": "string"}, "isomeric_smiles": {"type": "string"}, "inchi": {"type": "string"}, "inchikey": {"type": "string"}, "molecular_formula": {"type": "string"}, "properties": {"type": "object", "properties": {"research_octane_number": {"type": "object", "properties": {"value": {"type": "number"}, "source": {"type": "string"}}, "required": ["value", "source"]}, "motor_octane_number": {"type": "object", "properties": {"value": {"type": "number"}, "source": {"type": "string"}}, "required": ["value", "source"]}, "octane_sensitivity": {"type": "object", "properties": {"value": {"type": "number"}, "source": {"type": "string"}}, "required": ["value", "source"]}}, "required": ["research_octane_number", "motor_octane_number", "octane_sensitivity"]}, "compound_groups": {"type": "array", "items": {}}}, "required": ["cas", "cid", "iupac_name", "canonical_smiles", "isomeric_smiles", "inchi", "inchikey", "molecular_formula", "properties", "compound_groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cas" : "1453-24-3", "cid" : 73937, "iupac_name" : "1-ethylcyclohexene", "canonical_smiles" : "CCC1=CCCCC1", "isomeric_smiles" : "CCC1=CCCCC1", "inchi" : "1S/C8H14/c1-2-8-6-4-3-5-7-8/h6H,2-5,7H2,1H3", "inchikey" : "IFVMAGPISVKRAR-UHFFFAOYSA-N", "molecular_formula" : "C8H14", "properties" : {"research_octane_number" : {"value" : 85.45, "source" : "[1]"}, "motor_octane_number" : {"value" : 70.5, "source" : "[1]"}, "octane_sensitivity" : {"value" : 15.4, "source" : "[1]"}}, "compound_groups" : []}
json_instruct
{"type": "object", "properties": {"cas": {"type": "string"}, "cid": {"type": "integer"}, "iupac_name": {"type": "string"}, "canonical_smiles": {"type": "string"}, "isomeric_smiles": {"type": "string"}, "inchi": {"type": "string"}, "inchikey": {"type": "string"}, "molecular_formula": {"type": "string"}, "properties": {"type": "object", "properties": {"research_octane_number": {"type": "object", "properties": {"value": {"type": "number"}, "source": {"type": "string"}}, "required": ["value", "source"]}, "motor_octane_number": {"type": "object", "properties": {"value": {"type": "number"}, "source": {"type": "string"}}, "required": ["value", "source"]}, "octane_sensitivity": {"type": "object", "properties": {"value": {"type": "number"}, "source": {"type": "string"}}, "required": ["value", "source"]}}, "required": ["research_octane_number", "motor_octane_number", "octane_sensitivity"]}, "compound_groups": {"type": "array", "items": {}}}, "required": ["cas", "cid", "iupac_name", "canonical_smiles", "isomeric_smiles", "inchi", "inchikey", "molecular_formula", "properties", "compound_groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "Type", "name" : "CSSNamespaceRule", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/CSSNamespaceRule", "description" : "The CSSNamespaceRule interface describes an object representing a single CSS @namespace at-rule.", "refs" : [{"name" : "CSS Object Model (CSSOM)", "href" : "https://drafts.csswg.org/cssom/#the-cssnamespacerule-interface", "description" : "(CSSOM) # the-cssnamespacerule-interface"}]}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"hello": {"type": "string"}, "select_language": {"type": "string"}, "browser_using": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "de": {"type": "string"}, "es": {"type": "string"}}, "required": ["hello", "select_language", "browser_using", "en", "fr", "de", "es"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hello" : "Bonjour!", "select_language" : "S\u00e9lectionnez une langue \u00e0 l'aide des boutons ci-dessous:", "browser_using" : "Votre navigateur est localis\u00e9e \u00e0:", "en" : "en-GB", "fr" : "fr-FR", "de" : "de-DE", "es" : "es-ES"}
json_instruct
{"type": "object", "properties": {"hello": {"type": "string"}, "select_language": {"type": "string"}, "browser_using": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "de": {"type": "string"}, "es": {"type": "string"}}, "required": ["hello", "select_language", "browser_using", "en", "fr", "de", "es"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1JXFzMzrQTJCiGw36YNQGg2Tmt1hTHy7ZT": {"type": "string"}}, "required": ["1JXFzMzrQTJCiGw36YNQGg2Tmt1hTHy7ZT"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL", "cert_auth_type" : "web", "cert_sign" : "HLlQzthfxUh45v3boPw+AoPsW1R17hLle336fT695XIHc2AUCAZYZEnXZFuFlx7mtBvczfQHrXtaFPperp30c5o=", "cert_user_id" : "flux@zeroid.bit", "files" : {"data.json" : {"sha512" : "754a1aa8ad1574f0f7077c9a574445892104e0e0472ee1411c06c3c23e43cb25", "size" : 520}}, "inner_path" : "data/users/1JXFzMzrQTJCiGw36YNQGg2Tmt1hTHy7ZT/content.json", "modified" : 1472064576.463, "signs" : {"1JXFzMzrQTJCiGw36YNQGg2Tmt1hTHy7ZT" : "HBh26qIN2etsD8tbsFFme1BjP6YBzX3xvv7z5utwnZEZxMskR9oIun56pdW+hc/Q86j8SqieGc9pZ1eb/JxbNsw="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1JXFzMzrQTJCiGw36YNQGg2Tmt1hTHy7ZT": {"type": "string"}}, "required": ["1JXFzMzrQTJCiGw36YNQGg2Tmt1hTHy7ZT"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$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"}, "user": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "dataElements": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["name", "user", "dataElements"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "DataElementGroupA", "user" : {"id" : "userabcdefA"}, "dataElements" : [{"id" : "deabcdefghA"}, {"id" : "deabcdefghB"}, {"id" : "deabcdefghC"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "dataElements": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["name", "user", "dataElements"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "010300020403", "variable1" : 0.4045, "variable2" : -0.8897, "variable3" : "B"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "", "user" : "glennpj", "url" : "https://api.github.com/repos/spack/spack/issues/16160", "updated_at" : "2020-04-20 15:23:40", "created_at" : "2020-04-19 22:58:06", "closed_at" : "2020-04-20 07:26:22", "state" : "closed", "title" : "New package: ngmerge", "number" : 16160, "milestone" : null, "labels" : [], "id" : 602844177, "html_url" : "https://github.com/spack/spack/pull/16160", "assignees" : [], "comments" : 0}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locked" : false, "starred" : false, "name" : "latestCommit", "command" : "const { document, window } = fetchSync.dom(`https://github.com/${input.trim()}/commits/master`);\nprint([\n document.querySelector('.sha').textContent,\n document.querySelector('.commit-title a').textContent,\n document.querySelector('.commit-author').textContent,\n 'committed',\n document.querySelector('.commit-meta relative-time').textContent,\n].map(d => d.replace(/\\s+/,' ').trim()).join` {dc}|{/} `);"}
json_instruct
{"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "set": {"type": "string"}, "source": {"type": "string"}, "depends": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "set", "source", "depends"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "exceptions", "set" : "erl-0.12.0-20180919", "source" : "https://github.com/purerl/package-sets.git", "depends" : ["maybe", "either", "effect"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "set": {"type": "string"}, "source": {"type": "string"}, "depends": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "set", "source", "depends"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : 58021, "cartId" : "0dce03aa-d476-47ac-82ad-994bed916511", "preferredProducts" : [625], "productReviews" : [{"productId" : 2346, "reviewText" : "My co-worker Luka has one of these. He says it looks purple.", "reviewDate" : "2017-07-09T23:39:23.248775+03:00"}, {"productId" : 1587, "reviewText" : "i use it biweekly when i'm in my greenhouse.", "reviewDate" : "2020-04-27T11:37:13.4370762+03:00"}, {"productId" : 1502, "reviewText" : "The box this comes in is 5 yard by 6 centimeter and weights 12 kilogram.", "reviewDate" : "2018-08-08T13:35:16.7679241+03:00"}, {"productId" : 2128, "reviewText" : "The box this comes in is 4 light-year by 5 inch and weights 11 megaton!!", "reviewDate" : "2017-04-13T15:12:44.0333375+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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Blogosphere": {"type": "array", "items": {"type": "string"}}}, "required": ["Blogosphere"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Blogosphere" : ["Blog", "MemeticMutation", "Blog"]}
json_instruct
{"type": "object", "properties": {"Blogosphere": {"type": "array", "items": {"type": "string"}}}, "required": ["Blogosphere"], "$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": {"deliverable": {"type": "string"}, "notes": {"type": "string"}, "organisation": {"type": "string"}, "start-date": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "point": {"type": "string"}, "ownership-status": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["deliverable", "notes", "organisation", "start-date", "minimum-net-dwellings", "planning-permission-status", "hectares", "site-plan-url", "maximum-net-dwellings", "point", "ownership-status", "site", "name", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.498978, 52.522449]}, "properties" : {"deliverable" : "yes", "notes" : "The site comprises of informal car parking, a residential property and club with some old industrial buildings. Allocated as a Non-strategic site in NBBC Borough Plan 2011-2031, (NUN043)", "organisation" : "local-authority-eng:NUN", "start-date" : "2017-12-31", "minimum-net-dwellings" : "67", "planning-permission-status" : "not permissioned", "hectares" : "0.68", "site-plan-url" : "https://www.nuneatonandbedworth.gov.uk/downloads/file/2200/brownfield_register_-_individual_site_maps_2019", "maximum-net-dwellings" : "67", "point" : "POINT(-1.498978 52.522449)", "ownership-status" : "not owned by a public authority", "site" : "BF002", "name" : "BF002", "site-address" : "Stockingford Sports and Social Club and Bungalow, Arbury Road, Nuneaton", "slug" : "/brownfield-land/local-authority-eng/NUN/BF002", "entity" : 489841, "entry-date" : "2020-03-10"}}
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": {"deliverable": {"type": "string"}, "notes": {"type": "string"}, "organisation": {"type": "string"}, "start-date": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "point": {"type": "string"}, "ownership-status": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["deliverable", "notes", "organisation", "start-date", "minimum-net-dwellings", "planning-permission-status", "hectares", "site-plan-url", "maximum-net-dwellings", "point", "ownership-status", "site", "name", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$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"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1.1"], "meta" : {"description" : "tlp is a python library that parses a body of text for indicators of compromise (iocs) using natural language processing modules to derive their context", "homepage" : "http://github.com/ministryofpromise/tlp", "license" : "MIT"}, "versions" : {"0.1.0" : {"sha256" : "2254fd81c49b9fb8a46e9c4d7310da9f9d7dbc4c8de8894c6125208478604449", "url" : "https://files.pythonhosted.org/packages/66/2e/cb4c4b554920c107501440890867a9323a7997dd526d26b9c97902fe4989/tlp-0.1.0.tar.gz"}, "0.1.1" : {"sha256" : "aae051a643d1961db6fcd6315e71455f1c2f6682cb802ebf6027a2cfb023391a", "url" : "https://files.pythonhosted.org/packages/82/f3/e939482fef0d51acc9eaa81c09e8b6cba411ae08975472a267c8c981a4eb/tlp-0.1.1.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.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CollapsedMorph"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"ungit": {"type": "string"}}, "required": ["ungit"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"ungit" : "^1.5.18"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"ungit": {"type": "string"}}, "required": ["ungit"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"gender": {"type": "string"}, "species": {"type": "string"}, "birthday": {"type": "string"}, "games": {"type": "object", "properties": {"afe+": {"type": "object", "properties": {"personality": {"type": "string"}, "clothes": {"type": "string"}, "song": {"type": "string"}}, "required": ["personality", "clothes", "song"]}, "nl": {"type": "object", "properties": {"personality": {"type": "string"}, "clothes": {"type": "string"}, "song": {"type": "string"}, "phrase": {"type": "string"}, "skill": {"type": "string"}, "goal": {"type": "string"}, "fear": {"type": "string"}, "quote": {"type": "string"}, "siblings": {"type": "string"}, "favoriteStyle": {"type": "string"}, "dislikedStyle": {"type": "string"}, "favoriteColor": {"type": "string"}, "coffee": {"type": "object", "properties": {"beans": {"type": "string"}, "milk": {"type": "string"}, "sugar": {"type": "string"}}, "required": ["beans", "milk", "sugar"]}}, "required": ["personality", "clothes", "song", "phrase", "skill", "goal", "fear", "quote", "siblings", "favoriteStyle", "dislikedStyle", "favoriteColor", "coffee"]}, "nh": {"type": "object", "properties": {"personality": {"type": "string"}, "phrase": {"type": "string"}, "song": {"type": "string"}}, "required": ["personality", "phrase", "song"]}}, "required": ["afe+", "nl", "nh"]}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["gender", "species", "birthday", "games", "name", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gender" : "female", "species" : "pig", "birthday" : "9-3", "games" : {"afe+" : {"personality" : "normal", "clothes" : "yodel-shirt", "song" : "Forest Life"}, "nl" : {"personality" : "normal", "clothes" : "mint-shirt", "song" : "Forest Life", "phrase" : "schep", "skill" : "Memorizing stuff", "goal" : "Gymnast", "fear" : "Monster Mask", "quote" : "All a plant needs is love...and sun and water and soil.", "siblings" : "Youngest of 3 kids", "favoriteStyle" : "Cute/Fancy", "dislikedStyle" : "Rock", "favoriteColor" : "Green", "coffee" : {"beans" : "Blend", "milk" : "The regular amount of milk", "sugar" : "2 spoonfuls of sugar"}}, "nh" : {"personality" : "normal", "phrase" : "schep", "song" : "Forest Life"}}, "name" : "Maggie", "id" : "maggie"}
json_instruct
{"type": "object", "properties": {"gender": {"type": "string"}, "species": {"type": "string"}, "birthday": {"type": "string"}, "games": {"type": "object", "properties": {"afe+": {"type": "object", "properties": {"personality": {"type": "string"}, "clothes": {"type": "string"}, "song": {"type": "string"}}, "required": ["personality", "clothes", "song"]}, "nl": {"type": "object", "properties": {"personality": {"type": "string"}, "clothes": {"type": "string"}, "song": {"type": "string"}, "phrase": {"type": "string"}, "skill": {"type": "string"}, "goal": {"type": "string"}, "fear": {"type": "string"}, "quote": {"type": "string"}, "siblings": {"type": "string"}, "favoriteStyle": {"type": "string"}, "dislikedStyle": {"type": "string"}, "favoriteColor": {"type": "string"}, "coffee": {"type": "object", "properties": {"beans": {"type": "string"}, "milk": {"type": "string"}, "sugar": {"type": "string"}}, "required": ["beans", "milk", "sugar"]}}, "required": ["personality", "clothes", "song", "phrase", "skill", "goal", "fear", "quote", "siblings", "favoriteStyle", "dislikedStyle", "favoriteColor", "coffee"]}, "nh": {"type": "object", "properties": {"personality": {"type": "string"}, "phrase": {"type": "string"}, "song": {"type": "string"}}, "required": ["personality", "phrase", "song"]}}, "required": ["afe+", "nl", "nh"]}, "name": {"type": "string"}, "id": {"type": "string"}}, "required": ["gender", "species", "birthday", "games", "name", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id_6474": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6474"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_6474" : {"publicdate" : "2012-05-07 06:33:49", "title" : "The Pastor's Wife"}}
json_instruct
{"type": "object", "properties": {"id_6474": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6474"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"PaintTheTownRed": {"type": "array", "items": {"type": "string"}}}, "required": ["PaintTheTownRed"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PaintTheTownRed" : ["CruelAndUnusualDeath", "EverybodyWasKungFuFighting", "AxCrazy", "SerialKiller", "ProfessionalKiller", "BloodyHandprint", "HighPressureBlood", "BOOMHeadshot", "YourHeadASplode", "OverdrawnAtTheBloodBank", "HeroicBSOD", "Gorn", "LudicrousGibs", "BloodlessCarnage", "PaintTheIndexRed", "AxeCrazy", "BloodyHilarious", "LudicrousGibs", "MeatMoss", "GoMadFromTheRevelation", "NoBodyLeftBehind", "DiscussedTrope", "Gorn", "SuccessionGame", "Gorn", "AxCrazy", "BloodlessCarnage", "GameMod", "LudicrousGibs", "GatlingGood", "BloodyHilarious", "BlackComedy", "TheVirus", "NamesTheSame", "LongDeadBadass", "FantasticRacism", "TheBerserker", "EternalHero", "GodInHumanForm", "GodIsDead", "IHaveManyNames", "FounderOfTheKingdom", "PhysicalGod", "AbusivePrecursors", "UnstoppableRage", "BloodSplatteredWarrior", "OurGodsAreDifferent", "CueTheRain", "RealityEnsues", "AoE", "SuccessionGame", "Gorn", "RageBreakingPoint", "DrunkOnTheDarkSide", "OneManArmy", "WickedCultured", "FullyEmbracedFiend", "AxCrazy", "HollywoodCyborg", "ButtMonkey", "CouldntFindAPen", "CrossesTheLineTwice", "EdibleAmmunition", "FunetikAksent", "DeadBabyComedy"]}
json_instruct
{"type": "object", "properties": {"PaintTheTownRed": {"type": "array", "items": {"type": "string"}}}, "required": ["PaintTheTownRed"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "runtime": {"type": "string"}, "memory": {"type": "integer"}, "timeout": {"type": "integer"}, "role": {"type": "string"}}, "required": ["name", "description", "runtime", "memory", "timeout", "role"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bar", "description" : "Node.js example function", "runtime" : "nodejs4.3", "memory" : 128, "timeout" : 5, "role" : "arn:aws:iam::293503197324:role/lambda"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "runtime": {"type": "string"}, "memory": {"type": "integer"}, "timeout": {"type": "integer"}, "role": {"type": "string"}}, "required": ["name", "description", "runtime", "memory", "timeout", "role"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 178594, "UUID" : "ABCDCBAE-AC10-4640-BE23-5E7132E4D193", "DataProviderID" : 29, "DataProvidersReference" : "6880", "OperatorID" : 86, "AddressInfo" : {"ID" : 178953, "Title" : "Schaffhauser Stra\u00dfe 8", "AddressLine1" : "Schaffhauser Stra\u00dfe 8", "Town" : "Jestetten", "Postcode" : "79798", "CountryID" : 87, "Latitude" : 47.651006, "Longitude" : 8.57226, "DistanceUnit" : 0}, "Connections" : [{"ID" : 279212, "ConnectionTypeID" : 33, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 150, "CurrentTypeID" : 30}, {"ID" : 279213, "ConnectionTypeID" : 33, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 150, "CurrentTypeID" : 30}], "StatusTypeID" : 0, "DateLastStatusUpdate" : "2021-07-12T02:39:00Z", "MetadataValues" : [{"ID" : 10888, "MetadataFieldID" : 4, "ItemValue" : "Data from the German chargepoint registry provided by Bundesnetzagentur.de under the CC-BY 4.0 license"}], "DataQualityLevel" : 3, "DateCreated" : "2021-07-08T09:50:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"edges" : [[20, 40], [39, 40], [40, 31], [40, 41], [5, 40], [40, 33], [37, 6], [40, 34], [40, 11], [40, 28], [2, 40], [30, 40], [17, 40], [40, 42], [25, 9], [44, 35], [40, 33], [40, 15], [11, 40], [40, 23], [40, 2], [40, 15], [40, 1], [40, 33], [40, 8], [33, 40], [14, 32], [18, 24], [1, 40], [40, 30], [27, 38], [40, 14], [4, 40], [36, 24], [10, 40], [19, 40], [40, 26], [15, 40], [11, 40], [8, 40], [8, 43], [16, 40], [7, 29], [40, 33], [40, 21], [30, 40], [8, 40], [40, 3], [22, 40], [30, 40], [33, 40], [13, 0], [40, 1], [40, 16], [12, 25]], "features" : {"0" : "1", "1" : "3", "2" : "2", "3" : "1", "4" : "1", "5" : "1", "6" : "1", "7" : "1", "8" : "4", "9" : "1", "10" : "1", "11" : "3", "12" : "1", "13" : "1", "14" : "2", "15" : "3", "16" : "2", "17" : "1", "18" : "1", "19" : "1", "20" : "1", "21" : "1", "22" : "1", "23" : "1", "24" : "2", "25" : "2", "26" : "1", "27" : "1", "28" : "1", "29" : "1", "30" : "4", "31" : "1", "32" : "1", "33" : "6", "34" : "1", "35" : "1", "36" : "1", "37" : "1", "38" : "1", "39" : "1", "40" : "44", "41" : "1", "42" : "1", "43" : "1", "44" : "1"}}
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vertices" : [[45, 332], [43, 294], [128, 344], [84, 276], [113, 287], [102, 239], [88, 236], [114, 262], [141, 205], [162, 212], [153, 178], [146, 125], [79, 250], [0, 78], [112, 133], [125, 175], [59, 82], [115, 171], [84, 2], [50, 63], [126, 199], [92, 62], [166, 109], [218, 56], [86, 96], [49, 54], [55, 202], [82, 105], [38, 75], [93, 175], [142, 115], [222, 282], [64, 91], [165, 169], [317, 252], [289, 269], [180, 165], [201, 248], [251, 268], [89, 69], [152, 98], [72, 139], [61, 137], [32, 106], [198, 174], [87, 159], [281, 214], [351, 218], [162, 123], [212, 246], [78, 137], [266, 268], [199, 240], [246, 322], [367, 243], [295, 357], [288, 322], [229, 303], [331, 208], [140, 160], [310, 223], [198, 275], [139, 198], [243, 261], [267, 224], [173, 342], [193, 184], [301, 231], [246, 279], [234, 260], [331, 146], [320, 175], [177, 261], [257, 232], [214, 97], [276, 221], [287, 193], [208, 240], [349, 91], [214, 155], [314, 114], [187, 100], [301, 252], [193, 311], [254, 179], [219, 155], [303, 295], [232, 96], [283, 182], [320, 134], [309, 260], [211, 304], [306, 165], [287, 118], [242, 222], [240, 134], [275, 161], [335, 211], [294, 99]]}
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Tessera magnetica blu di accesso dei Laboratori", "ShortName" : "Tessera Magnetica Blu", "Description" : "Chiave accesso stanza"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Flask-Login-0.5.0.tar.gz": {"type": "string"}, "Flask_Login-0.5.0-py2.py3-none-any.whl": {"type": "string"}}, "required": ["Flask-Login-0.5.0.tar.gz", "Flask_Login-0.5.0-py2.py3-none-any.whl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Flask-Login-0.5.0.tar.gz" : "6d33aef15b5bcead780acc339464aae8a6e28f13c90d8b1cf9de8b549d1c0b4b", "Flask_Login-0.5.0-py2.py3-none-any.whl" : "7451b5001e17837ba58945aead261ba425fdf7b4f0448777e597ddab39f4fba0"}
json_instruct
{"type": "object", "properties": {"Flask-Login-0.5.0.tar.gz": {"type": "string"}, "Flask_Login-0.5.0-py2.py3-none-any.whl": {"type": "string"}}, "required": ["Flask-Login-0.5.0.tar.gz", "Flask_Login-0.5.0-py2.py3-none-any.whl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"VersionId" : "v12", "IsDefaultVersion" : false, "CreateDate" : "2019-08-21T22:56:23+00:00", "PolicyName" : "AmazonSageMakerFullAccess"}
json_instruct
{"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "currentTimeString": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "assetPriceLastBuy": {"type": "string"}, "lastAssestValue": {"type": "number"}, "profit": {"type": "number"}, "assetCapital": {"type": "number"}, "startCapital": {"type": "integer"}, "endBalance": {"type": "number"}, "buyHold": {"type": "number"}, "vsBuyHold": {"type": "number"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "integer"}, "days": {"type": "integer"}, "period_length": {"type": "string"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "number"}, "markup_sell_pct": {"type": "number"}, "order_type": {"type": "string"}, "wlRatio": {"type": "integer"}, "roi": {"type": "number"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "number"}}, "required": ["params", "assetPriceLastBuy", "lastAssestValue", "profit", "assetCapital", "startCapital", "endBalance", "buyHold", "vsBuyHold", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "currentTimeString", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"commandString" : "zenbot.bat sim binanceus.ETH-USD --period_length=72m --min_periods=97 --markdown_buy_pct=-0.14207198919192088 --markup_sell_pct=-0.09161737926167124 --order_type=taker --sell_stop_pct=7 --buy_stop_pct=14 --profit_stop_enable_pct=0 --profit_stop_pct=4 --trend_ema=10 --oversold_rsi_periods=41 --oversold_rsi=78 --backtester_generation=0 --strategy=trend_ema --days=14 --currency_capital=500 --maxCores=6 --filename=none", "queryStart" : "2020-09-15T07:12:00.000Z", "queryEnd" : "2020-10-04T06:28:01.213Z", "iteration" : 0, "startTime" : "2020-10-04T06:28:01.223Z", "currentTimeString" : "2020-10-04 01:57:03", "endTime" : "2020-10-04T06:28:06.455Z", "result" : {"params" : "module.exports = {\"avg_slippage_pct\":0.045,\"backtester_generation\":0,\"buy_stop_pct\":14,\"markdown_buy_pct\":-0.14207198919192088,\"markup_sell_pct\":-0.09161737926167124,\"max_buy_loss_pct\":0,\"max_sell_loss_pct\":0,\"max_slippage_pct\":5,\"min_periods\":97,\"neutral_rate\":\"auto\",\"order_poll_time\":5000,\"order_type\":\"taker\",\"oversold_rsi\":78,\"oversold_rsi_periods\":41,\"period\":\"72m\",\"period_length\":\"72m\",\"profit_stop_enable_pct\":0,\"profit_stop_pct\":4,\"quarentine_time\":10,\"rsi_periods\":41,\"selector\":\"binanceus.ETH-USD\",\"sell_stop_pct\":7,\"show_options\":true,\"strategy\":\"trend_ema\",\"symmetrical\":false,\"trend_ema\":10,\"net_currency\":6.994419215599947,\"start\":\"202009192000\"}", "assetPriceLastBuy" : "374.9118", "lastAssestValue" : 348.39, "profit" : -0.06809444136000002, "assetCapital" : 456.91643738, "startCapital" : 500, "endBalance" : 465.95277932, "buyHold" : 467.63758389261744, "vsBuyHold" : -0.3602799754872418, "wins" : 0, "losses" : 1, "errorRate" : 1, "days" : 14, "period_length" : "72m", "min_periods" : 97, "markdown_buy_pct" : -0.14207198919192088, "markup_sell_pct" : -0.09161737926167124, "order_type" : "taker", "wlRatio" : 0, "roi" : -6.809, "selector" : "binanceus.ETH-USD", "strategy" : "trend_ema", "frequency" : 0.071}}
json_instruct
{"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "currentTimeString": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "assetPriceLastBuy": {"type": "string"}, "lastAssestValue": {"type": "number"}, "profit": {"type": "number"}, "assetCapital": {"type": "number"}, "startCapital": {"type": "integer"}, "endBalance": {"type": "number"}, "buyHold": {"type": "number"}, "vsBuyHold": {"type": "number"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "integer"}, "days": {"type": "integer"}, "period_length": {"type": "string"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "number"}, "markup_sell_pct": {"type": "number"}, "order_type": {"type": "string"}, "wlRatio": {"type": "integer"}, "roi": {"type": "number"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "number"}}, "required": ["params", "assetPriceLastBuy", "lastAssestValue", "profit", "assetCapital", "startCapital", "endBalance", "buyHold", "vsBuyHold", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "currentTimeString", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "private": {"type": "boolean"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}}, "required": ["browser-sync"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "private", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dangdi-ui", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"dev" : "browser-sync start --server --files *.*"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Charlesjiang1993/dangdi-ui.git"}, "private" : true, "author" : "jccc", "license" : "MIT", "bugs" : {"url" : "https://github.com/Charlesjiang1993/dangdi-ui/issues"}, "homepage" : "https://github.com/Charlesjiang1993/dangdi-ui#readme", "dependencies" : {"browser-sync" : "^2.18.8"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "private": {"type": "boolean"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}}, "required": ["browser-sync"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "private", "author", "license", "bugs", "homepage", "dependencies"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "directory-exists": {"type": "string"}, "envinfo": {"type": "string"}, "execa": {"type": "string"}, "fs-extra": {"type": "string"}, "ora": {"type": "string"}, "shelljs": {"type": "string"}, "update-notifier": {"type": "string"}}, "required": ["chalk", "commander", "directory-exists", "envinfo", "execa", "fs-extra", "ora", "shelljs", "update-notifier"]}, "bin": {"type": "object", "properties": {"create-guten-block": {"type": "string"}}, "required": ["create-guten-block"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "repository", "bugs", "homepage", "dependencies", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "create-guten-block", "version" : "1.14.0", "description" : "Create a WordPress Gutenberg Block plugin with Zero-Config #OCJS, Webpack, React, ES6/7/8/Next, ESLint, Babel, and more.", "main" : "index.js", "keywords" : ["gutenberg", "create-gutenberg-block", "create-gutenberg-blocks", "wp", "wordpress", "cgb", "wp webpack", "react", "ESLint", "Webpack", "wp-scripts", "cgb-scripts", "guten-scripts", "babel", "cgb-dev-utils", "babel-preset-cgb"], "author" : "Ahmad Awais (https://AhmadAwais.com/)", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/ahmadawais/create-guten-block.git"}, "bugs" : {"url" : "https://github.com/ahmadawais/create-guten-block/issues"}, "homepage" : "https://github.com/ahmadawais/create-guten-block#readme", "dependencies" : {"chalk" : "^2.3.0", "commander" : "^2.13.0", "directory-exists" : "^1.0.2", "envinfo" : "^3.11.0", "execa" : "^0.9.0", "fs-extra" : "^5.0.0", "ora" : "^1.3.0", "shelljs" : "^0.8.0", "update-notifier" : "^2.3.0"}, "bin" : {"create-guten-block" : "./index.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "directory-exists": {"type": "string"}, "envinfo": {"type": "string"}, "execa": {"type": "string"}, "fs-extra": {"type": "string"}, "ora": {"type": "string"}, "shelljs": {"type": "string"}, "update-notifier": {"type": "string"}}, "required": ["chalk", "commander", "directory-exists", "envinfo", "execa", "fs-extra", "ora", "shelljs", "update-notifier"]}, "bin": {"type": "object", "properties": {"create-guten-block": {"type": "string"}}, "required": ["create-guten-block"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "repository", "bugs", "homepage", "dependencies", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"2021-01-10T00:00:00Z": {"type": "number"}, "2021-03-23T16:55:54Z-77b8732": {"type": "number"}, "2021-04-06T19:27:15Z-1e48aaf": {"type": "number"}, "2021-04-08T17:55:25Z-89472c1": {"type": "number"}, "2021-04-10T17:17:49Z-a7cbe68": {"type": "number"}, "2021-04-12T08:48:31Z-422149c": {"type": "number"}, "2021-04-12T19:59:25Z-d126d04": {"type": "number"}, "2021-04-13T14:23:46Z-e0a449a": {"type": "number"}, "2021-04-13T17:32:57Z-793b69e": {"type": "number"}, "2021-04-15T14:59:00Z-c004726": {"type": "number"}, "2021-04-18T11:33:05Z-7d29351": {"type": "number"}, "2021-04-19T15:29:13Z-6730eb4": {"type": "number"}, "2021-04-20T10:25:13Z-b8fb658": {"type": "number"}, "2021-04-20T20:48:57Z-51ef4cd": {"type": "number"}, "2021-04-20T21:32:37Z-0d23c8d": {"type": "number"}}, "required": ["2021-01-10T00:00:00Z", "2021-03-23T16:55:54Z-77b8732", "2021-04-06T19:27:15Z-1e48aaf", "2021-04-08T17:55:25Z-89472c1", "2021-04-10T17:17:49Z-a7cbe68", "2021-04-12T08:48:31Z-422149c", "2021-04-12T19:59:25Z-d126d04", "2021-04-13T14:23:46Z-e0a449a", "2021-04-13T17:32:57Z-793b69e", "2021-04-15T14:59:00Z-c004726", "2021-04-18T11:33:05Z-7d29351", "2021-04-19T15:29:13Z-6730eb4", "2021-04-20T10:25:13Z-b8fb658", "2021-04-20T20:48:57Z-51ef4cd", "2021-04-20T21:32:37Z-0d23c8d"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"2021-01-10T00:00:00Z" : 0.0038, "2021-03-23T16:55:54Z-77b8732" : 0.0016, "2021-04-06T19:27:15Z-1e48aaf" : 0.0018, "2021-04-08T17:55:25Z-89472c1" : 0.001, "2021-04-10T17:17:49Z-a7cbe68" : 0.0013, "2021-04-12T08:48:31Z-422149c" : 0.0014, "2021-04-12T19:59:25Z-d126d04" : 0.0013, "2021-04-13T14:23:46Z-e0a449a" : 0.0011, "2021-04-13T17:32:57Z-793b69e" : 0.0091, "2021-04-15T14:59:00Z-c004726" : 0.0124, "2021-04-18T11:33:05Z-7d29351" : 0.0153, "2021-04-19T15:29:13Z-6730eb4" : 0.3406, "2021-04-20T10:25:13Z-b8fb658" : 0.5362, "2021-04-20T20:48:57Z-51ef4cd" : 0.022, "2021-04-20T21:32:37Z-0d23c8d" : 0.0511}
json_instruct
{"type": "object", "properties": {"2021-01-10T00:00:00Z": {"type": "number"}, "2021-03-23T16:55:54Z-77b8732": {"type": "number"}, "2021-04-06T19:27:15Z-1e48aaf": {"type": "number"}, "2021-04-08T17:55:25Z-89472c1": {"type": "number"}, "2021-04-10T17:17:49Z-a7cbe68": {"type": "number"}, "2021-04-12T08:48:31Z-422149c": {"type": "number"}, "2021-04-12T19:59:25Z-d126d04": {"type": "number"}, "2021-04-13T14:23:46Z-e0a449a": {"type": "number"}, "2021-04-13T17:32:57Z-793b69e": {"type": "number"}, "2021-04-15T14:59:00Z-c004726": {"type": "number"}, "2021-04-18T11:33:05Z-7d29351": {"type": "number"}, "2021-04-19T15:29:13Z-6730eb4": {"type": "number"}, "2021-04-20T10:25:13Z-b8fb658": {"type": "number"}, "2021-04-20T20:48:57Z-51ef4cd": {"type": "number"}, "2021-04-20T21:32:37Z-0d23c8d": {"type": "number"}}, "required": ["2021-01-10T00:00:00Z", "2021-03-23T16:55:54Z-77b8732", "2021-04-06T19:27:15Z-1e48aaf", "2021-04-08T17:55:25Z-89472c1", "2021-04-10T17:17:49Z-a7cbe68", "2021-04-12T08:48:31Z-422149c", "2021-04-12T19:59:25Z-d126d04", "2021-04-13T14:23:46Z-e0a449a", "2021-04-13T17:32:57Z-793b69e", "2021-04-15T14:59:00Z-c004726", "2021-04-18T11:33:05Z-7d29351", "2021-04-19T15:29:13Z-6730eb4", "2021-04-20T10:25:13Z-b8fb658", "2021-04-20T20:48:57Z-51ef4cd", "2021-04-20T21:32:37Z-0d23c8d"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WE SHALL, PERHAPS, FIND THAT A GREATER PART OF THEM, THAN IS USUALLY SUSPECTED, ARE PURELY ABOUT THE SIGNIFICATION OF WORDS,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/15625.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"RecordRTC.js": {"type": "string"}, "RecordRTC.min.js": {"type": "string"}}, "required": ["RecordRTC.js", "RecordRTC.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"RecordRTC.js" : "sha256-zpClroJs6Rn1urzlT12jA+PMKfeOwfrSFqvgxjIqz9g=", "RecordRTC.min.js" : "sha256-L+mch78VlQ4Pg+Dqm8MDUMa0TSMvwJ5qz23T+gUsJgg="}
json_instruct
{"type": "object", "properties": {"RecordRTC.js": {"type": "string"}, "RecordRTC.min.js": {"type": "string"}}, "required": ["RecordRTC.js", "RecordRTC.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"foundation-sites": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["foundation-sites", "jquery"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-compass": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-copy": {"type": "string"}, "gulp-flatten": {"type": "string"}, "gulp-if": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "imagemin-pngquant": {"type": "string"}, "shelljs": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["gulp", "gulp-compass", "gulp-concat", "gulp-copy", "gulp-flatten", "gulp-if", "gulp-imagemin", "gulp-minify-css", "gulp-rename", "gulp-sass", "gulp-uglify", "imagemin-pngquant", "shelljs", "yargs"]}}, "required": ["name", "version", "private", "description", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "blis.package.frontend", "version" : "0.0.2", "private" : true, "description" : "frontend dependencies", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "BLiS", "license" : "ISC", "dependencies" : {"foundation-sites" : "^6.4.4-rc1", "jquery" : "^3.2.1"}, "devDependencies" : {"gulp" : "^3.5.6", "gulp-compass" : "^2.0.4", "gulp-concat" : "^2.2.0", "gulp-copy" : "0.0.2", "gulp-flatten" : "^0.2.0", "gulp-if" : "^2.0.0", "gulp-imagemin" : "^2.3.0", "gulp-minify-css" : "^1.2.1", "gulp-rename" : "^1.2.0", "gulp-sass" : "^2.1.0", "gulp-uglify" : "^1.2.0", "imagemin-pngquant" : "^4.1.0", "shelljs" : "^0.5.3", "yargs" : "^3.31.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"foundation-sites": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["foundation-sites", "jquery"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-compass": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-copy": {"type": "string"}, "gulp-flatten": {"type": "string"}, "gulp-if": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "imagemin-pngquant": {"type": "string"}, "shelljs": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["gulp", "gulp-compass", "gulp-concat", "gulp-copy", "gulp-flatten", "gulp-if", "gulp-imagemin", "gulp-minify-css", "gulp-rename", "gulp-sass", "gulp-uglify", "imagemin-pngquant", "shelljs", "yargs"]}}, "required": ["name", "version", "private", "description", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"chartist": {"type": "string"}}, "required": ["chartist"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "devDependencies", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chartist-plugin-sketchy", "version" : "0.0.2", "main" : ["./dist/chartist-plugin-sketchy.min.js"], "devDependencies" : {"chartist" : "~0.8.0"}, "ignore" : [".*", "Gruntfile.js", "package.json", "node_modules", "src", "test"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"chartist": {"type": "string"}}, "required": ["chartist"]}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "devDependencies", "ignore"], "$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"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "startwechat": {"type": "string"}, "startrest": {"type": "string"}, "gen_json": {"type": "string"}}, "required": ["start", "test", "startwechat", "startrest", "gen_json"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "connect": {"type": "string"}, "connect-query": {"type": "string"}, "express": {"type": "string"}, "node-wechat": {"type": "string"}, "wechat": {"type": "string"}}, "required": ["body-parser", "connect", "connect-query", "express", "node-wechat", "wechat"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "main", "description", "version", "private", "engines", "scripts", "repository", "dependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "toahuaxiaoji", "main" : "server.js", "description" : "An introduction to developing Node.js apps on the Bluemix platform", "version" : "0.1.1", "private" : false, "engines" : {"node" : "4.*"}, "scripts" : {"start" : "node server.js", "test" : "echo \"Error: no test specified\" && exit 1", "startwechat" : "node wechat.js", "startrest" : "node rest.js", "gen_json" : "java -jar xlsx2json-cli.jar ./xlsx ./public/json --disable-watching"}, "repository" : {"type" : "git", "url" : "TODO"}, "dependencies" : {"body-parser" : "^1.16.1", "connect" : "^3.6.0", "connect-query" : "^1.0.0", "express" : "^4.15.2", "node-wechat" : "^0.3.0", "wechat" : "^2.1.0"}, "author" : "IBM Corp", "license" : "Apache-2.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "startwechat": {"type": "string"}, "startrest": {"type": "string"}, "gen_json": {"type": "string"}}, "required": ["start", "test", "startwechat", "startrest", "gen_json"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "connect": {"type": "string"}, "connect-query": {"type": "string"}, "express": {"type": "string"}, "node-wechat": {"type": "string"}, "wechat": {"type": "string"}}, "required": ["body-parser", "connect", "connect-query", "express", "node-wechat", "wechat"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "main", "description", "version", "private", "engines", "scripts", "repository", "dependencies", "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"}, "poly": {"type": "string"}}, "required": ["id", "poly"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "communities/W04000466.json", "poly" : "-5.4512789999999995 51.847543,-5.379181000000017 51.822085,-5.2157589999999345 51.872139,-5.215072999999961 51.882313,-5.230864999999994 51.884432,-5.232238999999936 51.889518,-5.207519999999931 51.890789,-5.182800000000043 51.895874,-5.19103999999993 51.9035,-5.1841739999999845 51.908584,-5.176619999999957 51.922561,-5.195159999999987 51.933146,-5.2432249999999385 51.940766,-5.413169968750026 51.90561819365044,-5.4512789999999995 51.847543"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "poly": {"type": "string"}}, "required": ["id", "poly"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200838121368000, "key" : "transformer-remark-markdown-html-afebad8d6be6dee9784cf7eacc3b7aeb-gatsby-remark-imagesgatsby-remark-responsive-iframegatsby-remark-prismjsgatsby-remark-copy-linked-filesgatsby-remark-smartypantsgatsby-plugin-twitter-", "val" : "<p><a href=\"https://www.goodreads.com/book/show/40698.Of_Mice_and_Men\"><img src=\"https://images.gr-assets.com/books/1348679186m/40698.jpg\" alt=\"Of Mice and Men\"></a><a href=\"https://www.goodreads.com/book/show/40698.Of_Mice_and_Men\">Of Mice and Men</a> by <a href=\"https://www.goodreads.com/author/show/585.John_Steinbeck\">John Steinbeck</a>\nMy rating: <a href=\"https://www.goodreads.com/review/show/45018079\">4 of 5 stars</a></p>\n<p>I enjoyed the book but was looking for more\u2026I don\u2019t know exactly what I expected. I think I liked Lenny as a character more than anyone in this book. His slowness really appealed to me as I\u2019ve known some people like that. Maybe my opinion is biased based on this, but it really was a good book, very sad. It was a breeze to read and a little too light to me, considering the plot of the book. The ending was the saddest part. I\u2019d recommend this book for someone looking for a quick, light, heartbreaking read.</p>\n<p><a href=\"https://www.goodreads.com/review/list/1940314-tiffany\">View all my reviews</a></p>"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "xws": {"type": "string"}, "size": {"type": "string"}, "dial": {"type": "array", "items": {"type": "string"}}, "faction": {"type": "string"}, "stats": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "value"]}}, "pilots": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "caption": {"type": "string"}, "initiative": {"type": "integer"}, "limited": {"type": "integer"}, "cost": {"type": "integer"}, "xws": {"type": "string"}, "ability": {"type": "string"}}, "required": ["name", "caption", "initiative", "limited", "cost", "xws", "ability"]}}}, "required": ["name", "xws", "size", "dial", "faction", "stats", "pilots"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Upsilon-class Shuttle", "xws" : "upsilonclassshuttle", "size" : "Large", "dial" : ["0OR", "1TR", "1BW", "1FB", "1NW", "1YR", "2TW", "2BB", "2FB", "2NB", "2YW", "3TR", "3BW", "3FW", "3NW", "3YR"], "faction" : "First Order", "stats" : [{"type" : "agility", "value" : 0}, {"type" : "hull", "value" : 6}, {"type" : "shields", "value" : 6}], "pilots" : [{"name" : "Lieutenant Dormitz", "caption" : "Hypercomms Specialist", "initiative" : 2, "limited" : 1, "cost" : 200, "xws" : "lieutenantdormitz", "ability" : "Setup: After you are placed, other friendly ships can be placed anywhere in the play area at range 0-2 of you."}, {"name" : "Major Stridan", "caption" : "Stentorian Commander", "initiative" : 4, "limited" : 1, "cost" : 200, "xws" : "majorstridan", "ability" : "While you coordinate or resolve the effect of one of your upgrades, you may treat friendly ships at range 2-3 as being at range 0 or range1.", "image" : "https://images-cdn.fantasyflightgames.com/filer_public/1b/2c/1b2cbc1c-7e49-4f9d-b25a-b72d7319b90b/swz18_major-stridan_a2.png"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "xws": {"type": "string"}, "size": {"type": "string"}, "dial": {"type": "array", "items": {"type": "string"}}, "faction": {"type": "string"}, "stats": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "value"]}}, "pilots": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "caption": {"type": "string"}, "initiative": {"type": "integer"}, "limited": {"type": "integer"}, "cost": {"type": "integer"}, "xws": {"type": "string"}, "ability": {"type": "string"}}, "required": ["name", "caption", "initiative", "limited", "cost", "xws", "ability"]}}}, "required": ["name", "xws", "size", "dial", "faction", "stats", "pilots"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "root": {"type": "boolean"}, "rules": {"type": "object", "properties": {"require-jsdoc": {"type": "string"}}, "required": ["require-jsdoc"]}}, "required": ["extends", "root", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : ["bloq", "bloq/controvertial"], "root" : true, "rules" : {"require-jsdoc" : "off"}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "root": {"type": "boolean"}, "rules": {"type": "object", "properties": {"require-jsdoc": {"type": "string"}}, "required": ["require-jsdoc"]}}, "required": ["extends", "root", "rules"], "$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"}, "main": {"type": "string"}, "browser": {"type": "string"}}, "required": ["name", "main", "browser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "LineCounts", "main" : "LineCounts.js", "browser" : "LineCounts.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "browser": {"type": "string"}}, "required": ["name", "main", "browser"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404402995, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "013fdd3173e8b72fc66728d3667cd45d", "wof:id" : 404402995, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.90343887835779, 45.54033601864064, 5.93000826773186, 45.56069852272549], "geometry" : {"coordinates" : [[[5.92534526243456, 45.54033601864064], [5.90738075298597, 45.55085856443087], [5.90343887835779, 45.55738522930377], [5.91572150047648, 45.56069852272549], [5.93000826773186, 45.54801792779836], [5.92534526243456, 45.54033601864064]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "electron": {"type": "string"}}, "required": ["version", "electron"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "0.8.1", "electron" : "0.34.5"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "electron": {"type": "string"}}, "required": ["version", "electron"], "$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": "null"}, "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 ascending from \"./ascending.js\"; // Based on https://github.com/mourner/quickselect\n// ISC license, Copyright 2018 Vladimir Agafonkin.\n\nexport default function quickselect(array, k) {\n var left = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;\n var right = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : array.length - 1;\n var compare = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : ascending;\n\n while (right > left) {\n if (right - left > 600) {\n var n = right - left + 1;\n var m = k - left + 1;\n var z = Math.log(n);\n var s = 0.5 * Math.exp(2 * z / 3);\n var sd = 0.5 * Math.sqrt(z * s * (n - s) / n) * (m - n / 2 < 0 ? -1 : 1);\n var newLeft = Math.max(left, Math.floor(k - m * s / n + sd));\n var newRight = Math.min(right, Math.floor(k + (n - m) * s / n + sd));\n quickselect(array, k, newLeft, newRight, compare);\n }\n\n var t = array[k];\n var i = left;\n var j = right;\n swap(array, left, k);\n if (compare(array[right], t) > 0) swap(array, left, right);\n\n while (i < j) {\n swap(array, i, j), ++i, --j;\n\n while (compare(array[i], t) < 0) {\n ++i;\n }\n\n while (compare(array[j], t) > 0) {\n --j;\n }\n }\n\n if (compare(array[left], t) === 0) swap(array, left, j);else ++j, swap(array, j, right);\n if (j <= k) left = j + 1;\n if (k <= j) right = j - 1;\n }\n\n return array;\n}\n\nfunction swap(array, i, j) {\n var t = array[i];\n array[i] = array[j];\n array[j] = t;\n}", "map" : null, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Static": {"type": "object", "properties": {"Sky.Day.Assault": {"type": "array", "items": {"type": "object", "properties": {"Segment": {"type": "integer"}, "Tile": {"type": "integer"}, "X": {"type": "integer"}, "Y": {"type": "integer"}}, "required": ["Segment", "Tile", "X", "Y"]}}, "Sky.Night.Assault": {"type": "array", "items": {"type": "object", "properties": {"Segment": {"type": "integer"}, "Tile": {"type": "integer"}, "X": {"type": "integer"}, "Y": {"type": "integer"}}, "required": ["Segment", "Tile", "X", "Y"]}}}, "required": ["Sky.Day.Assault", "Sky.Night.Assault"]}}, "required": ["Static"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Static" : {"Sky.Day.Assault" : [{"Segment" : 1, "Tile" : 6, "X" : 0, "Y" : 160}, {"Segment" : 2, "Tile" : 6, "X" : 128, "Y" : 192}, {"Segment" : 3, "Tile" : 6, "X" : 192, "Y" : 192}, {"Segment" : 4, "Tile" : 7, "X" : 0, "Y" : 0}, {"Segment" : 5, "Tile" : 6, "X" : 64, "Y" : 192}, {"Segment" : 6, "Tile" : 7, "X" : 192, "Y" : 0}, {"Segment" : 7, "Tile" : 7, "X" : 128, "Y" : 0}, {"Segment" : 8, "Tile" : 7, "X" : 64, "Y" : 0}], "Sky.Night.Assault" : [{"Segment" : 1, "Tile" : 6, "X" : 0, "Y" : 160}, {"Segment" : 2, "Tile" : 6, "X" : 128, "Y" : 192}, {"Segment" : 3, "Tile" : 6, "X" : 192, "Y" : 192}, {"Segment" : 4, "Tile" : 7, "X" : 0, "Y" : 0}, {"Segment" : 5, "Tile" : 6, "X" : 64, "Y" : 192}, {"Segment" : 6, "Tile" : 7, "X" : 192, "Y" : 0}, {"Segment" : 7, "Tile" : 7, "X" : 128, "Y" : 0}, {"Segment" : 8, "Tile" : 7, "X" : 64, "Y" : 0}]}}
json_instruct
{"type": "object", "properties": {"Static": {"type": "object", "properties": {"Sky.Day.Assault": {"type": "array", "items": {"type": "object", "properties": {"Segment": {"type": "integer"}, "Tile": {"type": "integer"}, "X": {"type": "integer"}, "Y": {"type": "integer"}}, "required": ["Segment", "Tile", "X", "Y"]}}, "Sky.Night.Assault": {"type": "array", "items": {"type": "object", "properties": {"Segment": {"type": "integer"}, "Tile": {"type": "integer"}, "X": {"type": "integer"}, "Y": {"type": "integer"}}, "required": ["Segment", "Tile", "X", "Y"]}}}, "required": ["Sky.Day.Assault", "Sky.Night.Assault"]}}, "required": ["Static"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xaaf135f43790c87cd93862fb6ded572eb2ba8b64", "tool" : "osiris", "start" : 1564607800.4231172, "end" : 1564607803.190321, "duration" : 2.7672038078308105, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.layouts.css": {"type": "string"}, "angular-material.layouts.min.css": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.layouts.css", "angular-material.layouts.min.css", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"angular-material.css" : "sha512-Uj/4tfnpgcr/7JrJeIqMGnBa6DEf0zJ1k5j/9YGYfxBuFzspxCbIWNHkXszqgQQZn6qfKIgfTDAzfptrGVz3zw==", "angular-material.js" : "sha512-fbfVSS8UfwxZeXkuXgiDCMYLUP02xLfzCI1UMmxv7nPx5OVpTnV0IxlGZ+B5X1vBwhZ7h+cv8ncMp4gU1pWIdA==", "angular-material.layouts.css" : "sha512-65JstM4irSEKcS2u3GgC/ET4S1izpC5IHtuelh6999ljL8sVla2M1zsVcY/p33VYvd1FU0Es0uTHvJKeE8tqPw==", "angular-material.layouts.min.css" : "sha512-Y7Rxwxg+oMinFDpLWKtNZfr6lcydfokdk9I24WlYhnaUqp4GH9Mbxj+KqMYM+M2yVbjm8bPvGjzbxAoYKn+Brw==", "angular-material.min.css" : "sha512-8uDyI1/XDk4MKhblvkaJRSTwo+w56cZEVl7qc/uj48G+xhcBdxEcBGRIkZKycinA3HLpUpO05du1FrD27K/skg==", "angular-material.min.js" : "sha512-i4Xo0CQUI13f1trBieEq6EHJOFC/mJiuPHWo7Q2FwKuB1QgS5SrnSZ+ERI13yYFYCZoTmOeI0jzZGpiS0uRVxg=="}
json_instruct
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.layouts.css": {"type": "string"}, "angular-material.layouts.min.css": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.layouts.css", "angular-material.layouts.min.css", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"55218": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["55218"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"55218" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"55218": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["55218"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cgamesplay/referer-parser": {"type": "string"}, "useragent": {"type": "string"}}, "required": ["@cgamesplay/referer-parser", "useragent"]}, "devDependencies": {"type": "object", "properties": {"@hapi/code": {"type": "string"}, "@hapi/hapi": {"type": "string"}, "@hapi/inert": {"type": "string"}, "@hapi/lab": {"type": "string"}, "@hapi/vision": {"type": "string"}, "@hapi/wreck": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-firstandthird": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "handlebars": {"type": "string"}}, "required": ["@hapi/code", "@hapi/hapi", "@hapi/inert", "@hapi/lab", "@hapi/vision", "@hapi/wreck", "eslint", "eslint-config-firstandthird", "eslint-plugin-import", "handlebars"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hapi-referrer", "version" : "4.0.2", "description" : "Tracks referrers", "main" : "index.js", "scripts" : {"test" : "lab", "lint" : "eslint ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/firstandthird/hapi-referrer.git"}, "author" : "First + Third, Inc", "license" : "MIT", "bugs" : {"url" : "https://github.com/firstandthird/hapi-referrer/issues"}, "homepage" : "https://github.com/firstandthird/hapi-referrer#readme", "dependencies" : {"@cgamesplay/referer-parser" : "^1.0.20200414", "useragent" : "^2.3.0"}, "devDependencies" : {"@hapi/code" : "^8.0.2", "@hapi/hapi" : "^20.0.2", "@hapi/inert" : "^6.0.3", "@hapi/lab" : "^24.1.0", "@hapi/vision" : "^6.0.1", "@hapi/wreck" : "^17.0.0", "eslint" : "^7.14.0", "eslint-config-firstandthird" : "^6.0.2", "eslint-plugin-import" : "^2.15.0", "handlebars" : "^4.0.12"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cgamesplay/referer-parser": {"type": "string"}, "useragent": {"type": "string"}}, "required": ["@cgamesplay/referer-parser", "useragent"]}, "devDependencies": {"type": "object", "properties": {"@hapi/code": {"type": "string"}, "@hapi/hapi": {"type": "string"}, "@hapi/inert": {"type": "string"}, "@hapi/lab": {"type": "string"}, "@hapi/vision": {"type": "string"}, "@hapi/wreck": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-firstandthird": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "handlebars": {"type": "string"}}, "required": ["@hapi/code", "@hapi/hapi", "@hapi/inert", "@hapi/lab", "@hapi/vision", "@hapi/wreck", "eslint", "eslint-config-firstandthird", "eslint-plugin-import", "handlebars"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"download": {"type": "object", "properties": {"pxd_identifier": {"type": "string"}, "file_pattern": {"type": "string"}}, "required": ["pxd_identifier", "file_pattern"]}, "convert": {"type": "object", "properties": {"exec": {"type": "string"}}, "required": ["exec"]}, "search": {"type": "object", "properties": {"msgfplus_conf": {"type": "string"}, "fasta": {"type": "string"}, "msgfplus_exec": {"type": "string"}, "threads_per_search": {"type": "integer"}}, "required": ["msgfplus_conf", "fasta", "msgfplus_exec", "threads_per_search"]}, "modifications": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "unimod_accession": {"type": "integer"}}, "required": ["name", "unimod_accession"]}}}, "required": ["download", "convert", "search", "modifications"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"download" : {"pxd_identifier" : "PXD000000", "file_pattern" : ".*"}, "convert" : {"exec" : "ThermoRawFileParser.sh"}, "search" : {"msgfplus_conf" : "conf/msgfplus_params.txt", "fasta" : "path/to/search_db.fasta", "msgfplus_exec" : "msgf_plus", "threads_per_search" : 5}, "modifications" : [{"name" : "Acetyl", "unimod_accession" : 1}, {"name" : "Oxidation", "unimod_accession" : 35}, {"name" : "Carbamidomethyl", "unimod_accession" : 4}]}
json_instruct
{"type": "object", "properties": {"download": {"type": "object", "properties": {"pxd_identifier": {"type": "string"}, "file_pattern": {"type": "string"}}, "required": ["pxd_identifier", "file_pattern"]}, "convert": {"type": "object", "properties": {"exec": {"type": "string"}}, "required": ["exec"]}, "search": {"type": "object", "properties": {"msgfplus_conf": {"type": "string"}, "fasta": {"type": "string"}, "msgfplus_exec": {"type": "string"}, "threads_per_search": {"type": "integer"}}, "required": ["msgfplus_conf", "fasta", "msgfplus_exec", "threads_per_search"]}, "modifications": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "unimod_accession": {"type": "integer"}}, "required": ["name", "unimod_accession"]}}}, "required": ["download", "convert", "search", "modifications"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2020-11-02T00:00:00Z", "Temp" : 21.7, "RelHum" : 89, "WindSpeed" : 1, "WindDir" : 340}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d784-130", "text" : "Sir*\n14 (Iregory Ha32\nUrbana* ruiaoia\nJuly 21* 1953\nTOi Officers and Board of Directors\nFROM* Frank E\u00ab Schooley* For Harry Jo Skornia\nRE* Report to Kellogg Foundation* and Requests for Grants 9 1953*\u00bb54\nReport is attached herewith, such portions as you baron*t\nseen\u00ab Certain appendices ar\u00a9 missing because you haro\nprcsdous copies \u2022 Howror* should you find your file\ncopy missing* let us know and m* 11 send along the\nmissing appendix* I trust all is in order* One mors\nnote? the financial report of the IMrorsity is\nmissing too* Xt5s a difficult part* and may reach\nyou late* but rather than hold* I*m dispatching tihat\nyou receive*\nccs Hilbur Sehrassa\nBarry Slsoraia"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "reload": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "reload"]}, "dependencies": {"type": "object", "properties": {"technicalindicators": {"type": "string"}}, "required": ["technicalindicators"]}}, "required": ["name", "version", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "trd-beta-ml5-ann", "version" : "1.1.0", "scripts" : {"start" : "reload -b -v", "build" : "mkdir -p ./build & cp ./*.html ./build/ & cp ./*.js ./build/ & cp ./*.gif ./build/"}, "repository" : {"type" : "git", "url" : "git+https://github.com/atorov/trd-beta-ml5-ann.git"}, "author" : "atorov", "license" : "MIT", "bugs" : {"url" : "https://github.com/atorov/trd-beta-ml5-ann/issues"}, "homepage" : "https://github.com/atorov/trd-beta-ml5-ann#readme", "devDependencies" : {"eslint" : "^7.27.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-plugin-import" : "^2.23.4", "reload" : "^3.1.1"}, "dependencies" : {"technicalindicators" : "^3.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "reload": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "reload"]}, "dependencies": {"type": "object", "properties": {"technicalindicators": {"type": "string"}}, "required": ["technicalindicators"]}}, "required": ["name", "version", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"crypto": {"type": "string"}, "xml2json": {"type": "string"}}, "required": ["crypto", "xml2json"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nanowrimo", "version" : "0.0.1", "description" : "Read and update NaNoWriMo word counts from Node.JS", "main" : "index.js", "keywords" : ["nanowrimo", "nnwm"], "author" : "Rohn Blake <rohn@intensiveporpoises.com> (http://intensiveporpoises.com/)", "license" : "MIT", "dependencies" : {"crypto" : "0.0.3", "xml2json" : "^0.6.1"}, "repository" : {"type" : "git", "url" : "git://github.com/rohn/node-nanowrimo.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"crypto": {"type": "string"}, "xml2json": {"type": "string"}}, "required": ["crypto", "xml2json"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"styles/salesforce-lightning-design-system.css": {"type": "string"}, "styles/salesforce-lightning-design-system.min.css": {"type": "string"}}, "required": ["styles/salesforce-lightning-design-system.css", "styles/salesforce-lightning-design-system.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"styles/salesforce-lightning-design-system.css" : "sha512-vrE86KX1dXciHnTkuXA4hb7fwS0d6mvAOJM9wIMI3bP1XNZdW9UqNUvt58eKPtglU++O/D/lT8AWyyLsgjpD1Q==", "styles/salesforce-lightning-design-system.min.css" : "sha512-btrVr4bSrnJkcvBWVFkUqanAkAe5UeDvzRUvr1tgbzgYFAweCUsyUSLSg64Mm6I3nWdr196Ul4eY6bKdb4vmCA=="}
json_instruct
{"type": "object", "properties": {"styles/salesforce-lightning-design-system.css": {"type": "string"}, "styles/salesforce-lightning-design-system.min.css": {"type": "string"}}, "required": ["styles/salesforce-lightning-design-system.css", "styles/salesforce-lightning-design-system.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemailer-smtp-transport": {"type": "string"}, "nodemon": {"type": "string"}, "serve-favicon": {"type": "string"}}, "required": ["express", "nodemailer", "nodemailer-smtp-transport", "nodemon", "serve-favicon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nodefolio", "version" : "1.0.0", "description" : "Portfolio project with Node.js", "main" : "app.js", "scripts" : {"start" : "node app"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rasraziel/Nodefolio.git"}, "author" : "Elias Martidis", "license" : "MIT", "bugs" : {"url" : "https://github.com/rasraziel/Nodefolio/issues"}, "homepage" : "https://github.com/rasraziel/Nodefolio#readme", "dependencies" : {"express" : "^4.17.1", "nodemailer" : "^6.5.0", "nodemailer-smtp-transport" : "^2.7.4", "nodemon" : "^2.0.7", "serve-favicon" : "^2.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemailer-smtp-transport": {"type": "string"}, "nodemon": {"type": "string"}, "serve-favicon": {"type": "string"}}, "required": ["express", "nodemailer", "nodemailer-smtp-transport", "nodemon", "serve-favicon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "1e9e248d4289dc22a3ff", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "BUOL", "originalFilename" : "jufri.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 275454, "noUrut" : 1, "nama" : "JUFRI A. HI. ISMAIL", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BUOL", "originalFilename" : "FIRDAH.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 261073, "noUrut" : 2, "nama" : "FIRDA ABD. RASAK", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BUOL", "originalFilename" : "YANTI.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 261528, "noUrut" : 3, "nama" : "ASRIANTI S. HARUNA", "stringJenisKelamin" : "Perempuan"}]
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#"}
Generate a valid JSON object that conforms to the following schema: {"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" : 7, "pts" : 2, "connections" : 186, "capacity" : 6473, "investments" : 83019}, {"tech" : 3, "pts" : 2007, "connections" : 114919, "capacity" : 9659067, "investments" : 53124120}, {"tech" : 1, "pts" : 219, "connections" : 44787, "capacity" : 1178318, "investments" : 14772145}]}]
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K10708": {"type": "string"}}, "required": ["K10708"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "Fructoselysine 6-phosphate + H2O <=> L-Lysine + D-Glucose 6-phosphate", "orthologs" : {"K10708" : "fructoselysine 6-phosphate deglycase [EC:3.5.-.-]"}, "name" : "", "product_stoichiometries" : ["1", "1"], "enzymes" : ["3.5.-.-"], "equation" : "C16489 + C00001 <=> C00047 + C00092", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R08125", "pathways" : {}, "products" : ["C00047", "C00092"], "substrates" : ["C16489", "C00001"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K10708": {"type": "string"}}, "required": ["K10708"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.765e663a.chunk.css": {"type": "string"}, "static/js/2.e80c2533.chunk.js": {"type": "string"}, "static/js/2.e80c2533.chunk.js.map": {"type": "string"}, "static/js/3.73843b97.chunk.js": {"type": "string"}, "static/js/3.73843b97.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.765e663a.chunk.css.map": {"type": "string"}, "static/css/main.6dea0f05.chunk.css.map": {"type": "string"}, "static/js/2.e80c2533.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.765e663a.chunk.css", "static/js/2.e80c2533.chunk.js", "static/js/2.e80c2533.chunk.js.map", "static/js/3.73843b97.chunk.js", "static/js/3.73843b97.chunk.js.map", "index.html", "static/css/2.765e663a.chunk.css.map", "static/css/main.6dea0f05.chunk.css.map", "static/js/2.e80c2533.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/pikaday/static/css/main.6dea0f05.chunk.css", "main.js" : "/pikaday/static/js/main.a49686d5.chunk.js", "main.js.map" : "/pikaday/static/js/main.a49686d5.chunk.js.map", "runtime-main.js" : "/pikaday/static/js/runtime-main.d3d1b702.js", "runtime-main.js.map" : "/pikaday/static/js/runtime-main.d3d1b702.js.map", "static/css/2.765e663a.chunk.css" : "/pikaday/static/css/2.765e663a.chunk.css", "static/js/2.e80c2533.chunk.js" : "/pikaday/static/js/2.e80c2533.chunk.js", "static/js/2.e80c2533.chunk.js.map" : "/pikaday/static/js/2.e80c2533.chunk.js.map", "static/js/3.73843b97.chunk.js" : "/pikaday/static/js/3.73843b97.chunk.js", "static/js/3.73843b97.chunk.js.map" : "/pikaday/static/js/3.73843b97.chunk.js.map", "index.html" : "/pikaday/index.html", "static/css/2.765e663a.chunk.css.map" : "/pikaday/static/css/2.765e663a.chunk.css.map", "static/css/main.6dea0f05.chunk.css.map" : "/pikaday/static/css/main.6dea0f05.chunk.css.map", "static/js/2.e80c2533.chunk.js.LICENSE.txt" : "/pikaday/static/js/2.e80c2533.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.d3d1b702.js", "static/css/2.765e663a.chunk.css", "static/js/2.e80c2533.chunk.js", "static/css/main.6dea0f05.chunk.css", "static/js/main.a49686d5.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.765e663a.chunk.css": {"type": "string"}, "static/js/2.e80c2533.chunk.js": {"type": "string"}, "static/js/2.e80c2533.chunk.js.map": {"type": "string"}, "static/js/3.73843b97.chunk.js": {"type": "string"}, "static/js/3.73843b97.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.765e663a.chunk.css.map": {"type": "string"}, "static/css/main.6dea0f05.chunk.css.map": {"type": "string"}, "static/js/2.e80c2533.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.765e663a.chunk.css", "static/js/2.e80c2533.chunk.js", "static/js/2.e80c2533.chunk.js.map", "static/js/3.73843b97.chunk.js", "static/js/3.73843b97.chunk.js.map", "index.html", "static/css/2.765e663a.chunk.css.map", "static/css/main.6dea0f05.chunk.css.map", "static/js/2.e80c2533.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {"type": "object", "properties": {"il": {"type": "string"}, "ilView": {"type": "string"}, "ilce": {"type": "string"}, "ilceView": {"type": "string"}}, "required": ["il", "ilView", "ilce", "ilceView"]}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"oid" : "64v78uiwf8pule00", "hafta" : 808, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "07/12/2016", "cekilisTuru" : "SANS_TOPU", "rakamlar" : "06#17#10#24#30#04", "rakamlarNumaraSirasi" : "06 - 10 - 17 - 24 - 30 - <b>04</b>", "devretti" : false, "devirSayisi" : 0, "bilenKisiler" : [{"oid" : "64qdoniwf8pula07", "kisiBasinaDusenIkramiye" : 3.1, "kisiSayisi" : 207360, "tur" : "$1_1_BILEN"}, {"oid" : "64qdoniwf8pula06", "kisiBasinaDusenIkramiye" : 5.25, "kisiSayisi" : 65552, "tur" : "$2_1_BILEN"}, {"oid" : "64qdoniwf8pula05", "kisiBasinaDusenIkramiye" : 3.3, "kisiSayisi" : 101183, "tur" : "$3_BILEN"}, {"oid" : "64qdoniwf8pula04", "kisiBasinaDusenIkramiye" : 14.9, "kisiSayisi" : 8417, "tur" : "$3_1_BILEN"}, {"oid" : "64qdoniwf8pula03", "kisiBasinaDusenIkramiye" : 23.65, "kisiSayisi" : 4077, "tur" : "$4_BILEN"}, {"oid" : "64qdoniwf8pula02", "kisiBasinaDusenIkramiye" : 215, "kisiSayisi" : 337, "tur" : "$4_1_BILEN"}, {"oid" : "64qdoniwf8pula01", "kisiBasinaDusenIkramiye" : 2191.7, "kisiSayisi" : 33, "tur" : "$5_BILEN"}, {"oid" : "64qdoniwf8pula00", "kisiBasinaDusenIkramiye" : 347468, "kisiSayisi" : 4, "tur" : "$5_1_BILEN"}], "buyukIkrKazananIlIlceler" : [{"il" : "12", "ilView" : "B\u0130NG\u00d6L", "ilce" : "01203", "ilceView" : "KI\u011eI"}, {"il" : "16", "ilView" : "BURSA", "ilce" : "01606", "ilceView" : "MUDANYA"}, {"il" : "48", "ilView" : "MU\u011eLA", "ilce" : "04808", "ilceView" : "YATA\u011eAN"}, {"il" : "72", "ilView" : "BATMAN", "ilce" : "07200", "ilceView" : "MERKEZ"}], "kibrisHasilati" : 18953, "devirTutari" : 666664.73, "kolonSayisi" : 6317955, "kdv" : 960864.71, "toplamHasilat" : 6317955, "hasilat" : 5357090.29, "sov" : 535709.03, "ikramiyeEH" : 4821381.26, "buyukIkramiye" : 723207.19, "haftayaDevredenTutar" : 0.01}
json_instruct
{"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {"type": "object", "properties": {"il": {"type": "string"}, "ilView": {"type": "string"}, "ilce": {"type": "string"}, "ilceView": {"type": "string"}}, "required": ["il", "ilView", "ilce", "ilceView"]}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1995-01-17": {"type": "string"}, "1995-01-28": {"type": "string"}, "2000-05-30": {"type": "string"}, "2000-06-14": {"type": "string"}}, "required": ["1995-01-17", "1995-01-28", "2000-05-30", "2000-06-14"]}, "lyID": {"type": "string"}, "PCode": {"type": "string"}}, "required": ["name", "history", "lyID", "PCode"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : [{"name" : "\u570b\u5bb6\u98a8\u666f\u5340\u7ba1\u7406\u8655\u7d44\u7e54\u901a\u5247", "start_date" : "1995-01-17"}], "history" : {"1995-01-17" : "\u5236\u5b9a15\u689d", "1995-01-28" : "\u516c\u5e03", "2000-05-30" : "\u4fee\u6b63\u7b2c6, 9\u689d", "2000-06-14" : "\u516c\u5e03"}, "lyID" : "01231", "PCode" : "K0000084"}
json_instruct
{"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1995-01-17": {"type": "string"}, "1995-01-28": {"type": "string"}, "2000-05-30": {"type": "string"}, "2000-06-14": {"type": "string"}}, "required": ["1995-01-17", "1995-01-28", "2000-05-30", "2000-06-14"]}, "lyID": {"type": "string"}, "PCode": {"type": "string"}}, "required": ["name", "history", "lyID", "PCode"], "$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": "null"}, "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" : "'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = processNodes;\n\nvar _isEmptyTextNode = require('./utils/isEmptyTextNode');\n\nvar _isEmptyTextNode2 = _interopRequireDefault(_isEmptyTextNode);\n\nvar _convertNodeToElement = require('./convertNodeToElement');\n\nvar _convertNodeToElement2 = _interopRequireDefault(_convertNodeToElement);\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\n/**\n * Processes the nodes generated by htmlparser2 and convert them all into React elements\n *\n * @param {Object[]} nodes List of nodes to process\n * @param {Function} transform Transform function to optionally apply to nodes\n * @returns {React.Element[]} The list of processed React elements\n */\n\n\nfunction processNodes(nodes, transform) {\n return nodes.filter(function (node) {\n return !(0, _isEmptyTextNode2.default)(node);\n }).map(function (node, index) {\n // return the result of the transform function if applicable\n var transformed = void 0;\n\n if (typeof transform === 'function') {\n transformed = transform(node, index);\n\n if (transformed === null || !!transformed) {\n return transformed;\n }\n } // otherwise convert the node as standard\n\n\n return (0, _convertNodeToElement2.default)(node, index, transform);\n });\n}", "map" : null, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x4d10962c827881b7d40d338b3f898f4b18475320", "tool" : "securify", "start" : 1563773066.244597, "end" : 1563773070.542601, "duration" : 4.298004150390625, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sergey Afanasiev": {"type": "string"}}, "required": ["Sergey Afanasiev"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Player": {"type": "array", "items": {"type": "string"}}, "MBProgressHUD": {"type": "array", "items": {"type": "string"}}}, "required": ["Player", "MBProgressHUD"]}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks", "dependencies", "pushed_with_swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "MediaWatermark", "version" : "0.1.0", "summary" : "Image and video processing", "description" : "MediaWatermark is a framework which helps to render watermarks over image or video content.", "homepage" : "https://github.com/rubygarage-ios/MediaWatermark", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sergey Afanasiev" : "sergey.afanasiev@rubygarage.org"}, "source" : {"git" : "https://github.com/rubygarage-ios/MediaWatermark.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "9.0"}, "source_files" : "MediaWatermark/Classes/**/*", "frameworks" : "UIKit", "dependencies" : {"Player" : ["~> 0.5"], "MBProgressHUD" : ["~> 1.0"]}, "pushed_with_swift_version" : "3.1"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sergey Afanasiev": {"type": "string"}}, "required": ["Sergey Afanasiev"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Player": {"type": "array", "items": {"type": "string"}}, "MBProgressHUD": {"type": "array", "items": {"type": "string"}}}, "required": ["Player", "MBProgressHUD"]}, "pushed_with_swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks", "dependencies", "pushed_with_swift_version"], "$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": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xc8035ea3580d5dd63b7535c26687fe18f8284e2f", "tool" : "osiris", "start" : 1564593757.6900861, "end" : 1564593810.805178, "duration" : 53.1150918006897, "analysis" : [{"errors" : [{"line" : 50, "column" : 33, "message" : "overflow_bugs"}, {"line" : 57, "column" : 16, "message" : "overflow_bugs"}, {"line" : 130, "column" : 9, "message" : "underflow_bugs"}, {"line" : 115, "column" : 9, "message" : "underflow_bugs"}], "file" : "/unique_chucks/25/0xc8035ea3580d5dd63b7535c26687fe18f8284e2f.sol", "name" : "Rapide"}]}
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": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ticket": {"type": "object", "properties": {"iteration": {"type": "integer"}, "pkg": {"type": "string"}, "affected": {"type": "object", "properties": {"CVE-2021-20254": {"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "rev": {"type": "string"}}, "required": ["name", "rev"]}}, "score": {"type": "number"}}, "required": ["branches", "score"]}}, "required": ["CVE-2021-20254"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"github": {"type": "string"}, "email": {"type": "string"}}, "required": ["github", "email"]}}}, "required": ["iteration", "pkg", "affected", "maintainers"]}, "issue_id": {"type": "integer"}, "issue_url": {"type": "string"}}, "required": ["ticket", "issue_id", "issue_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ticket" : {"iteration" : 102, "pkg" : "samba-4.12.14", "affected" : {"CVE-2021-20254" : {"branches" : [{"name" : "nixos-20.09", "rev" : "76ed24ceab9ec8b520f977a2803181f0c1d86b4d"}], "score" : 8.1}}, "maintainers" : [{"github" : "aneeshusa", "email" : "aneeshusa@gmail.com"}]}, "issue_id" : 124674, "issue_url" : "https://api.github.com/repos/NixOS/nixpkgs/issues/124674"}
json_instruct
{"type": "object", "properties": {"ticket": {"type": "object", "properties": {"iteration": {"type": "integer"}, "pkg": {"type": "string"}, "affected": {"type": "object", "properties": {"CVE-2021-20254": {"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "rev": {"type": "string"}}, "required": ["name", "rev"]}}, "score": {"type": "number"}}, "required": ["branches", "score"]}}, "required": ["CVE-2021-20254"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"github": {"type": "string"}, "email": {"type": "string"}}, "required": ["github", "email"]}}}, "required": ["iteration", "pkg", "affected", "maintainers"]}, "issue_id": {"type": "integer"}, "issue_url": {"type": "string"}}, "required": ["ticket", "issue_id", "issue_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ETag" : "W/\"3dfde51706db207b9f87c69244400399ca9b0b1479ed45c633b74bd3aa38c4ec\"", "Last-Modified" : "Wed, 07 Oct 2020 23:23:59 GMT", "base" : {"repo" : {"name" : "awscli-feedstock"}}, "closed_at" : "2020-10-07T23:23:59Z", "created_at" : "2020-10-07T21:02:55Z", "draft" : false, "head" : {"ref" : "1.18.155_hb7f864"}, "html_url" : "https://github.com/conda-forge/awscli-feedstock/pull/652", "id" : 499515374, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2020-10-07T23:23:59Z", "number" : 652, "state" : "closed", "updated_at" : "2020-10-07T23:23:59Z"}
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$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": {}}}, "required": ["authors"]}, "description-add-link-title": {"type": "string"}, "article-read-more-title": {"type": "string"}, "table-title-other": {"type": "string"}, "page-edit-history": {"type": "string"}, "info-box-close-text": {"type": "string"}, "page-talk-page": {"type": "string"}, "info-box-title": {"type": "string"}, "view-in-browser-footer-link": {"type": "string"}, "page-location": {"type": "string"}, "page-similar-titles": {"type": "string"}, "page-last-edited": {"type": "string"}, "article-about-title": {"type": "string"}, "page-issues": {"type": "string"}, "license-footer-name": {"type": "string"}, "license-footer-text": {"type": "string"}, "page-read-in-other-languages": {"type": "string"}}, "required": ["@metadata", "description-add-link-title", "article-read-more-title", "table-title-other", "page-edit-history", "info-box-close-text", "page-talk-page", "info-box-title", "view-in-browser-footer-link", "page-location", "page-similar-titles", "page-last-edited", "article-about-title", "page-issues", "license-footer-name", "license-footer-text", "page-read-in-other-languages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : []}, "description-add-link-title" : "Dodaj opis naslova", "article-read-more-title" : "Pro\u010ditajte vi\u0161e", "table-title-other" : "Vi\u0161e informacija", "page-edit-history" : "Celokupna istorija izmena", "info-box-close-text" : "Zatvori", "page-talk-page" : "Prika\u017ei stranicu za razgovor", "info-box-title" : "Kratke \u010dinjenice", "view-in-browser-footer-link" : "Prika\u017ei \u010dlanak u pregleda\u010du", "page-location" : "Prika\u017ei na mapi", "page-similar-titles" : "Sli\u010dne stranice", "page-last-edited" : "{{PLURAL:$1|0=Ure\u0111eno danas|1=Ure\u0111eno ju\u010de|Ure\u0111eno pre $1 dana}}", "article-about-title" : "O ovom \u010dlanku", "page-issues" : "Problemi sa stranicom", "license-footer-name" : "CC BY-SA 3.0", "license-footer-text" : "Sadr\u017eaj je dostupan pod licencom $1, osim ako je druga\u010dije navedeno.", "page-read-in-other-languages" : "Dostupno na jo\u0161 $1 jezika"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {}}}, "required": ["authors"]}, "description-add-link-title": {"type": "string"}, "article-read-more-title": {"type": "string"}, "table-title-other": {"type": "string"}, "page-edit-history": {"type": "string"}, "info-box-close-text": {"type": "string"}, "page-talk-page": {"type": "string"}, "info-box-title": {"type": "string"}, "view-in-browser-footer-link": {"type": "string"}, "page-location": {"type": "string"}, "page-similar-titles": {"type": "string"}, "page-last-edited": {"type": "string"}, "article-about-title": {"type": "string"}, "page-issues": {"type": "string"}, "license-footer-name": {"type": "string"}, "license-footer-text": {"type": "string"}, "page-read-in-other-languages": {"type": "string"}}, "required": ["@metadata", "description-add-link-title", "article-read-more-title", "table-title-other", "page-edit-history", "info-box-close-text", "page-talk-page", "info-box-title", "view-in-browser-footer-link", "page-location", "page-similar-titles", "page-last-edited", "article-about-title", "page-issues", "license-footer-name", "license-footer-text", "page-read-in-other-languages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "name", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"code" : "IN-AN", "name" : "Andaman and Nicobar Islands", "type" : "Union territory"}, {"code" : "IN-AP", "name" : "Andhra Pradesh", "type" : "State"}, {"code" : "IN-AR", "name" : "Arunachal Pradesh", "type" : "State"}, {"code" : "IN-AS", "name" : "Assam", "type" : "State"}, {"code" : "IN-BR", "name" : "Bihar", "type" : "State"}, {"code" : "IN-CH", "name" : "Chandigarh", "type" : "Union territory"}, {"code" : "IN-CT", "name" : "Chhattisgarh", "type" : "State"}, {"code" : "IN-DD", "name" : "Daman and Diu", "type" : "Union territory"}, {"code" : "IN-DL", "name" : "Delhi", "type" : "Union territory"}, {"code" : "IN-DN", "name" : "Dadra and Nagar Haveli", "type" : "Union territory"}, {"code" : "IN-GA", "name" : "Goa", "type" : "State"}, {"code" : "IN-GJ", "name" : "Gujarat", "type" : "State"}, {"code" : "IN-HP", "name" : "Himachal Pradesh", "type" : "State"}, {"code" : "IN-HR", "name" : "Haryana", "type" : "State"}, {"code" : "IN-JH", "name" : "Jharkhand", "type" : "State"}, {"code" : "IN-JK", "name" : "Jammu and Kashmir", "type" : "State"}, {"code" : "IN-KA", "name" : "Karnataka", "type" : "State"}, {"code" : "IN-KL", "name" : "Kerala", "type" : "State"}, {"code" : "IN-LD", "name" : "Lakshadweep", "type" : "Union territory"}, {"code" : "IN-MH", "name" : "Maharashtra", "type" : "State"}, {"code" : "IN-ML", "name" : "Meghalaya", "type" : "State"}, {"code" : "IN-MN", "name" : "Manipur", "type" : "State"}, {"code" : "IN-MP", "name" : "Madhya Pradesh", "type" : "State"}, {"code" : "IN-MZ", "name" : "Mizoram", "type" : "State"}, {"code" : "IN-NL", "name" : "Nagaland", "type" : "State"}, {"code" : "IN-OR", "name" : "Odisha", "type" : "State"}, {"code" : "IN-PB", "name" : "Punjab", "type" : "State"}, {"code" : "IN-PY", "name" : "Puducherry", "type" : "Union territory"}, {"code" : "IN-RJ", "name" : "Rajasthan", "type" : "State"}, {"code" : "IN-SK", "name" : "Sikkim", "type" : "State"}, {"code" : "IN-TG", "name" : "Telangana", "type" : "State"}, {"code" : "IN-TN", "name" : "Tamil Nadu", "type" : "State"}, {"code" : "IN-TR", "name" : "Tripura", "type" : "State"}, {"code" : "IN-UP", "name" : "Uttar Pradesh", "type" : "State"}, {"code" : "IN-UT", "name" : "Uttarakhand", "type" : "State"}, {"code" : "IN-WB", "name" : "West Bengal", "type" : "State"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "name", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[149.125, 42.833333333333336], [149.125, 42.916666666666664], [149.25, 42.916666666666664], [149.25, 42.833333333333336], [149.125, 42.833333333333336]]]}, "properties" : {"code" : 644921, "url" : "http://madefor.github.io/0410/api/v1/644921.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/644921.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "download": {"type": "string"}, "p": {"type": "string"}}, "required": ["clean", "download", "p"]}, "dependencies": {"type": "object", "properties": {"download": {"type": "string"}, "sqlite3": {"type": "string"}, "validator": {"type": "string"}}, "required": ["download", "sqlite3", "validator"]}, "devDependencies": {"type": "object", "properties": {"just-scripts": {"type": "string"}}, "required": ["just-scripts"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scripts" : {"clean" : "rm -rf ./node_modules ./lib", "download" : "just install", "p" : "node node-sqlite3.js"}, "dependencies" : {"download" : "^8.0.0", "sqlite3" : "^5.0.2", "validator" : ">=13.7.0"}, "devDependencies" : {"just-scripts" : "^1.8.0"}}
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "download": {"type": "string"}, "p": {"type": "string"}}, "required": ["clean", "download", "p"]}, "dependencies": {"type": "object", "properties": {"download": {"type": "string"}, "sqlite3": {"type": "string"}, "validator": {"type": "string"}}, "required": ["download", "sqlite3", "validator"]}, "devDependencies": {"type": "object", "properties": {"just-scripts": {"type": "string"}}, "required": ["just-scripts"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$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" : "// Copyright 2017-2021 @polkadot/ui-settings authors & contributors\n// SPDX-License-Identifier: Apache-2.0\nimport { availableNetworks } from '@polkadot/networks';\nexport const PREFIX_DEFAULT = -1;\nconst defaultNetwork = {\n info: 'default',\n text: 'Default for the connected node',\n value: -1\n};\nconst networks = availableNetworks.map(({\n displayName,\n network,\n prefix\n}) => ({\n info: network,\n text: displayName,\n value: prefix\n}));\nexport const PREFIXES = [defaultNetwork, ...networks];", "map" : {"version" : 3, "sources" : ["/Users/seijyojikun/kitties-frontend/node_modules/@polkadot/ui-settings/defaults/ss58.js"], "names" : ["availableNetworks", "PREFIX_DEFAULT", "defaultNetwork", "info", "text", "value", "networks", "map", "displayName", "network", "prefix", "PREFIXES"], "mappings" : "AAAA;AACA;AACA,SAASA,iBAAT,QAAkC,oBAAlC;AACA,OAAO,MAAMC,cAAc,GAAG,CAAC,CAAxB;AACP,MAAMC,cAAc,GAAG;AACrBC,EAAAA,IAAI,EAAE,SADe;AAErBC,EAAAA,IAAI,EAAE,gCAFe;AAGrBC,EAAAA,KAAK,EAAE,CAAC;AAHa,CAAvB;AAKA,MAAMC,QAAQ,GAAGN,iBAAiB,CAACO,GAAlB,CAAsB,CAAC;AACtCC,EAAAA,WADsC;AAEtCC,EAAAA,OAFsC;AAGtCC,EAAAA;AAHsC,CAAD,MAIhC;AACLP,EAAAA,IAAI,EAAEM,OADD;AAELL,EAAAA,IAAI,EAAEI,WAFD;AAGLH,EAAAA,KAAK,EAAEK;AAHF,CAJgC,CAAtB,CAAjB;AASA,OAAO,MAAMC,QAAQ,GAAG,CAACT,cAAD,EAAiB,GAAGI,QAApB,CAAjB", "sourcesContent" : ["// Copyright 2017-2021 @polkadot/ui-settings authors & contributors\n// SPDX-License-Identifier: Apache-2.0\nimport { availableNetworks } from '@polkadot/networks';\nexport const PREFIX_DEFAULT = -1;\nconst defaultNetwork = {\n info: 'default',\n text: 'Default for the connected node',\n value: -1\n};\nconst networks = availableNetworks.map(({\n displayName,\n network,\n prefix\n}) => ({\n info: network,\n text: displayName,\n value: prefix\n}));\nexport const PREFIXES = [defaultNetwork, ...networks];"]}, "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jquery": {"type": "string"}, "@types/webrtc": {"type": "string"}, "css-loader": {"type": "string"}, "emoji-picker-element": {"type": "string"}, "file-loader": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-replace": {"type": "string"}, "grunt-webpack": {"type": "string"}, "lodash": {"type": "string"}, "sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "hosted-git-info": {"type": "string"}, "postcss": {"type": "string"}, "glob-parent": {"type": "string"}}, "required": ["@types/jquery", "@types/webrtc", "css-loader", "emoji-picker-element", "file-loader", "grunt", "grunt-contrib-clean", "grunt-contrib-watch", "grunt-replace", "grunt-webpack", "lodash", "sass", "sass-loader", "style-loader", "ts-loader", "typescript", "url-loader", "webpack", "hosted-git-info", "postcss", "glob-parent"]}}, "required": ["name", "version", "author", "contributors", "repository", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chat", "version" : "1.0.18", "author" : "Valentin Giselbrecht", "contributors" : [], "repository" : {"type" : "git", "url" : "https://github.com/vgiselbrecht/chat.git"}, "license" : "Apache 2.0", "devDependencies" : {"@types/jquery" : "^3.5.5", "@types/webrtc" : "0.0.26", "css-loader" : "^5.0.1", "emoji-picker-element" : "^1.4.0", "file-loader" : "^6.2.0", "grunt" : ">=1.3.0", "grunt-contrib-clean" : "~2.0.0", "grunt-contrib-watch" : "~1.1.0", "grunt-replace" : "^1.0.1", "grunt-webpack" : "^4.0.2", "lodash" : ">=4.17.21", "sass" : "^1.32.0", "sass-loader" : "^10.1.0", "style-loader" : "^2.0.0", "ts-loader" : "^8.0.13", "typescript" : "^4.1.3", "url-loader" : "^4.1.1", "webpack" : "^5.11.1", "hosted-git-info" : ">=2.8.9", "postcss" : ">=8.2.10", "glob-parent" : ">=5.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jquery": {"type": "string"}, "@types/webrtc": {"type": "string"}, "css-loader": {"type": "string"}, "emoji-picker-element": {"type": "string"}, "file-loader": {"type": "string"}, "grunt": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-replace": {"type": "string"}, "grunt-webpack": {"type": "string"}, "lodash": {"type": "string"}, "sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "hosted-git-info": {"type": "string"}, "postcss": {"type": "string"}, "glob-parent": {"type": "string"}}, "required": ["@types/jquery", "@types/webrtc", "css-loader", "emoji-picker-element", "file-loader", "grunt", "grunt-contrib-clean", "grunt-contrib-watch", "grunt-replace", "grunt-webpack", "lodash", "sass", "sass-loader", "style-loader", "ts-loader", "typescript", "url-loader", "webpack", "hosted-git-info", "postcss", "glob-parent"]}}, "required": ["name", "version", "author", "contributors", "repository", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : "0x9531a64a8eed54be880b3da14a14672475d5b69219788b8d90fa7847cb26cffa", "parentHash" : "0x81bf8590d7cf05bef8cd84eeda9e7a6d5628353619c43e3585b935d7e847cffe", "number" : 41151, "timestamp" : 1438833444, "nonce" : "0x74fdb1facd3e2f69", "difficulty" : 1374767688229, "gasLimit" : {"_hex" : "0x139d"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x01d9DA08cc6Fb97c0DE1B6F4C28910A0859Ed1A1", "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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"date": {"type": "string"}, "version": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}}, "required": ["date", "version", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"date" : "2020-07-30", "version" : "1.12.0", "entries" : [{"type" : "Feature", "description" : "A new experience for locally Running/Debugging Lambdas with SAM that uses VS Code launch configurations (PR #1215)"}, {"type" : "Feature", "description" : "SAM Apps that are in SAM Templates are now run/debugged through the Run panel via `aws-sam` Launch Configurations."}, {"type" : "Feature", "description" : "Add S3 integration to allow users to create buckets, list buckets, list files and folders, upload files, download files, delete files, delete buckets, and more!"}]}
json_instruct
{"type": "object", "properties": {"date": {"type": "string"}, "version": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}}, "required": ["date", "version", "entries"], "$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": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x9f599410d207f3d2828a8712e5e543ac2e040382", "tool" : "maian", "start" : 1565209351.184605, "end" : 1565209867.8702579, "duration" : 516.6856529712677, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"946771073250": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946771074774": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946771074775": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946771077006": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946771073250", "946771074774", "946771074775", "946771077006"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"946771073250" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9XT1JMRF95b3UtRVElMjBXb3JsZCUyME1hcCUyMFNlYXJjaC5odG1sLWFuYWx5dGljcy05NDY3NzEwNzMyMDA=.json"}, "946771074774" : {"type" : "st"}, "946771074775" : {"type" : "ss"}, "946771077006" : {"type" : "sf"}}
json_instruct
{"type": "object", "properties": {"946771073250": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946771074774": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946771074775": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946771077006": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946771073250", "946771074774", "946771074775", "946771077006"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 5263, "redacted" : false, "hash" : 5080612, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this 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": {"1.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.0", "1.1.1", "1.1.3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["1.1.3"], "meta" : {"description" : "DNS record scraper", "homepage" : "http://github.com/nosmo/fess_up", "license" : "Hacktivismo Enhanced-Source Software License Agreement"}, "versions" : {"1.0.0" : {"sha256" : "a49404673d6388da5bde885999a85fa5f60571bdbc440fc41c22278bc16498d5", "url" : "https://files.pythonhosted.org/packages/81/04/7d5df2f2363909638075d40bdb76c5e59d3ecbbe7e461aa615021286a6c5/fess_up-1.0.0.tar.gz"}, "1.1.1" : {"sha256" : "e45a551cac80e5369e461e7f6dc8a097821f7f3c687ba0bcc551982fdf6cee80", "url" : "https://files.pythonhosted.org/packages/ea/a2/e2b9d2e8bb2c2425c6cf836f2023709d56765b33b3ae2e502639da501574/fess_up-1.1.1.tar.gz"}, "1.1.3" : {"sha256" : "a3a800957bbb2ac2064c5d185ff582fb1ceb6672fd978dbdcb3b8af261c26e3c", "url" : "https://files.pythonhosted.org/packages/2d/72/a2d584db29ad5a513d803f598f94179607c0f4a0e994e2f3e4f5ef08ca9e/fess_up-1.1.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": {"1.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.0", "1.1.1", "1.1.3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "table": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "columns": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}, "primary": {"type": "boolean"}, "generated": {"type": "boolean"}}, "required": ["type", "primary", "generated"]}, "comment": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "metadata": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}}, "required": ["id", "comment", "metadata"]}, "relations": {"type": "object", "properties": {"post": {"type": "object", "properties": {"target": {"type": "string"}, "type": {"type": "string"}, "inverseSide": {"type": "string"}}, "required": ["target", "type", "inverseSide"]}}, "required": ["post"]}}, "required": ["name", "table", "columns", "relations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PostDetails", "table" : {"name" : "sample24_post_details"}, "columns" : {"id" : {"type" : "int", "primary" : true, "generated" : true}, "comment" : {"type" : "string", "nullable" : false}, "metadata" : {"type" : "string", "nullable" : false}}, "relations" : {"post" : {"target" : "Post", "type" : "one-to-one", "inverseSide" : "details"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "table": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "columns": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}, "primary": {"type": "boolean"}, "generated": {"type": "boolean"}}, "required": ["type", "primary", "generated"]}, "comment": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "metadata": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}}, "required": ["id", "comment", "metadata"]}, "relations": {"type": "object", "properties": {"post": {"type": "object", "properties": {"target": {"type": "string"}, "type": {"type": "string"}, "inverseSide": {"type": "string"}}, "required": ["target", "type", "inverseSide"]}}, "required": ["post"]}}, "required": ["name", "table", "columns", "relations"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"logicAppName": {"type": "object", "properties": {"value": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["value", "metadata"]}, "When_a_message_is_received_in_a_queue_(auto-complete)Frequency": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "When_a_message_is_received_in_a_queue_(auto-complete)Interval": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}, "documentdb_name": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "documentdb_displayName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "documentdb_databaseAccount": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "documentdb_accessKey": {"type": "object", "properties": {"value": {"type": "null"}}, "required": ["value"]}, "servicebus_name": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "servicebus_displayName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "servicebus_connectionString": {"type": "object", "properties": {"value": {"type": "null"}}, "required": ["value"]}}, "required": ["logicAppName", "When_a_message_is_received_in_a_queue_(auto-complete)Frequency", "When_a_message_is_received_in_a_queue_(auto-complete)Interval", "documentdb_name", "documentdb_displayName", "documentdb_databaseAccount", "documentdb_accessKey", "servicebus_name", "servicebus_displayName", "servicebus_connectionString"]}}, "required": ["$schema", "contentVersion", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion" : "1.0.0.0", "parameters" : {"logicAppName" : {"value" : "function-drm-consumer0000", "metadata" : {"description" : "Name of the Logic App."}}, "When_a_message_is_received_in_a_queue_(auto-complete)Frequency" : {"value" : "Minute"}, "When_a_message_is_received_in_a_queue_(auto-complete)Interval" : {"value" : 1}, "documentdb_name" : {"value" : "timeseries"}, "documentdb_displayName" : {"value" : "cosmosdbconnection"}, "documentdb_databaseAccount" : {"value" : "function-drm-monitor0000"}, "documentdb_accessKey" : {"value" : null}, "servicebus_name" : {"value" : "functiondrmmonitor0000"}, "servicebus_displayName" : {"value" : "servicebusconnection"}, "servicebus_connectionString" : {"value" : null}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"logicAppName": {"type": "object", "properties": {"value": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["value", "metadata"]}, "When_a_message_is_received_in_a_queue_(auto-complete)Frequency": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "When_a_message_is_received_in_a_queue_(auto-complete)Interval": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}, "documentdb_name": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "documentdb_displayName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "documentdb_databaseAccount": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "documentdb_accessKey": {"type": "object", "properties": {"value": {"type": "null"}}, "required": ["value"]}, "servicebus_name": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "servicebus_displayName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "servicebus_connectionString": {"type": "object", "properties": {"value": {"type": "null"}}, "required": ["value"]}}, "required": ["logicAppName", "When_a_message_is_received_in_a_queue_(auto-complete)Frequency", "When_a_message_is_received_in_a_queue_(auto-complete)Interval", "documentdb_name", "documentdb_displayName", "documentdb_databaseAccount", "documentdb_accessKey", "servicebus_name", "servicebus_displayName", "servicebus_connectionString"]}}, "required": ["$schema", "contentVersion", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "FUZZY", "name" : "Fuzzy Inu", "decimals" : 12, "address" : "0x4bcddfcfa8cb923952bcf16644b36e5da5ca3184"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"1256": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2888": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2317": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "3105": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "3580": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "3406": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "1787": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2498": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "4721": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2344": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}}, "required": ["1256", "2888", "2317", "3105", "3580", "3406", "1787", "2498", "4721", "2344"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"1256" : {"keys" : ["\u9bae\u6d3b", "\u679c\u6c41"]}, "2888" : {"keys" : ["\u897f\u74dc"]}, "2317" : {"keys" : ["\u516c\u516c", "\u6d77\u516c"]}, "3105" : {"keys" : ["\u7a69\u5957"]}, "3580" : {"keys" : ["\u53cb\u5a01"]}, "3406" : {"keys" : ["\u7389\u6676"]}, "1787" : {"keys" : ["\u798f\u76c8"]}, "2498" : {"keys" : ["\u5b8f\u9054", "HTC", "\u7d05\u8336", "\u96ea\u7d05"]}, "4721" : {"keys" : ["\u5abd\u5abd"]}, "2344" : {"keys" : ["\u83ef\u90a6"]}}
json_instruct
{"type": "object", "properties": {"1256": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2888": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2317": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "3105": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "3580": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "3406": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "1787": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2498": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "4721": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}, "2344": {"type": "object", "properties": {"keys": {"type": "array", "items": {"type": "string"}}}, "required": ["keys"]}}, "required": ["1256", "2888", "2317", "3105", "3580", "3406", "1787", "2498", "4721", "2344"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Similarity" : "0.979", "Title" : "How Do Readers Deal with Flashbacks in Narratives", "Year" : 2005}, {"Similarity" : "0.956", "Title" : "Individual differences and implicit language personality parts-of-speech and pervasiveness", "Year" : 2004}, {"Similarity" : "0.944", "Title" : "Creativity and Constraints The Production of Novel Sentences", "Year" : 2003}, {"Similarity" : "0.934", "Title" : "Knowing Whats Going On The Influence of Contextual Knowledge on the On-line Resolution of Structural Ambiguity", "Year" : 2006}, {"Similarity" : "0.914", "Title" : "Its all in your head Effects of expertise on real-time access to knowledge during written sentence processing", "Year" : 2017}, {"Similarity" : "0.883", "Title" : "Tracks in the Mind Differential Entrenchment of Common and Rare Liturgical and Everyday Multiword Phrases in Religious and Secular Hebrew Speakers", "Year" : 2008}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"routes": {"type": "object", "properties": {}, "required": []}, "ifs": {"type": "object", "properties": {"A1": {"type": "object", "properties": {"ip": {"type": "string"}}, "required": ["ip"]}, "B1": {"type": "object", "properties": {}, "required": []}, "C1": {"type": "object", "properties": {}, "required": []}, "D1": {"type": "object", "properties": {"ip": {"type": "string"}}, "required": ["ip"]}}, "required": ["A1", "B1", "C1", "D1"]}}, "required": ["routes", "ifs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"routes" : {}, "ifs" : {"A1" : {"ip" : "104.17.23.13"}, "B1" : {}, "C1" : {}, "D1" : {"ip" : "211.191.111.74"}}}
json_instruct
{"type": "object", "properties": {"routes": {"type": "object", "properties": {}, "required": []}, "ifs": {"type": "object", "properties": {"A1": {"type": "object", "properties": {"ip": {"type": "string"}}, "required": ["ip"]}, "B1": {"type": "object", "properties": {}, "required": []}, "C1": {"type": "object", "properties": {}, "required": []}, "D1": {"type": "object", "properties": {"ip": {"type": "string"}}, "required": ["ip"]}}, "required": ["A1", "B1", "C1", "D1"]}}, "required": ["routes", "ifs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "description", "start", "stop"]}}}, "required": ["uuid", "name", "description", "start", "stop", "children", "befores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "a76bb935-0980-4746-9d52-17323015ad41", "name" : "im.atzma.tests.AppointmentCreationTest.preconditions", "description" : "", "start" : 1554396536352, "stop" : 1554396537758, "children" : ["7f683dc8-22a9-47c8-a695-8e661a1bc3c8"], "befores" : [{"name" : "preconditions", "status" : "passed", "stage" : "finished", "description" : "", "start" : 1554396536352, "stop" : 1554396537758}]}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "description", "start", "stop"]}}}, "required": ["uuid", "name", "description", "start", "stop", "children", "befores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "prod": {"type": "string"}, "deploy": {"type": "string"}, "dev:server": {"type": "string"}, "dev:client": {"type": "string"}, "setup": {"type": "string"}, "clean:all": {"type": "string"}}, "required": ["dev", "prod", "deploy", "dev:server", "dev:client", "setup", "clean:all"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cross-env": {"type": "string"}}, "required": ["cross-env"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "testpolitickejgramotnosti", "version" : "0.0.1", "description" : "Kratky test zamerany na informatizaciu spolocnosti ohladom nadchadzajucich volieb", "main" : "index.js", "scripts" : {"dev" : "cross-env NODE_ENV=development npm run dev:client & npm run dev:server", "prod" : "cross-env NODE_ENV=production; cd client; npm run prod", "deploy" : "npm run prod; firebase deploy", "dev:server" : "cd server; npm run dev", "dev:client" : "cd client; npm run dev", "setup" : "npm i && cd client; npm i; cd ../server; npm i; cd ../functions; npm i", "clean:all" : "rm -rf node_modules; cd client; npm run clean:all; cd ../server; npm run clean:all"}, "author" : "Evan Santa", "license" : "ISC", "dependencies" : {"cross-env" : "^5.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "prod": {"type": "string"}, "deploy": {"type": "string"}, "dev:server": {"type": "string"}, "dev:client": {"type": "string"}, "setup": {"type": "string"}, "clean:all": {"type": "string"}}, "required": ["dev", "prod", "deploy", "dev:server", "dev:client", "setup", "clean:all"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cross-env": {"type": "string"}}, "required": ["cross-env"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "bio": {"type": "string"}, "image": {"type": "string"}, "imageAltText": {"type": "string"}}, "required": ["name", "title", "bio", "image", "imageAltText"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Jonathan Cain", "title" : "Board Member", "bio" : "Jonathan Omowal\u00e9 Cain is a library leader who believes that libraries have a huge role to play in higher education and society. He is passionate about making libraries and information centers more collaborative, equitable and inclusive for learners and knowledge workers. Currently, Jonathan serves as the Interim Director of Digital Strategies and the Head, Data Services at the University of Oregon Libraries. He designs data and digital education programs, focusing on equitable access and social justice as essential components. His research centers on understanding and interrogating the inequity in data & technology cultures, as well as the role of libraries as organizations for the public good, privacy in education, and social justice and equity. (Photo credit: Mandi Garcia, UO Libraries).", "image" : "/img/jonathan_cain_page_1.jpg", "imageAltText" : "Photo by Mandi Garcia, UO Libraries"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "bio": {"type": "string"}, "image": {"type": "string"}, "imageAltText": {"type": "string"}}, "required": ["name", "title", "bio", "image", "imageAltText"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "mysticalagriculture:block/soulstone_cracked_bricks"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"ASPetrov": {"type": "string"}}, "required": ["ASPetrov"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Alamofire": {"type": "array", "items": {"type": "string"}}}, "required": ["Alamofire"]}, "swift_versions": {"type": "array", "items": {"type": "string"}}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "dependencies", "swift_versions", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SFNetworkKit", "version" : "1.1.0", "summary" : "SFNetworkKit: Core networking and API functionality for Scalefocus iOS apps.", "description" : "SFNetworkKit is a library that includes, networking and API functionality for Scalefocus iOS projects.", "homepage" : "https://github.com/scalefocus/SFNetworkKit", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"ASPetrov" : "aleksandar.spetrov@scalefocus.com"}, "source" : {"git" : "https://github.com/scalefocus/SFNetworkKit.git", "tag" : "1.1.0"}, "platforms" : {"ios" : "13.0"}, "source_files" : "SFNetworkKit/Classes/**/*", "dependencies" : {"Alamofire" : ["~> 5.2.0"]}, "swift_versions" : ["5.1", "5.2"], "swift_version" : "5.2"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"ASPetrov": {"type": "string"}}, "required": ["ASPetrov"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Alamofire": {"type": "array", "items": {"type": "string"}}}, "required": ["Alamofire"]}, "swift_versions": {"type": "array", "items": {"type": "string"}}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "dependencies", "swift_versions", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "r-pracma", "downloads" : 5700, "count" : 5028}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3301730", "regency_id" : "3301", "name" : "CILACAP UTARA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : "Yoghurt", "MANUFACTURER" : "Savannah Dairies Limited", "BRANDNAME" : "Tropical", "WEIGHT" : "500ml"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "scale": {"type": "number"}}, "required": ["type", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "extraorigins:modify_size", "scale" : 0.925}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "scale": {"type": "number"}}, "required": ["type", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : 12837389265337637431, "features" : "[]", "target" : 9124939712912617398, "profile" : 4339006351771724982, "path" : 1734243333087879688, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "x86_64-apple-darwin/release/.fingerprint/itoa-19ba2b269b2d06a6/dep-lib-itoa"}}], "rustflags" : [], "metadata" : 2285756563936990018, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 7755, "source" : "calvin", "verse_id" : 18651, "verse_count" : 1, "reference" : "49:14", "title" : "", "html" : " <p> <i>But Zion said, Jehovah hath forsaken me. </i> In order to magnify his grace the more, God complains that the hearts of the Jews were so narrow and close, that the road was almost shut against him, if he had not overcome their wicked thoughts by his great goodness. Yet at the same time he endeavors to correct this fault, that the deliverance which is offered, and, as it were, set before them, may be received by them with open hearts, and that, as he is willing to assist them, so they, on the other hand, may be prepared to cherish favorable hopes. Now, to us also this doctrine belongs; because almost all of us, when God delays his assistance, are fearfully distressed and tormented; for we think that he has forsaken and rejected us. Thus despair quickly creeps in, which must be opposed, that we may not be deprived of the grace of God. And indeed amidst these doubts our unbelief is manifested and exposed, by our not relying on the promises of God, so as to bear patiently either the chastisements by which God urges us to repentance, or the trials of faith by which he trains us to patience, or any afflictions by which he humbles us. Justly therefore does God remonstrate with the Jews for rejecting by wicked distrust the salvation offered to them, and not permitting themselves to receive assistance. Nor does he limit this accusation to a small number, but includes nearly the whole Church, in order to shew that he will be kind and bountiful toward the Jews beyond the measure of their faith, and that he even strives with them, that by his salvation he may break through all the hinderances by which they opposed him. Let each of us therefore beware of indulging or flattering ourselves in this matter; for the Lord contends with the whole Church, for uttering speeches of this kind, which proceed from the fountain of distrust. </p> ", "audit" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}, "(7, 0, 1)": {"type": "string"}, "(7, 1, 1)": {"type": "string"}, "(8, 0, 1)": {"type": "string"}, "(8, 1, 1)": {"type": "string"}, "(9, 0, 1)": {"type": "string"}, "(9, 1, 1)": {"type": "string"}, "(10, 0, 1)": {"type": "string"}, "(10, 1, 1)": {"type": "string"}, "(11, 0, 1)": {"type": "string"}, "(11, 1, 1)": {"type": "string"}, "(12, 0, 1)": {"type": "string"}, "(12, 1, 1)": {"type": "string"}, "(13, 0, 1)": {"type": "string"}, "(13, 1, 1)": {"type": "string"}, "(14, 0, 1)": {"type": "string"}, "(14, 1, 1)": {"type": "string"}, "(15, 0, 1)": {"type": "string"}, "(15, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(6, 0, 1)", "(6, 1, 1)", "(7, 0, 1)", "(7, 1, 1)", "(8, 0, 1)", "(8, 1, 1)", "(9, 0, 1)", "(9, 1, 1)", "(10, 0, 1)", "(10, 1, 1)", "(11, 0, 1)", "(11, 1, 1)", "(12, 0, 1)", "(12, 1, 1)", "(13, 0, 1)", "(13, 1, 1)", "(14, 0, 1)", "(14, 1, 1)", "(15, 0, 1)", "(15, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"(0, 0, 2)" : "The Commitments", "(1, 0, 1)" : "Directed by", "(1, 1, 1)" : "Alan Parker", "(2, 0, 1)" : "Produced by", "(2, 1, 1)" : "Roger Randall-Cutler, Lynda Myles", "(3, 0, 1)" : "Screenplay by", "(3, 1, 1)" : "Dick Clement, Ian La Frenais, Roddy Doyle", "(4, 0, 1)" : "Based on", "(4, 1, 1)" : "The Commitments, by Roddy Doyle", "(5, 0, 1)" : "Starring", "(5, 1, 1)" : "Robert Arkins, Michael Aherne, Angeline Ball, Maria Doyle, Dave Finnegan, Bronagh Gallagher, F\u00e9lim Gormley, Glen Hansard, Dick Massey, Johnny Murphy, Kenneth McCluskey, Andrew Strong", "(6, 0, 1)" : "Cinematography", "(6, 1, 1)" : "Gale Tattersall", "(7, 0, 1)" : "Edited by", "(7, 1, 1)" : "Gerry Hambling", "(8, 0, 1)" : "Production, company", "(8, 1, 1)" : "Beacon Pictures, The First Film Company, Dirty Hands Productions", "(9, 0, 1)" : "Distributed by", "(9, 1, 1)" : "20th Century Fox", "(10, 0, 1)" : "Release date", "(10, 1, 1)" : "6\u00a0August\u00a01991\u00a0(1991-08-06) (West Hollywood), 14\u00a0August\u00a01991\u00a0(1991-08-14) (United States)", "(11, 0, 1)" : "Running time", "(11, 1, 1)" : "118 minutes", "(12, 0, 1)" : "Country", "(12, 1, 1)" : "Ireland, United Kingdom, United States", "(13, 0, 1)" : "Language", "(13, 1, 1)" : "English", "(14, 0, 1)" : "Budget", "(14, 1, 1)" : "$12-15 million", "(15, 0, 1)" : "Box office", "(15, 1, 1)" : "$14.9 million"}
json_instruct
{"type": "object", "properties": {"(0, 0, 2)": {"type": "string"}, "(1, 0, 1)": {"type": "string"}, "(1, 1, 1)": {"type": "string"}, "(2, 0, 1)": {"type": "string"}, "(2, 1, 1)": {"type": "string"}, "(3, 0, 1)": {"type": "string"}, "(3, 1, 1)": {"type": "string"}, "(4, 0, 1)": {"type": "string"}, "(4, 1, 1)": {"type": "string"}, "(5, 0, 1)": {"type": "string"}, "(5, 1, 1)": {"type": "string"}, "(6, 0, 1)": {"type": "string"}, "(6, 1, 1)": {"type": "string"}, "(7, 0, 1)": {"type": "string"}, "(7, 1, 1)": {"type": "string"}, "(8, 0, 1)": {"type": "string"}, "(8, 1, 1)": {"type": "string"}, "(9, 0, 1)": {"type": "string"}, "(9, 1, 1)": {"type": "string"}, "(10, 0, 1)": {"type": "string"}, "(10, 1, 1)": {"type": "string"}, "(11, 0, 1)": {"type": "string"}, "(11, 1, 1)": {"type": "string"}, "(12, 0, 1)": {"type": "string"}, "(12, 1, 1)": {"type": "string"}, "(13, 0, 1)": {"type": "string"}, "(13, 1, 1)": {"type": "string"}, "(14, 0, 1)": {"type": "string"}, "(14, 1, 1)": {"type": "string"}, "(15, 0, 1)": {"type": "string"}, "(15, 1, 1)": {"type": "string"}}, "required": ["(0, 0, 2)", "(1, 0, 1)", "(1, 1, 1)", "(2, 0, 1)", "(2, 1, 1)", "(3, 0, 1)", "(3, 1, 1)", "(4, 0, 1)", "(4, 1, 1)", "(5, 0, 1)", "(5, 1, 1)", "(6, 0, 1)", "(6, 1, 1)", "(7, 0, 1)", "(7, 1, 1)", "(8, 0, 1)", "(8, 1, 1)", "(9, 0, 1)", "(9, 1, 1)", "(10, 0, 1)", "(10, 1, 1)", "(11, 0, 1)", "(11, 1, 1)", "(12, 0, 1)", "(12, 1, 1)", "(13, 0, 1)", "(13, 1, 1)", "(14, 0, 1)", "(14, 1, 1)", "(15, 0, 1)", "(15, 1, 1)"], "$schema": "http://json-schema.org/draft-07/schema#"}