input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"MenyNyBehandlingIndex.NyForstegangsbehandling": {"type": "string"}, "MenyNyBehandlingIndex.ModalDescription": {"type": "string"}, "MenyNyBehandlingIndex.OpprettRevurdering": {"type": "string"}, "MenyNyBehandlingIndex.OpprettUnntak": {"type": "string"}, "MenyNyBehandlingIndex.OpprettNyForstegangsbehandling": {"type": "string"}, "MenyNyBehandlingIndex.NyBehandlingEtterKlage": {"type": "string"}, "MenyNyBehandlingIndex.Ok": {"type": "string"}, "MenyNyBehandlingIndex.Avbryt": {"type": "string"}, "MenyNyBehandlingIndex.SelectBehandlingTypePlaceholder": {"type": "string"}, "MenyNyBehandlingIndex.SelectBehandlingArsakTypePlaceholder": {"type": "string"}, "ValidationMessage.NotEmpty": {"type": "string"}}, "required": ["MenyNyBehandlingIndex.NyForstegangsbehandling", "MenyNyBehandlingIndex.ModalDescription", "MenyNyBehandlingIndex.OpprettRevurdering", "MenyNyBehandlingIndex.OpprettUnntak", "MenyNyBehandlingIndex.OpprettNyForstegangsbehandling", "MenyNyBehandlingIndex.NyBehandlingEtterKlage", "MenyNyBehandlingIndex.Ok", "MenyNyBehandlingIndex.Avbryt", "MenyNyBehandlingIndex.SelectBehandlingTypePlaceholder", "MenyNyBehandlingIndex.SelectBehandlingArsakTypePlaceholder", "ValidationMessage.NotEmpty"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MenyNyBehandlingIndex.NyForstegangsbehandling" : "Opprett ny behandling", "MenyNyBehandlingIndex.ModalDescription" : "Ny behandling", "MenyNyBehandlingIndex.OpprettRevurdering" : "Revurderingsbehandling", "MenyNyBehandlingIndex.OpprettUnntak" : "Unntakssbehandling", "MenyNyBehandlingIndex.OpprettNyForstegangsbehandling" : "Opprett ny behandling", "MenyNyBehandlingIndex.NyBehandlingEtterKlage" : "Behandlingen opprettes som et resultat av klagebehandling", "MenyNyBehandlingIndex.Ok" : "OK", "MenyNyBehandlingIndex.Avbryt" : "Avbryt", "MenyNyBehandlingIndex.SelectBehandlingTypePlaceholder" : "Velg", "MenyNyBehandlingIndex.SelectBehandlingArsakTypePlaceholder" : "Velg \u00e5rsak", "ValidationMessage.NotEmpty" : "Feltet m\u00e5 fylles ut"}
json_instruct
{"type": "object", "properties": {"MenyNyBehandlingIndex.NyForstegangsbehandling": {"type": "string"}, "MenyNyBehandlingIndex.ModalDescription": {"type": "string"}, "MenyNyBehandlingIndex.OpprettRevurdering": {"type": "string"}, "MenyNyBehandlingIndex.OpprettUnntak": {"type": "string"}, "MenyNyBehandlingIndex.OpprettNyForstegangsbehandling": {"type": "string"}, "MenyNyBehandlingIndex.NyBehandlingEtterKlage": {"type": "string"}, "MenyNyBehandlingIndex.Ok": {"type": "string"}, "MenyNyBehandlingIndex.Avbryt": {"type": "string"}, "MenyNyBehandlingIndex.SelectBehandlingTypePlaceholder": {"type": "string"}, "MenyNyBehandlingIndex.SelectBehandlingArsakTypePlaceholder": {"type": "string"}, "ValidationMessage.NotEmpty": {"type": "string"}}, "required": ["MenyNyBehandlingIndex.NyForstegangsbehandling", "MenyNyBehandlingIndex.ModalDescription", "MenyNyBehandlingIndex.OpprettRevurdering", "MenyNyBehandlingIndex.OpprettUnntak", "MenyNyBehandlingIndex.OpprettNyForstegangsbehandling", "MenyNyBehandlingIndex.NyBehandlingEtterKlage", "MenyNyBehandlingIndex.Ok", "MenyNyBehandlingIndex.Avbryt", "MenyNyBehandlingIndex.SelectBehandlingTypePlaceholder", "MenyNyBehandlingIndex.SelectBehandlingArsakTypePlaceholder", "ValidationMessage.NotEmpty"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyright" : "Goodybag, Inc.", "url" : "http://www.goodybag.com", "email" : "engineering@goodybag.com", "format" : "txt"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "format"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yuji Nakayama": {"type": "string"}}, "required": ["Yuji Nakayama"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "public_header_files": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "screenshots", "license", "authors", "source", "platforms", "requires_arc", "source_files", "public_header_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NAKPlaybackIndicatorView", "version" : "0.1.0", "summary" : "A view that mimics the music playback indicator in the Music.app on iOS 7.", "description" : "A view that mimics the music playback indicator in the Music.app on iOS 7.\nIt has three vertical bars and they oscillate randomly.", "homepage" : "https://github.com/yujinakayama/NAKPlaybackIndicatorView", "screenshots" : "https://raw.github.com/yujinakayama/NAKPlaybackIndicatorView/master/Documentation/screenshot.png", "license" : "MIT", "authors" : {"Yuji Nakayama" : "nkymyj@gmail.com"}, "source" : {"git" : "https://github.com/yujinakayama/NAKPlaybackIndicatorView.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "8.0"}, "requires_arc" : true, "source_files" : "Classes", "public_header_files" : ["Classes/NAKPlaybackIndicatorView.h", "Classes/NAKPlaybackIndicatorViewStyle.h"], "frameworks" : "QuartzCore"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yuji Nakayama": {"type": "string"}}, "required": ["Yuji Nakayama"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "public_header_files": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "screenshots", "license", "authors", "source", "platforms", "requires_arc", "source_files", "public_header_files", "frameworks"], "$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.2.dev46": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.dev47": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4.dev47": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5.dev50": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.dev51": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.7.dev52": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.2.dev46", "0.3.dev47", "0.4.dev47", "0.5.dev50", "0.6.dev51", "0.7.dev52"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.7.dev52"], "meta" : {"description" : "data archiving library", "homepage" : "https://github.com/stackforge/stacktach-shoebox", "license" : "Apache-2"}, "versions" : {"0.2.dev46" : {"sha256" : "6e6c5d9109e3439dca90682abc21d189682edc67b8d91eb49674366579bce455", "url" : "https://files.pythonhosted.org/packages/2e/b7/479e49ffb762ff01fa8c37c7bc9df9e99cd561877f435a8c86b7abed215f/shoebox-0.2.dev46.tar.gz"}, "0.3.dev47" : {"sha256" : "dbf56d83259c299d2e0c185fd80dc33310dda634523abe7e0c95b803675f31d6", "url" : "https://files.pythonhosted.org/packages/27/cf/6d9066e6effa18d0e3ab87ab9195d3a1c1feebbdf2c45f1632662c06b002/shoebox-0.3.dev47.tar.gz"}, "0.4.dev47" : {"sha256" : "b3ce570bc4663e065a0c585d69b4e6357b6a7ed66dc6910513d95442b8f1c726", "url" : "https://files.pythonhosted.org/packages/49/89/3a404a8613ba26ccd84b2efe0d3e40548a68f259ea33bcf14d75ea6eae00/shoebox-0.4.dev47.tar.gz"}, "0.5.dev50" : {"sha256" : "b31f6648c15bb109bfeabed3cf71eb4ce05a2d5bf7db8348d063057b36532319", "url" : "https://files.pythonhosted.org/packages/af/09/3f2b8b27efd2e31f5a8807b3ffb61a807998e864519c51a7d1dc74b1e301/shoebox-0.5.dev50.tar.gz"}, "0.6.dev51" : {"sha256" : "ac22ff20e7cda44408854ce190d02073bf3f00e04c0659f73556064b6c5e6551", "url" : "https://files.pythonhosted.org/packages/a4/b3/5a6888a4f5f2e9928ab312364fc5915c54763fe2a48e876319fa807bfc53/shoebox-0.6.dev51.tar.gz"}, "0.7.dev52" : {"sha256" : "e68bb568e33fe9b27e02ffed277f3afc12b2dd33fca2a30fb66cb7e665b40007", "url" : "https://files.pythonhosted.org/packages/23/d6/e2d973ff06dceda8fbcaad7f464d416095eff7bb0d33bfc98d43e87d453b/shoebox-0.7.dev52.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.2.dev46": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.3.dev47": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4.dev47": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5.dev50": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.dev51": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.7.dev52": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.2.dev46", "0.3.dev47", "0.4.dev47", "0.5.dev50", "0.6.dev51", "0.7.dev52"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-qq7v-ccww-8wh3", "modified" : "2022-02-17T00:00:27Z", "published" : "2022-02-17T00:00:27Z", "aliases" : ["CVE-2021-43302"], "details" : "Read out-of-bounds in PJSUA API when calling pjsua_recorder_create. An attacker-controlled 'filename' argument may cause an out-of-bounds read when the filename is shorter than 4 characters.", "severity" : [], "affected" : [], "references" : [{"type" : "WEB", "url" : "https://github.com/pjsip/pjproject/security/advisories/GHSA-qcvw-h34v-c7r9"}, {"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-43302"}], "database_specific" : {"cwe_ids" : [], "severity" : null, "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "colorbuild:block/pink_stone"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jodit.min.css" : "sha256-n3V5SOJprGzJcMNZEhLIh8dvoVYoCLa0TJEt6oh5quI=", "jodit.min.js" : "sha256-yh+Tcrk9WUKZbmmc7Al2SgjTJpUpI6Z1jQIiY4ZnHSE="}
json_instruct
{"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"mode": {"type": "string"}, "config": {"type": "object", "properties": {"item_list": {"type": "object", "properties": {"item": {"type": "object", "properties": {"status": {"type": "boolean"}}, "required": ["status"]}}, "required": ["item"]}}, "required": ["item_list"]}, "user": {"type": "object", "properties": {"id": {"type": "string"}, "firstname": {"type": "string"}, "lastname": {"type": "string"}}, "required": ["id", "firstname", "lastname"]}}, "required": ["mode", "config", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mode" : "item_list", "config" : {"item_list" : {"item" : {"status" : true}}}, "user" : {"id" : "walterwhite", "firstname" : "walter", "lastname" : "white"}}
json_instruct
{"type": "object", "properties": {"mode": {"type": "string"}, "config": {"type": "object", "properties": {"item_list": {"type": "object", "properties": {"item": {"type": "object", "properties": {"status": {"type": "boolean"}}, "required": ["status"]}}, "required": ["item"]}}, "required": ["item_list"]}, "user": {"type": "object", "properties": {"id": {"type": "string"}, "firstname": {"type": "string"}, "lastname": {"type": "string"}}, "required": ["id", "firstname", "lastname"]}}, "required": ["mode", "config", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [0.480412, 0.39715, 0.679012, 0.480832, 0.429175, 0.848572, 0.395602, 0.444898, 0.865301, 0.382269, 0.508263, 0.870228, 0.424243, 0.428925, 0.76919, 0.523584, 0.428921, 0.801278, 0.60748, 0.476393, 0.777048, 0.537371, 0.436938, 0.62727, 0.508239, 0.595561, 0.955795, 0.466698, 0.595731, 0.878506, 0.480766, 0.714582, 0.829291, 0.494437, 0.809843, 0.840521, 0.53736, 0.595425, 0.874134, 0.523536, 0.714668, 0.838037, 0.509598, 0.809954, 0.798194, 0.438246, 0.389069, 0.657109, 0.494145, 0.381264, 0.649195, 0.396706, 0.396936, 0.594335, 0.49534, 0.381265, 0.365509, 0.523386, 0.841578, 0.46427, 0.551251, 0.841564, 0.494505, 0.509604, 0.825816, 0.602496, 0.495225, 0.833562, 0.553153, 0.480942, 0.833537, 0.546028, 0.494389, 0.833666, 0.640626], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 47902, "info" : {"name" : "The Summer Set Everything's Fine", "description" : "The Summer Set Everything's Fine", "additionalInfo" : null, "format" : "uso", "category" : "tumblr", "createdAt" : "2011-05-15T15:10:17.000Z", "updatedAt" : "2011-05-15T15:10:17.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 101559, "name" : "givemetherapy10"}}, "stats" : {"installs" : {"total" : 346, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "47902-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix('http://www.tumblr.com/'), url-prefix('https://www.tumblr.com/') {\r\n\r\n\r\n\r\n\r\nol#posts li.post.new_post {\r\n\r\nbackground: #ffffff url('http://i684.photobucket.com/albums/vv202/TeamJacob2013/page.jpg') repeat;\r\n\r\n}\r\n\r\n\r\n\r\nimg[src*=\"http://assets.tumblr.com/images/new_post_icons_no_labels.png\"]{\r\n\r\n width:0;\r\n\r\n height:70px;\r\n\r\n padding-right:250px;\r\n\r\n opacity: 0;\r\n\r\n}\r\n\r\n\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"commands" : ["hit yellow key", "attack yellow key", "strike yellow key"], "response_type" : "display", "response" : "You hit the Yellow Key. But that didn't do anything."}
json_instruct
{"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"meteor_status_connected": {"type": "string"}, "meteor_status_connecting": {"type": "string"}, "meteor_status_failed": {"type": "string"}, "meteor_status_waiting": {"type": "string"}, "meteor_status_offline": {"type": "string"}, "meteor_status_reconnect_in": {"type": "string"}, "meteor_status_reconnect_in_plural": {"type": "string"}, "meteor_status_try_now_waiting": {"type": "string"}, "meteor_status_try_now_offline": {"type": "string"}}, "required": ["meteor_status_connected", "meteor_status_connecting", "meteor_status_failed", "meteor_status_waiting", "meteor_status_offline", "meteor_status_reconnect_in", "meteor_status_reconnect_in_plural", "meteor_status_try_now_waiting", "meteor_status_try_now_offline"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"meteor_status_connected" : "Conectado", "meteor_status_connecting" : "Conectando...", "meteor_status_failed" : "A conex\u00e3o com o servidor falhou", "meteor_status_waiting" : "Aguardando pela conex\u00e3o com o servidor,", "meteor_status_offline" : "Modo offline.", "meteor_status_reconnect_in" : "tentando novamente em um segundo...", "meteor_status_reconnect_in_plural" : "tentando novamente em __count__ segundos...", "meteor_status_try_now_waiting" : "Tentar agora", "meteor_status_try_now_offline" : "Conectar novamente"}
json_instruct
{"type": "object", "properties": {"meteor_status_connected": {"type": "string"}, "meteor_status_connecting": {"type": "string"}, "meteor_status_failed": {"type": "string"}, "meteor_status_waiting": {"type": "string"}, "meteor_status_offline": {"type": "string"}, "meteor_status_reconnect_in": {"type": "string"}, "meteor_status_reconnect_in_plural": {"type": "string"}, "meteor_status_try_now_waiting": {"type": "string"}, "meteor_status_try_now_offline": {"type": "string"}}, "required": ["meteor_status_connected", "meteor_status_connecting", "meteor_status_failed", "meteor_status_waiting", "meteor_status_offline", "meteor_status_reconnect_in", "meteor_status_reconnect_in_plural", "meteor_status_try_now_waiting", "meteor_status_try_now_offline"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Barayong, Ligao City, Albay, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.albay.ligao-city.barayong", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_reference" : "5", "region_name" : "Bicol Region (Region V)", "province_id" : "5", "province_reference" : "5", "province_name" : "Albay", "city_id" : "692", "city_reference" : "80", "city_name" : "Ligao City", "barangay_id" : "19385", "barangay_reference" : "1546", "barangay_name" : "Barayong"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.564301, 13.28143], [123.567162, 13.28052], [123.575684, 13.27733], [123.571449, 13.26958], [123.558563, 13.27417], [123.564301, 13.28143]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cam/image_array" : "6897_cam-image_array_.jpg", "user/angle" : 0.256, "user/throttle" : 0.778, "user/mode" : "user", "pos/pos_x" : 44.55238, "pos/pos_y" : 0.5556784, "pos/pos_z" : 47.98263, "pos/speed" : 12.18503, "pos/cte" : 0.0, "milliseconds" : 368454}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-09-05T18:00:00Z", "Temp" : 25.4, "RelHum" : 66, "WindSpeed" : 3.5, "WindDir" : 330}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Linear support vector machines via dual cached loops.", "fields" : ["on the fly", "coordinate descent", "cache", "trade off", "thread"], "abstract" : "Modern computer hardware offers an elaborate hierarchy of storage subsystems with different speeds, capacities, and costs associated with them. Furthermore, processors are now inherently parallel offering the execution of several diverse threads simultaneously. This paper proposes StreamSVM, the first algorithm for training linear Support Vector Machines (SVMs) which takes advantage of these properties by integrating caching with optimization. StreamSVM works by performing updates in the dual, thus obviating the need to rebalance frequently visited examples. Furthermore we trade off file I/O with data expansion on the fly by generating features on demand. This significantly increases throughput. Experiments show that StreamSVM outperforms other linear SVM solvers, including the award winning work of [38], by orders of magnitude and produces more accurate solutions within a shorter amount of time.", "citation" : "Citations (11)", "departments" : ["University of Tokyo", "Purdue University", "Yahoo!"], "authors" : ["Shin Matsushima.....http://dblp.org/pers/hd/m/Matsushima:Shin", "S. V. N. Vishwanathan.....http://dblp.org/pers/hd/v/Vishwanathan:S=_V=_N=", "Alexander J. Smola.....http://dblp.org/pers/hd/s/Smola:Alexander_J="], "conf" : "kdd", "year" : "2012", "pages" : 9}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"--port": {"type": "integer"}, "*.js": {"type": "string"}, "*.html": {"type": "string"}}, "required": ["--port", "*.js", "*.html"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"--port" : 8888, "*.js" : "@echo 'muted'", "*.html" : "echo 'muted'"}
json_instruct
{"type": "object", "properties": {"--port": {"type": "integer"}, "*.js": {"type": "string"}, "*.html": {"type": "string"}}, "required": ["--port", "*.js", "*.html"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "jupyter.104.155.63.1.nip.io", "min_cert_id" : 1037256408, "min_entry_timestamp" : "2018-12-17T20:34:06.36", "not_before" : "2018-12-17T19:34:05", "not_after" : "2019-03-17T19:34:05"}
json_instruct
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-native-progresshud", "version" : "0.0.3", "description" : "react-native progress hud", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/follyxing/react-native-progresshud.git"}, "keywords" : ["react-native", "react", "native", "hud", "loading"], "author" : "xingcheng", "license" : "MIT", "bugs" : {"url" : "https://github.com/follyxing/react-native-progresshud/issues"}, "homepage" : "https://github.com/follyxing/react-native-progresshud#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 166702, "name" : "SNCB NMBS 2020 Fix", "description" : "The sidebar doesn't disappear anymore and has a scroller for little screens.\r\nThe topbar is now full width and is transparent.", "user" : {"id" : 754688, "name" : "Axel ANDA (ThaiXel)", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2018-12-06T23:14:10.000Z", "weekly_install_count" : 0, "total_install_count" : 3, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/166702_after.jpeg?r=1593245275", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : "publicdomain", "created" : "2018-12-06T20:59:50.000Z", "category" : "site", "raw_subcategory" : "belgiantrain", "subcategory" : "belgiantrain", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document regexp('http(s?)://www\\\\.belgiantrain\\\\.be/.*') {\r\n@media (min-width: 992px){\r\n .sidebar-planner {\r\n position: fixed;\r\n overflow-y: hidden;\r\n max-height: calc(100vh - 80px);\r\n }\r\n}\r\n@media (max-height: 776px) {\r\n .sidebar-planner {\r\n overflow-y: scroll;\r\n } \r\n}\r\n.navigation-bar {\r\n\tbackground: rgba(255,255,255,.80);\r\n}\r\n.navigation-bar__main {\r\n background: rgba(255,255,255,.80);\r\n}\r\n .sidebar-planner::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);background-color: #00385f;}\r\n .sidebar-planner::-webkit-scrollbar {width: 12px;background-color: #007dd4;}\r\n .sidebar-planner::-webkit-scrollbar-thumb {background-color: #007dd4;border: 2px solid #00385f;}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/166702/sncb-nmbs-2020-fix.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "JARINE", "frequency" : 1, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"siteName": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "title": {"type": "string"}}, "required": ["href", "title"]}}, "root": {"type": "string"}}, "required": ["siteName", "description", "links", "root"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"siteName" : "Name of Website", "description" : "Description of website", "links" : [{"href" : "/html-page", "title" : "HTML Page"}, {"href" : "https://example.com/", "title" : "External Page"}], "root" : ""}
json_instruct
{"type": "object", "properties": {"siteName": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "title": {"type": "string"}}, "required": ["href", "title"]}}, "root": {"type": "string"}}, "required": ["siteName", "description", "links", "root"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "scope": {"type": "string"}, "token_type": {"type": "string"}, "expiry_date": {"type": "integer"}}, "required": ["access_token", "refresh_token", "scope", "token_type", "expiry_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"access_token" : "ya29.a0ARrdaM8in08Oa6WV1gJoqR9WlaU0A3X11Rk9665AexZd-4fcD1yiT4ClyrLIj45Auq5sWhxqFKKXVL6YYRZjYwp4isMuId2PDWZ-U31hWIelrhF9NgvjFr9-sv7b9VEhOK7P9w1SSq1zt-8stfXMg7S-14Nc", "refresh_token" : "1//09OZUHImMV67CCgYIARAAGAkSNwF-L9IrRiUK_OZKoPUcBF4Pppb4sm-QLTkcWUGwQZ_vFQcdNhy-3_6mgFir5eIDx8Ussyy5Njg", "scope" : "https://www.googleapis.com/auth/calendar", "token_type" : "Bearer", "expiry_date" : 1629142680859}
json_instruct
{"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "scope": {"type": "string"}, "token_type": {"type": "string"}, "expiry_date": {"type": "integer"}}, "required": ["access_token", "refresh_token", "scope", "token_type", "expiry_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "ophidion", "definition" : "The typical genus of ophidioid fishes. [Written also Ophidium.] See Illust. under Ophidioid."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "450323206200", "text" : "\u5170\u7530\u6751\u59d4\u4f1a"}, {"id" : "450323206201", "text" : "\u4e24\u5408\u6751\u59d4\u4f1a"}, {"id" : "450323206202", "text" : "\u5357\u5773\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"jodit.css": {"type": "string"}, "jodit.es2018.css": {"type": "string"}, "jodit.es2018.js": {"type": "string"}, "jodit.es2018.min.css": {"type": "string"}, "jodit.es2018.min.js": {"type": "string"}, "jodit.js": {"type": "string"}, "jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.css", "jodit.es2018.css", "jodit.es2018.js", "jodit.es2018.min.css", "jodit.es2018.min.js", "jodit.js", "jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jodit.css" : "sha512-MWykLCXvyOTrm37XwCSRUXA2MfNxzMZn6UCVKpbJf1TWnmQqdAkLu6/CF4b4vGulHPdu41LvM0RPHpxi+nTRUw==", "jodit.es2018.css" : "sha512-oiXA2+0JXnkN6+/0hZIghaC5cTmKH7nf7BgOQrXcX5taliZ4XhsrYZKQMcHax+CUnnOAxTUpIsUSrJhiZbVooA==", "jodit.es2018.js" : "sha512-oF+zzIQXB7enPFkznFgEoUcWoDFTXIAla/Li/FUMlDP0H9H0DR7ywnYP+wL0PkLIJP2h3t6yW+CZx0MBvKuUKQ==", "jodit.es2018.min.css" : "sha512-USJKkxoutjz71SrvEOPU+ykwf5/fuxCCk6z2bJRVmUAPBoUmCSB/Vb0Ff6GhX1MwIPlwhC1WhlxSj1VRKFDCbw==", "jodit.es2018.min.js" : "sha512-oAkZQ8P556rl4LSQ1tH8KPux0WRxce+SWENuUs5u3dJayKwhv3oSSBEmFgPrSWNbjtyziiiVjUoQrfazim1lHQ==", "jodit.js" : "sha512-tfE0Ul3F7QqaOOFd8WWZgtXt56JOh6H8D+nBxokdJMjFhw+4bX01NeaGg9QXoWXTs1jq8GY3gp71J5Hi43r8SA==", "jodit.min.css" : "sha512-Zmi7UWl4OdnDHIMAoVtjXZ0xDmHAOdFgcjWHTN8Kx3ypNSW4DZEulKigVQTXp7iG0YKPycy3PSM1X6uqnFJHbQ==", "jodit.min.js" : "sha512-ydQv893UVejFTFV4GrhKKivkJwfNHwLoyu5vGl0HRkwgBPgBgJfYkoF8nxgWOB+pCmzfccUScEeQhyNH3nuEdQ=="}
json_instruct
{"type": "object", "properties": {"jodit.css": {"type": "string"}, "jodit.es2018.css": {"type": "string"}, "jodit.es2018.js": {"type": "string"}, "jodit.es2018.min.css": {"type": "string"}, "jodit.es2018.min.js": {"type": "string"}, "jodit.js": {"type": "string"}, "jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.css", "jodit.es2018.css", "jodit.es2018.js", "jodit.es2018.min.css", "jodit.es2018.min.js", "jodit.js", "jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"900097812": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097813": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097814": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097815": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097816": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097817": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900097812", "900097813", "900097814", "900097815", "900097816", "900097817"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900097812" : {"nama" : "TPS 1", "dapil" : [1602, 11605, 2160102]}, "900097813" : {"nama" : "TPS 2", "dapil" : [1602, 11605, 2160102]}, "900097814" : {"nama" : "TPS 3", "dapil" : [1602, 11605, 2160102]}, "900097815" : {"nama" : "TPS 4", "dapil" : [1602, 11605, 2160102]}, "900097816" : {"nama" : "TPS 5", "dapil" : [1602, 11605, 2160102]}, "900097817" : {"nama" : "TPS 6", "dapil" : [1602, 11605, 2160102]}}
json_instruct
{"type": "object", "properties": {"900097812": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097813": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097814": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097815": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097816": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097817": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900097812", "900097813", "900097814", "900097815", "900097816", "900097817"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CIDADE" : "Col\u00f4nia Leopoldina", "IBGE" : "2702108", "ESTADO" : "Alagoas", "ID" : "27"}
json_instruct
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"files.simpleDialog.enable": {"type": "boolean"}, "window.dialogStyle": {"type": "string"}}, "required": ["files.simpleDialog.enable", "window.dialogStyle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files.simpleDialog.enable" : true, "window.dialogStyle" : "custom"}
json_instruct
{"type": "object", "properties": {"files.simpleDialog.enable": {"type": "boolean"}, "window.dialogStyle": {"type": "string"}}, "required": ["files.simpleDialog.enable", "window.dialogStyle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "format": {"type": "string"}, "path": {"type": "string"}, "details": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "path": {"type": "string"}}, "required": ["description", "path"]}}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "format", "path", "details", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Root", "format" : "Root", "path" : ".", "details" : [{"description" : "Current kit", "path" : "Current"}], "children" : ["$resource:Logical/Setup.json", "$resource:Logical/Kits.json", "$resource:Logical/Triggers.json"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "format": {"type": "string"}, "path": {"type": "string"}, "details": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "path": {"type": "string"}}, "required": ["description", "path"]}}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "format", "path", "details", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}, "contributors": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic", "contributors", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PythonApplication1", "description" : "\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u7d4c\u9a13\u8005\u306e\u305f\u3081\u306ePython\u6700\u901f\u5165\u9580\u3000\u306e\u5199\u7d4c", "license" : null, "starNum" : 0, "folkNum" : 0, "watchNum" : 0, "topic" : [], "contributors" : ["yadac"], "packages" : [""]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}, "contributors": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic", "contributors", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"copyReadmeToDocfxIndex": {"type": "boolean"}, "disableDefaultFilter": {"type": "boolean"}, "disableGitFeatures": {"type": "boolean"}, "copyFolderToDocument": {"type": "array", "items": {}}}, "required": ["copyReadmeToDocfxIndex", "disableDefaultFilter", "disableGitFeatures", "copyFolderToDocument"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyReadmeToDocfxIndex" : true, "disableDefaultFilter" : false, "disableGitFeatures" : false, "copyFolderToDocument" : []}
json_instruct
{"type": "object", "properties": {"copyReadmeToDocfxIndex": {"type": "boolean"}, "disableDefaultFilter": {"type": "boolean"}, "disableGitFeatures": {"type": "boolean"}, "copyFolderToDocument": {"type": "array", "items": {}}}, "required": ["copyReadmeToDocfxIndex", "disableDefaultFilter", "disableGitFeatures", "copyFolderToDocument"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 16382, "title" : "Ten Billion Tomorrows: How Science Fiction Technology Became Reality", "year" : 2015, "type" : "novel", "imageName" : "BC_tenbilli.jpg", "nominations" : 0, "wins" : -1}, {"id" : 16383, "title" : "How To Build a Time Machine: The Real Science of Time Travel", "year" : 2011, "type" : "novel", "imageName" : "BC_howtobui.jpg", "nominations" : 0, "wins" : -1}, {"id" : 16384, "title" : "Upgrade Me: Our Amazing Journey to Human 2.0", "year" : 2008, "type" : "novel", "imageName" : "BC_upgradem.jpg", "nominations" : 0, "wins" : -1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "6f5d82b4", "name" : "Citrus leaf blotch virus", "abbreviation" : "CLBV", "schema" : []}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}, "hash": {"type": "string"}}, "required": ["image", "attributes", "code", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"image" : "https://ipfs.infura.io/ipfs/QmTHfdRQURrMb8hZPyJgFK6etAZAK1bUkqy3TpQuX91pKD", "attributes" : [{"trait_type" : "Type", "value" : "Wolf"}, {"trait_type" : "Gender", "value" : "Male"}, {"trait_type" : "Turtleneck", "value" : "High-Neck"}, {"trait_type" : "Turtleneck Color", "value" : "Light Blue"}], "code" : "wmssh2#99ccff", "hash" : "95d4b3d1b3b8b7a51beb9e91df319886454f53d0838b85fae27c6ef4c4f62ce4"}
json_instruct
{"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}, "hash": {"type": "string"}}, "required": ["image", "attributes", "code", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 404418795, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "1849d6472c668ab2a34fe12b04607e6f", "wof:id" : 404418795, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.25798314300385, 50.93230081484207, 2.31894945115085, 50.97574594048776], "geometry" : {"coordinates" : [[[2.2946125725311, 50.93230081484207], [2.25798314300385, 50.93835009639312], [2.2645760344609, 50.95532511628831], [2.2695890235226, 50.95922963692921], [2.28396702708312, 50.97574594048776], [2.31894945115085, 50.95476304589898], [2.2946125725311, 50.93230081484207]]], "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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1972, "surahNumber" : "016", "ayatNumber" : "071", "arabic" : "\u0648\u064e\u0627\u0644\u0644\u0651\u064e\u0647\u064f \u0641\u064e\u0636\u0651\u064e\u0644\u064e \u0628\u064e\u0639\u0652\u0636\u064e\u0643\u064f\u0645\u0652 \u0639\u064e\u0644\u064e\u0649\u0670 \u0628\u064e\u0639\u0652\u0636\u064d \u0641\u0650\u064a \u0627\u0644\u0631\u0651\u0650\u0632\u0652\u0642\u0650 \u06da \u0641\u064e\u0645\u064e\u0627 \u0627\u0644\u0651\u064e\u0630\u0650\u064a\u0646\u064e \u0641\u064f\u0636\u0651\u0650\u0644\u064f\u0648\u0627 \u0628\u0650\u0631\u064e\u0627\u062f\u0651\u0650\u064a \u0631\u0650\u0632\u0652\u0642\u0650\u0647\u0650\u0645\u0652 \u0639\u064e\u0644\u064e\u0649\u0670 \u0645\u064e\u0627 \u0645\u064e\u0644\u064e\u0643\u064e\u062a\u0652 \u0623\u064e\u064a\u0652\u0645\u064e\u0627\u0646\u064f\u0647\u064f\u0645\u0652 \u0641\u064e\u0647\u064f\u0645\u0652 \u0641\u0650\u064a\u0647\u0650 \u0633\u064e\u0648\u064e\u0627\u0621\u064c \u06da \u0623\u064e\u0641\u064e\u0628\u0650\u0646\u0650\u0639\u0652\u0645\u064e\u0629\u0650 \u0627\u0644\u0644\u0651\u064e\u0647\u0650 \u064a\u064e\u062c\u0652\u062d\u064e\u062f\u064f\u0648\u0646\u064e", "english" : "And Allah has preferred some of you above others in wealth and properties. Then, those who are preferred will by no means hand over their wealth and properties to those (slaves) whom their right hands possess, so that they may be equal with them in respect thereof. Do they then deny the Favour of Allah?", "bengali" : "\u0986\u09b2\u09cd\u09b2\u09be\u09b9 \u09a4\u09be\u2019\u0986\u09b2\u09be \u099c\u09c0\u09ac\u09a8\u09c7\u09be\u09aa\u0995\u09b0\u09a3\u09c7 \u09a4\u09c7\u09be\u09ae\u09be\u09a6\u09c7\u09b0 \u098f\u0995\u099c\u09a8\u0995\u09c7 \u0985\u09a8\u09cd\u09af\u099c\u09a8\u09c7\u09b0 \u099a\u09be\u0987\u09a4\u09c7 \u09b6\u09cd\u09b0\u09c7\u09b7\u09cd\u099f\u09a4\u09cd\u09ac \u09a6\u09bf\u09df\u09c7\u099b\u09c7\u09a8\u0964 \u0985\u09a4\u098f\u09ac \u09af\u09be\u09a6\u09c7\u09b0\u0995\u09c7 \u09b6\u09cd\u09b0\u09c7\u09b7\u09cd\u09a0\u09a4\u09cd\u09ac \u09a6\u09c7\u09df\u09be \u09b9\u09df\u09c7\u099b\u09c7, \u09a4\u09be\u09b0\u09be \u09a4\u09be\u09a6\u09c7\u09b0 \u0985\u09a7\u09c0\u09a8\u09b8\u09cd\u09a5 \u09a6\u09be\u09b8-\u09a6\u09be\u09b8\u09c0\u09a6\u09c7\u09b0\u0995\u09c7 \u09b8\u09cd\u09ac\u09c0\u09df \u099c\u09c0\u09ac\u09bf\u0995\u09be \u09a5\u09c7\u0995\u09c7 \u098f\u09ae\u09a8 \u0995\u09bf\u099b\u09c1 \u09a6\u09c7\u09df \u09a8\u09be, \u09af\u09be\u09a4\u09c7 \u09a4\u09be\u09b0\u09be \u098f \u09ac\u09bf\u09b7\u09df\u09c7 \u09a4\u09be\u09a6\u09c7\u09b0 \u09b8\u09ae\u09be\u09a8 \u09b9\u09df\u09c7 \u09af\u09be\u09ac\u09c7\u0964 \u09a4\u09ac\u09c7 \u0995\u09bf \u09a4\u09be\u09b0\u09be \u0986\u09b2\u09cd\u09b2\u09be\u09b9\u09b0 \u09a8\u09c7\u09df\u09be\u09ae\u09a4 \u0985\u09b8\u09cd\u09ac\u09c0\u0995\u09be\u09b0 \u0995\u09b0\u09c7\u0964"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1888, 7], [1889, 10], [1890, 13], [1891, 13], [1892, 6], [1893, 11], [1894, 14], [1895, 18], [1896, 19], [1897, 24], [1898, 26], [1899, 14], [1900, 20], [1901, 26], [1902, 18], [1903, 26], [1904, 38], [1905, 35], [1906, 27], [1907, 42], [1908, 36], [1909, 46], [1910, 55], [1911, 66], [1912, 86], [1913, 117], [1914, 163], [1915, 156], [1916, 190], [1917, 192], [1918, 201], [1919, 177], [1920, 210], [1921, 221], [1922, 238], [1923, 249], [1924, 243], [1925, 214], [1926, 203], [1927, 207], [1928, 151], [1929, 157], [1930, 130], [1931, 124], [1932, 125], [1933, 111], [1934, 118], [1935, 156], [1936, 195], [1937, 295], [1938, 265], [1939, 336], [1940, 368], [1941, 409], [1942, 537], [1943, 516], [1944, 337], [1945, 368], [1946, 444], [1947, 456], [1948, 499], [1949, 475], [1950, 571], [1951, 505], [1952, 500], [1953, 518], [1954, 465], [1955, 423], [1956, 570], [1957, 544], [1958, 586], [1959, 649], [1960, 650], [1961, 624], [1962, 634], [1963, 546], [1964, 544], [1965, 649], [1966, 506], [1967, 460], [1968, 371], [1969, 366], [1970, 367], [1971, 297], [1972, 266], [1973, 214], [1974, 184], [1975, 188], [1976, 202], [1977, 178], [1978, 155], [1979, 117], [1980, 99], [1981, 93], [1982, 104], [1983, 97], [1984, 105], [1985, 97], [1986, 90], [1987, 79], [1988, 77], [1989, 80], [1990, 79], [1991, 73], [1992, 67], [1993, 49], [1994, 50], [1995, 43], [1996, 48], [1997, 45], [1998, 40], [1999, 42], [2000, 38], [2001, 39], [2002, 40], [2003, 48], [2004, 45], [2005, 35], [2006, 40], [2007, 49], [2008, 33], [2009, 36], [2010, 49], [2011, 62], [2012, 74], [2013, 91], [2014, 100]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"AzureAd": {"type": "object", "properties": {"Authority": {"type": "string"}, "ClientId": {"type": "string"}, "ValidateAuthority": {"type": "boolean"}}, "required": ["Authority", "ClientId", "ValidateAuthority"]}, "UrlShortenerSecuredService": {"type": "object", "properties": {"Endpoint": {"type": "string"}}, "required": ["Endpoint"]}, "DetailedErrors": {"type": "boolean"}}, "required": ["AzureAd", "UrlShortenerSecuredService", "DetailedErrors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AzureAd" : {"Authority" : "https://login.microsoftonline.com/3fdcf61b-cd8c-4669-a094-07664fdd9987", "ClientId" : "96d174b6-5f30-4bb3-985f-5c15ad0b2624", "ValidateAuthority" : true}, "UrlShortenerSecuredService" : {"Endpoint" : "https://shortenertoolszdbf6.azurewebsites.net/"}, "DetailedErrors" : true}
json_instruct
{"type": "object", "properties": {"AzureAd": {"type": "object", "properties": {"Authority": {"type": "string"}, "ClientId": {"type": "string"}, "ValidateAuthority": {"type": "boolean"}}, "required": ["Authority", "ClientId", "ValidateAuthority"]}, "UrlShortenerSecuredService": {"type": "object", "properties": {"Endpoint": {"type": "string"}}, "required": ["Endpoint"]}, "DetailedErrors": {"type": "boolean"}}, "required": ["AzureAd", "UrlShortenerSecuredService", "DetailedErrors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1104032003", "district_id" : "1104032", "name" : "LAWE SUMUR"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_provinsi": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_provinsi", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "5101", "id_provinsi" : "51", "name" : "KAB. JEMBRANA"}, {"id" : "5102", "id_provinsi" : "51", "name" : "KAB. TABANAN"}, {"id" : "5103", "id_provinsi" : "51", "name" : "KAB. BADUNG"}, {"id" : "5104", "id_provinsi" : "51", "name" : "KAB. GIANYAR"}, {"id" : "5105", "id_provinsi" : "51", "name" : "KAB. KLUNGKUNG"}, {"id" : "5106", "id_provinsi" : "51", "name" : "KAB. BANGLI"}, {"id" : "5107", "id_provinsi" : "51", "name" : "KAB. KARANGASEM"}, {"id" : "5108", "id_provinsi" : "51", "name" : "KAB. BULELENG"}, {"id" : "5171", "id_provinsi" : "51", "name" : "KOTA DENPASAR"}]}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_provinsi": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_provinsi", "name"]}}}, "required": ["code", "messages", "value"], "$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"}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Test extension with no imports", "version" : "1.0.0", "manifest_version" : 2}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "GHEORGHITA", "frequency" : 1112, "males" : "54.94604316546763 %", "females" : "45.05395683453237 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3010a2645badba52f10fe1a710000af4299a9154"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : 101896123, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "3cf351f6367e956bd2e2d31a2452bb37", "wof:id" : 101896123, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.83671905762304, 44.64504589696298, 1.84903327213516, 44.65290892230564], "geometry" : {"coordinates" : [[[1.83922419990722, 44.65290892230564], [1.83961500843037, 44.65022242332304], [1.84086752671271, 44.65032068855561], [1.84099776575323, 44.64942518544626], [1.8435027749187, 44.64962166723035], [1.84363296935896, 44.6487261596842], [1.8461379550406, 44.64892257776671], [1.84626810488351, 44.64802706578553], [1.84752058402188, 44.64812525048751], [1.84765070884782, 44.64722973587942], [1.84890317232402, 44.64732790375325], [1.84903327213516, 44.64643238651865], [1.84527595218646, 44.64613784325655], [1.8454061052895, 44.64524233062394], [1.84290128405962, 44.64504589696298], [1.84277109180493, 44.64594140597978], [1.84151866749153, 44.64584316481097], [1.84138845021971, 44.6467386711995], [1.84013601024896, 44.64664041320202], [1.84000576795893, 44.64753591696206], [1.83875331233139, 44.64743764213517], [1.83849277226739, 44.64922864357743], [1.8372402814054, 44.64913035011131], [1.83671905762304, 44.65271233591898], [1.83922419990722, 44.65290892230564]]], "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}}, "required": ["test", "serve"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mariadb": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["bcrypt", "cors", "dotenv", "express", "jsonwebtoken", "mariadb", "sequelize"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "backend_prova", "version" : "1.0.0", "description" : "a test for my backend application", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "serve" : "nodemon index.js"}, "author" : "yurimonti", "license" : "ISC", "devDependencies" : {"nodemon" : "^2.0.15"}, "dependencies" : {"bcrypt" : "^5.0.1", "cors" : "^2.8.5", "dotenv" : "^10.0.0", "express" : "^4.17.2", "jsonwebtoken" : "^8.5.1", "mariadb" : "^2.5.5", "sequelize" : "^6.12.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}}, "required": ["test", "serve"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mariadb": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["bcrypt", "cors", "dotenv", "express", "jsonwebtoken", "mariadb", "sequelize"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "dimension": {"type": "integer"}, "space": {"type": "string"}, "sizes": {"type": "array", "items": {"type": "integer"}}, "space directions": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "kinds": {"type": "array", "items": {"type": "string"}}, "endian": {"type": "string"}, "encoding": {"type": "string"}, "space origin": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "dimension", "space", "sizes", "space directions", "kinds", "endian", "encoding", "space origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "float", "dimension" : 3, "space" : "left-posterior-superior", "sizes" : [84, 66, 37], "space directions" : [[0.008570277388214307, 0.5468078419065413, 8.17561098828047e-10], [-0.011444065246595705, 0.00017936532812560496, 0.5467552165491526], [-1.4661653784986433, 0.022979634422677916, -0.030695661794436006]], "kinds" : ["domain", "domain", "domain"], "endian" : "little", "encoding" : "gzip", "space origin" : [30.954480850457745, 21.414330990097895, 61.53527719646064]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "dimension": {"type": "integer"}, "space": {"type": "string"}, "sizes": {"type": "array", "items": {"type": "integer"}}, "space directions": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "kinds": {"type": "array", "items": {"type": "string"}}, "endian": {"type": "string"}, "encoding": {"type": "string"}, "space origin": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "dimension", "space", "sizes", "space directions", "kinds", "endian", "encoding", "space origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0-17" : "14", "18-44" : "747", "45-64" : "4304", "65-74" : "4748", "75+" : "9392"}
json_instruct
{"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"foreign_ids": {"type": "array", "items": {}}, "itemskills": {"type": "array", "items": {"type": "object", "properties": {"ChargeTime": {"type": "number"}, "ChargeType": {"type": "integer"}, "Cooldown": {"type": "integer"}, "Costs": {"type": "array", "items": {"type": "object", "properties": {"CostTarget": {"type": "integer"}, "CostType": {"type": "integer"}, "CostVal": {"type": "integer"}}, "required": ["CostTarget", "CostType", "CostVal"]}}, "Functions": {"type": "array", "items": {"type": "object", "properties": {"AttackType": {"type": "integer"}, "AttackVal": {"type": "integer"}, "BuffID": {"type": "integer"}, "Duration": {"type": "integer"}, "Odds": {"type": "integer"}}, "required": ["AttackType", "AttackVal", "BuffID", "Duration", "Odds"]}}, "RangeType": {"type": "integer"}, "RangeVal1": {"type": "integer"}, "RangeVal2": {"type": "integer"}, "RangeVal3": {"type": "integer"}, "SkillType": {"type": "integer"}, "TargetCamp": {"type": "integer"}, "name": {"type": "string"}, "priority": {"type": "integer"}, "templateid": {"type": "integer"}}, "required": ["ChargeTime", "ChargeType", "Cooldown", "Costs", "Functions", "RangeType", "RangeVal1", "RangeVal2", "RangeVal3", "SkillType", "TargetCamp", "name", "priority", "templateid"]}}, "mod_desc": {"type": "object", "properties": {"author": {"type": "string"}, "filename": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "string"}}, "required": ["author", "filename", "uuid", "version"]}, "property": {"type": "object", "properties": {"copyid": {"type": "integer"}, "describe": {"type": "string"}, "icon": {"type": "string"}, "id": {"type": "integer"}, "model": {"type": "string"}, "name": {"type": "string"}, "stack_max": {"type": "integer"}}, "required": ["copyid", "describe", "icon", "id", "model", "name", "stack_max"]}}, "required": ["foreign_ids", "itemskills", "mod_desc", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"foreign_ids" : [], "itemskills" : [{"ChargeTime" : 1.5, "ChargeType" : 2, "Cooldown" : 5, "Costs" : [{"CostTarget" : 4112, "CostType" : 2, "CostVal" : 1}], "Functions" : [{"AttackType" : 0, "AttackVal" : 0, "BuffID" : 4001, "Duration" : 946728000, "Odds" : 100}], "RangeType" : 0, "RangeVal1" : 1000, "RangeVal2" : 300, "RangeVal3" : 300, "SkillType" : 1, "TargetCamp" : 0, "name" : "feature_buff", "priority" : 0, "templateid" : 104}], "mod_desc" : {"author" : "1000872134", "filename" : "1530986649", "uuid" : "90b4c879-b9a8-443d-860d-6e6aad5f3e83", "version" : "1"}, "property" : {"copyid" : 10100, "describe" : "It gives you the Speed Stat.", "icon" : "*12060", "id" : 4111, "model" : "*12060", "name" : "#B Speed", "stack_max" : 1}}
json_instruct
{"type": "object", "properties": {"foreign_ids": {"type": "array", "items": {}}, "itemskills": {"type": "array", "items": {"type": "object", "properties": {"ChargeTime": {"type": "number"}, "ChargeType": {"type": "integer"}, "Cooldown": {"type": "integer"}, "Costs": {"type": "array", "items": {"type": "object", "properties": {"CostTarget": {"type": "integer"}, "CostType": {"type": "integer"}, "CostVal": {"type": "integer"}}, "required": ["CostTarget", "CostType", "CostVal"]}}, "Functions": {"type": "array", "items": {"type": "object", "properties": {"AttackType": {"type": "integer"}, "AttackVal": {"type": "integer"}, "BuffID": {"type": "integer"}, "Duration": {"type": "integer"}, "Odds": {"type": "integer"}}, "required": ["AttackType", "AttackVal", "BuffID", "Duration", "Odds"]}}, "RangeType": {"type": "integer"}, "RangeVal1": {"type": "integer"}, "RangeVal2": {"type": "integer"}, "RangeVal3": {"type": "integer"}, "SkillType": {"type": "integer"}, "TargetCamp": {"type": "integer"}, "name": {"type": "string"}, "priority": {"type": "integer"}, "templateid": {"type": "integer"}}, "required": ["ChargeTime", "ChargeType", "Cooldown", "Costs", "Functions", "RangeType", "RangeVal1", "RangeVal2", "RangeVal3", "SkillType", "TargetCamp", "name", "priority", "templateid"]}}, "mod_desc": {"type": "object", "properties": {"author": {"type": "string"}, "filename": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "string"}}, "required": ["author", "filename", "uuid", "version"]}, "property": {"type": "object", "properties": {"copyid": {"type": "integer"}, "describe": {"type": "string"}, "icon": {"type": "string"}, "id": {"type": "integer"}, "model": {"type": "string"}, "name": {"type": "string"}, "stack_max": {"type": "integer"}}, "required": ["copyid", "describe", "icon", "id", "model", "name", "stack_max"]}}, "required": ["foreign_ids", "itemskills", "mod_desc", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"kiraApp": {"type": "object", "properties": {"categories": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "notFound": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel", "notFound"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "catName": {"type": "string"}, "catDescription": {"type": "string"}, "catOrder": {"type": "string"}, "catProducts": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "catName", "catDescription", "catOrder", "catProducts"]}}, "required": ["categories"]}}, "required": ["kiraApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kiraApp" : {"categories" : {"home" : {"title" : "Categories", "createLabel" : "Maak een nieuwe Categories", "createOrEditLabel" : "Maak of wijzig een Categories", "notFound" : "No Categories found"}, "created" : "A new Categories is created with identifier {{ param }}", "updated" : "A Categories is updated with identifier {{ param }}", "deleted" : "A Categories is deleted with identifier {{ param }}", "delete" : {"question" : "Bent u zeker dat u Categories {{ id }} wilt verwijderen?"}, "detail" : {"title" : "Categories"}, "catName" : "Cat Name", "catDescription" : "Cat Description", "catOrder" : "Cat Order", "catProducts" : "Cat Products"}}}
json_instruct
{"type": "object", "properties": {"kiraApp": {"type": "object", "properties": {"categories": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "notFound": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel", "notFound"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "catName": {"type": "string"}, "catDescription": {"type": "string"}, "catOrder": {"type": "string"}, "catProducts": {"type": "string"}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "catName", "catDescription", "catOrder", "catProducts"]}}, "required": ["categories"]}}, "required": ["kiraApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"kl_train": {"type": "number"}, "kl_targ": {"type": "number"}, "time_train": {"type": "number"}, "time_est": {"type": "number"}}, "required": ["kl_train", "kl_targ", "time_train", "time_est"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kl_train" : 0.006574598122914521, "kl_targ" : 0.006447610358653179, "time_train" : 3.232491479, "time_est" : 0.8428662270000018}
json_instruct
{"type": "object", "properties": {"kl_train": {"type": "number"}, "kl_targ": {"type": "number"}, "time_train": {"type": "number"}, "time_est": {"type": "number"}}, "required": ["kl_train", "kl_targ", "time_train", "time_est"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 2227, "cites" : 3, "cited_by" : 18, "reference" : ["(January), pp. 41-50. Denison, Edward F. (1957). Theoretical Aspects of Quality Change, Capital Consumption, and Net Capital Formation, ~ Conce~ts~ Measurement and Contro11in~ Factor~, Studies in Income and Wealth, vol. 19. Princeton: Princeton University Press for NBER, pp. 215-36. Computer Prices, Page 53", "(1986). The Economic Interpretation of Hedonic Methods, Surve~of currentBi~, vol. 66 (January), pp. 36-40.", "(June), pp. 137-56. U. S. Department of Commerce (1983). A Price Index for Electronic Computers, Bureau of Economic Analysis, National Income and Wealth Division, April."]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "SKYLEN", "frequency" : 148, "males" : "41.21621621621622 %", "females" : "58.78378378378378 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["memoize-cache"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$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": {"debug": {"type": "string"}, "test": {"type": "string"}}, "required": ["debug", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "dialog-api": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["botkit", "dialog-api", "dotenv"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "botkit-twilio-ipm-example", "version" : "1.0.0", "description" : "An example Twilio IP Messaging node.js chatbot built with Botkit and integrated with Dialog Analytics", "main" : "bot.js", "scripts" : {"debug" : "node debug bot.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Dialog Analytics", "license" : "MIT", "dependencies" : {"botkit" : "^0.4.1", "dialog-api" : "0.0.3", "dotenv" : "^2.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"debug": {"type": "string"}, "test": {"type": "string"}}, "required": ["debug", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"botkit": {"type": "string"}, "dialog-api": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["botkit", "dialog-api", "dotenv"]}}, "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": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Whoop", "definitions" : ["A loud cry of joy or excitement.", "A long rasping indrawn breath, characteristic of whooping cough.", "(in motorcycling or cycling) a bump or dip on an off-road racetrack or rally course."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"product_added_into_your_favorites": {"type": "string"}, "product_couldnt_be_added_into_your_favorites": {"type": "string"}, "product_removed_from_your_favorites": {"type": "string"}, "product_couldnt_be_removed_from_your_favorites": {"type": "string"}, "product_removed_from_your_cart": {"type": "string"}, "product_added_into_your_cart": {"type": "string"}, "product_couldnt_be_added_into_your_cart": {"type": "string"}, "product_couldnt_be_removed_from_your_cart": {"type": "string"}, "product_was_not_found": {"type": "string"}, "product_quantity_was_updated": {"type": "string"}, "product_quantity_couldnt_be_updated": {"type": "string"}}, "required": ["product_added_into_your_favorites", "product_couldnt_be_added_into_your_favorites", "product_removed_from_your_favorites", "product_couldnt_be_removed_from_your_favorites", "product_removed_from_your_cart", "product_added_into_your_cart", "product_couldnt_be_added_into_your_cart", "product_couldnt_be_removed_from_your_cart", "product_was_not_found", "product_quantity_was_updated", "product_quantity_couldnt_be_updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"product_added_into_your_favorites" : "Product was added into your favorites!", "product_couldnt_be_added_into_your_favorites" : "Product couldn't be added into your favorites!", "product_removed_from_your_favorites" : "Product was removed from your favorites!", "product_couldnt_be_removed_from_your_favorites" : "Product couldn't be removed from your favorites!", "product_removed_from_your_cart" : "Product was removed from your cart!", "product_added_into_your_cart" : "Product was added into your cart!", "product_couldnt_be_added_into_your_cart" : "Product couldn't be added into your cart!", "product_couldnt_be_removed_from_your_cart" : "Product couldn't be removed from your cart!", "product_was_not_found" : "Product was not found!", "product_quantity_was_updated" : "Product quantity was updated!", "product_quantity_couldnt_be_updated" : "Product quantity couldn't be updated!"}
json_instruct
{"type": "object", "properties": {"product_added_into_your_favorites": {"type": "string"}, "product_couldnt_be_added_into_your_favorites": {"type": "string"}, "product_removed_from_your_favorites": {"type": "string"}, "product_couldnt_be_removed_from_your_favorites": {"type": "string"}, "product_removed_from_your_cart": {"type": "string"}, "product_added_into_your_cart": {"type": "string"}, "product_couldnt_be_added_into_your_cart": {"type": "string"}, "product_couldnt_be_removed_from_your_cart": {"type": "string"}, "product_was_not_found": {"type": "string"}, "product_quantity_was_updated": {"type": "string"}, "product_quantity_couldnt_be_updated": {"type": "string"}}, "required": ["product_added_into_your_favorites", "product_couldnt_be_added_into_your_favorites", "product_removed_from_your_favorites", "product_couldnt_be_removed_from_your_favorites", "product_removed_from_your_cart", "product_added_into_your_cart", "product_couldnt_be_added_into_your_cart", "product_couldnt_be_removed_from_your_cart", "product_was_not_found", "product_quantity_was_updated", "product_quantity_couldnt_be_updated"], "$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": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bytewise": {"type": "string"}, "charwise": {"type": "string"}, "compression": {"type": "string"}, "cors": {"type": "string"}, "crc": {"type": "string"}, "csv": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "html-entities": {"type": "string"}, "level": {"type": "string"}, "lodash": {"type": "string"}, "lru-cache": {"type": "string"}, "natural": {"type": "string"}, "pino": {"type": "string"}, "simple-statistics": {"type": "string"}, "socket.io": {"type": "string"}, "subleveldown": {"type": "string"}, "wink-porter2-stemmer": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["axios", "bytewise", "charwise", "compression", "cors", "crc", "csv", "express", "helmet", "html-entities", "level", "lodash", "lru-cache", "natural", "pino", "simple-statistics", "socket.io", "subleveldown", "wink-porter2-stemmer", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "categorize", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "MIT", "dependencies" : {"axios" : "^0.18.0", "bytewise" : "^1.1.0", "charwise" : "^3.0.1", "compression" : "^1.7.3", "cors" : "^2.8.4", "crc" : "^3.8.0", "csv" : "^3.1.0", "express" : "^4.16.3", "helmet" : "^3.13.0", "html-entities" : "^1.2.1", "level" : "^4.0.0", "lodash" : "^4.17.10", "lru-cache" : "^4.1.3", "natural" : "^0.6.1", "pino" : "^4.17.5", "simple-statistics" : "^6.1.0", "socket.io" : "^2.1.1", "subleveldown" : "^3.0.1", "wink-porter2-stemmer" : "^1.0.8", "yargs" : "^12.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bytewise": {"type": "string"}, "charwise": {"type": "string"}, "compression": {"type": "string"}, "cors": {"type": "string"}, "crc": {"type": "string"}, "csv": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "html-entities": {"type": "string"}, "level": {"type": "string"}, "lodash": {"type": "string"}, "lru-cache": {"type": "string"}, "natural": {"type": "string"}, "pino": {"type": "string"}, "simple-statistics": {"type": "string"}, "socket.io": {"type": "string"}, "subleveldown": {"type": "string"}, "wink-porter2-stemmer": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["axios", "bytewise", "charwise", "compression", "cors", "crc", "csv", "express", "helmet", "html-entities", "level", "lodash", "lru-cache", "natural", "pino", "simple-statistics", "socket.io", "subleveldown", "wink-porter2-stemmer", "yargs"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Yae Miko \u2013 Fuchs im Traum", "description" : "Ein Motiv f\u00fcr Namensk\u00e4rtchen.\nWo in aller Welt k\u00f6nnte man eigentlich Yae Mikos Fuchsgestalt sehen? Vielleicht nur im Traum.", "sortorder" : 210112, "source" : ["Ab Freundschaftsstufe 10 mit Yae Miko zu erhalten"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"css/pushy.css": {"type": "string"}, "css/pushy.min.css": {"type": "string"}, "js/pushy.js": {"type": "string"}, "js/pushy.min.js": {"type": "string"}}, "required": ["css/pushy.css", "css/pushy.min.css", "js/pushy.js", "js/pushy.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/pushy.css" : "sha256-MTG9Xb1DiTgHZRn/48UWkFX7hGQy8fXKU9vR1x8BTG8=", "css/pushy.min.css" : "sha256-40eG3Vg8mGUEtZ/3UkVse9F0WmzAsW1P8RtWvHjBqrM=", "js/pushy.js" : "sha256-sLygMHL8KXYDL9y/wWauNAR4+1PIg7S8wNrk3ji/PpE=", "js/pushy.min.js" : "sha256-Jd95WHwNnGNIGO6Jcv72adFYcMaeWp/JYghTDmSTqak="}
json_instruct
{"type": "object", "properties": {"css/pushy.css": {"type": "string"}, "css/pushy.min.css": {"type": "string"}, "js/pushy.js": {"type": "string"}, "js/pushy.min.js": {"type": "string"}}, "required": ["css/pushy.css", "css/pushy.min.css", "js/pushy.js", "js/pushy.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"TestKafkaSinkStress/.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=100.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=1000.tps": {"type": "integer"}, "TestKafkaSinkStress/async=true.tps": {"type": "integer"}, "TestKafkaSinkStress/messageSize=1000.tps": {"type": "integer"}, "TestKafkaSinkStress/replicas=2.tps": {"type": "integer"}, "TestKafkaSourceStress/.tps": {"type": "integer"}, "TestKafkaSourceStress/N=10,messageSize=100.tps": {"type": "integer"}, "TestKafkaSourceStress/N=10,messageSize=1000.tps": {"type": "integer"}, "TestKafkaSourceStress/messageSize=1000.tps": {"type": "integer"}, "TestKafkaSourceStress/replicas=2.tps": {"type": "integer"}}, "required": ["TestKafkaSinkStress/.tps", "TestKafkaSinkStress/N=10,messageSize=100.tps", "TestKafkaSinkStress/N=10,messageSize=1000.tps", "TestKafkaSinkStress/async=true.tps", "TestKafkaSinkStress/messageSize=1000.tps", "TestKafkaSinkStress/replicas=2.tps", "TestKafkaSourceStress/.tps", "TestKafkaSourceStress/N=10,messageSize=100.tps", "TestKafkaSourceStress/N=10,messageSize=1000.tps", "TestKafkaSourceStress/messageSize=1000.tps", "TestKafkaSourceStress/replicas=2.tps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TestKafkaSinkStress/.tps" : 350, "TestKafkaSinkStress/N=10,messageSize=100.tps" : 200, "TestKafkaSinkStress/N=10,messageSize=1000.tps" : 150, "TestKafkaSinkStress/async=true.tps" : 400, "TestKafkaSinkStress/messageSize=1000.tps" : 300, "TestKafkaSinkStress/replicas=2.tps" : 400, "TestKafkaSourceStress/.tps" : 1100, "TestKafkaSourceStress/N=10,messageSize=100.tps" : 450, "TestKafkaSourceStress/N=10,messageSize=1000.tps" : 650, "TestKafkaSourceStress/messageSize=1000.tps" : 850, "TestKafkaSourceStress/replicas=2.tps" : 950}
json_instruct
{"type": "object", "properties": {"TestKafkaSinkStress/.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=100.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=1000.tps": {"type": "integer"}, "TestKafkaSinkStress/async=true.tps": {"type": "integer"}, "TestKafkaSinkStress/messageSize=1000.tps": {"type": "integer"}, "TestKafkaSinkStress/replicas=2.tps": {"type": "integer"}, "TestKafkaSourceStress/.tps": {"type": "integer"}, "TestKafkaSourceStress/N=10,messageSize=100.tps": {"type": "integer"}, "TestKafkaSourceStress/N=10,messageSize=1000.tps": {"type": "integer"}, "TestKafkaSourceStress/messageSize=1000.tps": {"type": "integer"}, "TestKafkaSourceStress/replicas=2.tps": {"type": "integer"}}, "required": ["TestKafkaSinkStress/.tps", "TestKafkaSinkStress/N=10,messageSize=100.tps", "TestKafkaSinkStress/N=10,messageSize=1000.tps", "TestKafkaSinkStress/async=true.tps", "TestKafkaSinkStress/messageSize=1000.tps", "TestKafkaSinkStress/replicas=2.tps", "TestKafkaSourceStress/.tps", "TestKafkaSourceStress/N=10,messageSize=100.tps", "TestKafkaSourceStress/N=10,messageSize=1000.tps", "TestKafkaSourceStress/messageSize=1000.tps", "TestKafkaSourceStress/replicas=2.tps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"fees" : -2500000000, "ts" : "1534819108", "txid" : "9ace32f8dfe1478c5d6c220c6a8940d5a1b14096efa2c92e39c58557e4fe1cfb", "block" : 1416970, "in" : [{"coinbase" : "030a9f1504247b7b5b084400eb6f00000000052f6d70682f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "MJpTHvn5TSgzr6mNsdEu28zMnQX232jr9q", "value" : 2500000000, "spent" : "3b29993c846ddc0f8ccb6ae65a4d8115417359591e902ed94678a08b8f752023"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}, "forum": {"type": "string"}, "wiki": {"type": "string"}}, "required": ["issues", "source", "forum", "wiki"]}, "require": {"type": "object", "properties": {"flarum/core": {"type": "string"}}, "required": ["flarum/core"]}, "extra": {"type": "object", "properties": {"flarum-extension": {"type": "object", "properties": {"title": {"type": "string"}, "icon": {"type": "object", "properties": {"name": {"type": "string"}, "backgroundColor": {"type": "string"}, "color": {"type": "string"}}, "required": ["name", "backgroundColor", "color"]}}, "required": ["title", "icon"]}, "flarum-locale": {"type": "object", "properties": {"code": {"type": "string"}, "title": {"type": "string"}}, "required": ["code", "title"]}}, "required": ["flarum-extension", "flarum-locale"]}}, "required": ["name", "type", "description", "homepage", "keywords", "license", "authors", "support", "require", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "luatdolphin/vietnamese", "type" : "flarum-extension", "description" : "Vietnamese language pack for Flarum.", "homepage" : "https://github.com/maelsoucaze/flarum", "keywords" : ["Vietnamese", "language", "locale", "localization", "translation"], "license" : "MIT", "authors" : [{"name" : "Luat Dolphin", "email" : "luatdolphin@gmail.com", "homepage" : "http://www.soystery.com"}], "support" : {"issues" : "https://github.com/luatdolphin/vietnamese/issues", "source" : "https://github.com/luatdolphin/vietnamese", "forum" : "http://discuss.flarum.org/d/615-french-language-pack", "wiki" : "https://github.com/luatdolphin/vietnamese/wiki"}, "require" : {"flarum/core" : "^0.1.0-beta.4"}, "extra" : {"flarum-extension" : {"title" : "Vietnamese", "icon" : {"name" : "language", "backgroundColor" : "#4d698e", "color" : "#fff"}}, "flarum-locale" : {"code" : "vi", "title" : "Vietnamese"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}, "forum": {"type": "string"}, "wiki": {"type": "string"}}, "required": ["issues", "source", "forum", "wiki"]}, "require": {"type": "object", "properties": {"flarum/core": {"type": "string"}}, "required": ["flarum/core"]}, "extra": {"type": "object", "properties": {"flarum-extension": {"type": "object", "properties": {"title": {"type": "string"}, "icon": {"type": "object", "properties": {"name": {"type": "string"}, "backgroundColor": {"type": "string"}, "color": {"type": "string"}}, "required": ["name", "backgroundColor", "color"]}}, "required": ["title", "icon"]}, "flarum-locale": {"type": "object", "properties": {"code": {"type": "string"}, "title": {"type": "string"}}, "required": ["code", "title"]}}, "required": ["flarum-extension", "flarum-locale"]}}, "required": ["name", "type", "description", "homepage", "keywords", "license", "authors", "support", "require", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "header": {"type": "array", "items": {}}, "url": {"type": "object", "properties": {"raw": {"type": "string"}, "host": {"type": "array", "items": {"type": "string"}}, "path": {"type": "array", "items": {"type": "string"}}}, "required": ["raw", "host", "path"]}}, "required": ["method", "header", "url"]}, "response": {"type": "array", "items": {}}}, "required": ["name", "request", "response"]}}}, "required": ["name", "item"]}}}, "required": ["info", "item"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"info" : {"_postman_id" : "cdc867c1-8321-441b-b902-8d0b9d784f7a", "name" : "BR TRANSPARENTE", "schema" : "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"}, "item" : [{"name" : "Deputados", "item" : [{"name" : "/id/despesas", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "{{url}}/deputados/{{deputado_id}}/despesas", "host" : ["{{url}}"], "path" : ["deputados", "{{deputado_id}}", "despesas"]}}, "response" : []}, {"name" : "/ (todos deputados)", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "{{url}}/deputados", "host" : ["{{url}}"], "path" : ["deputados"]}}, "response" : []}, {"name" : "/id", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "{{url}}/deputados/{{deputado_id}}", "host" : ["{{url}}"], "path" : ["deputados", "{{deputado_id}}"]}}, "response" : []}, {"name" : "/id/frentes", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "{{url}}/deputados/{{deputado_id}}/frentes", "host" : ["{{url}}"], "path" : ["deputados", "{{deputado_id}}", "frentes"]}}, "response" : []}, {"name" : "/id/orgaos", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "{{url}}/deputados/{{deputado_id}}/orgaos", "host" : ["{{url}}"], "path" : ["deputados", "{{deputado_id}}", "orgaos"]}}, "response" : []}]}]}
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "header": {"type": "array", "items": {}}, "url": {"type": "object", "properties": {"raw": {"type": "string"}, "host": {"type": "array", "items": {"type": "string"}}, "path": {"type": "array", "items": {"type": "string"}}}, "required": ["raw", "host", "path"]}}, "required": ["method", "header", "url"]}, "response": {"type": "array", "items": {}}}, "required": ["name", "request", "response"]}}}, "required": ["name", "item"]}}}, "required": ["info", "item"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "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" : "This PR also slightly changes the behavior in ci_rebuild().\r\nWe now still attempt to submit `spack install` results to CDash\r\neven if the initial registration failed due to connection issues.\r\n\r\nThis commit follows in the spirit of #24299. We do not want `spack install`\r\nto exit with a non-zero status when something goes wrong while attempting to\r\nreport results to CDash.", "user" : "zackgalbreath", "url" : "https://api.github.com/repos/spack/spack/issues/27883", "updated_at" : "2021-12-14 21:49:35", "created_at" : "2021-12-09 13:42:52", "closed_at" : "2021-12-14 21:18:09", "state" : "closed", "title" : "ci: Catch Exceptions when attempting to register a CDash build", "number" : 27883, "milestone" : null, "labels" : ["commands"], "id" : 1075588332, "html_url" : "https://github.com/spack/spack/pull/27883", "assignees" : ["scottwittenburg"], "comments" : 2}
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": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Signatures": {"type": "object", "properties": {"catch-2.10.2.tar.gz": {"type": "string"}}, "required": ["catch-2.10.2.tar.gz"]}}, "required": ["Signatures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Signatures" : {"catch-2.10.2.tar.gz" : "79aa46ee6c5a87bc5306bfffc6ecde6a1ad6327715b208ee2e846873f282a494"}}
json_instruct
{"type": "object", "properties": {"Signatures": {"type": "object", "properties": {"catch-2.10.2.tar.gz": {"type": "string"}}, "required": ["catch-2.10.2.tar.gz"]}}, "required": ["Signatures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id_8847": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_8847"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_8847" : {"publicdate" : "2015-07-17 01:00:44", "downloads" : 0}}
json_instruct
{"type": "object", "properties": {"id_8847": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_8847"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 2004, "sex" : "F", "n" : 12, "prop" : 5.95e-06}, {"year" : 2005, "sex" : "F", "n" : 10, "prop" : 4.93e-06}, {"year" : 2006, "sex" : "F", "n" : 12, "prop" : 5.74e-06}, {"year" : 2007, "sex" : "F", "n" : 7, "prop" : 3.31e-06}, {"year" : 2008, "sex" : "F", "n" : 7, "prop" : 3.36e-06}, {"year" : 2008, "sex" : "M", "n" : 6, "prop" : 2.75e-06}, {"year" : 2009, "sex" : "F", "n" : 5, "prop" : 2.47e-06}, {"year" : 2010, "sex" : "F", "n" : 5, "prop" : 2.55e-06}, {"year" : 2011, "sex" : "M", "n" : 6, "prop" : 2.96e-06}, {"year" : 2012, "sex" : "M", "n" : 6, "prop" : 2.96e-06}, {"year" : 2015, "sex" : "F", "n" : 6, "prop" : 3.08e-06}, {"year" : 2016, "sex" : "F", "n" : 7, "prop" : 3.63e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"css/fontawesome-iconpicker.css": {"type": "string"}, "css/fontawesome-iconpicker.min.css": {"type": "string"}, "js/fontawesome-iconpicker.js": {"type": "string"}, "js/fontawesome-iconpicker.min.js": {"type": "string"}}, "required": ["css/fontawesome-iconpicker.css", "css/fontawesome-iconpicker.min.css", "js/fontawesome-iconpicker.js", "js/fontawesome-iconpicker.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/fontawesome-iconpicker.css" : "sha256-xuH43oz0TVSnoGyu0b+Lbc4IXgcj+1DWNkAd/MClvPo=", "css/fontawesome-iconpicker.min.css" : "sha256-kJhyJ6v3GqIHeDv1t2bWTyIPVtWHxc/2V1moXgm2qgg=", "js/fontawesome-iconpicker.js" : "sha256-KHQsHYh8IwwT9JCp/nlhfYdmmwmQzZY4S2xfuEceDf4=", "js/fontawesome-iconpicker.min.js" : "sha256-2rNGEf9Uw/ZZc5Gtg0b5I+kVhnJFNf3JXzY6duHY54Q="}
json_instruct
{"type": "object", "properties": {"css/fontawesome-iconpicker.css": {"type": "string"}, "css/fontawesome-iconpicker.min.css": {"type": "string"}, "js/fontawesome-iconpicker.js": {"type": "string"}, "js/fontawesome-iconpicker.min.js": {"type": "string"}}, "required": ["css/fontawesome-iconpicker.css", "css/fontawesome-iconpicker.min.css", "js/fontawesome-iconpicker.js", "js/fontawesome-iconpicker.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var _jsxFileName = \"C:\\\\Users\\\\REHA SRI\\\\Desktop\\\\React\\\\hi\\\\default\\\\src\\\\components\\\\Namelist.js\";\nimport React from 'react';\n\nfunction Namelist() {\n const names = ['Bruce', 'Clark', 'Diana'];\n const nameList = names.map(name => /*#__PURE__*/React.createElement(\"h2\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 5,\n columnNumber: 40\n }\n }, name));\n return /*#__PURE__*/React.createElement(\"div\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 13\n }\n }, nameList);\n}\n\nexport default Namelist;", "map" : {"version" : 3, "sources" : ["C:/Users/REHA SRI/Desktop/React/hi/default/src/components/Namelist.js"], "names" : ["React", "Namelist", "names", "nameList", "map", "name"], "mappings" : ";AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AAEA,SAASC,QAAT,GAAoB;AAChB,QAAMC,KAAK,GAAE,CAAC,OAAD,EAAU,OAAV,EAAkB,OAAlB,CAAb;AACA,QAAMC,QAAQ,GAAGD,KAAK,CAACE,GAAN,CAAUC,IAAI,iBAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAAKA,IAAL,CAAlB,CAAjB;AACA,sBAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAAMF,QAAN,CAAR;AACH;;AAED,eAAeF,QAAf", "sourcesContent" : ["import React from 'react'\r\n\r\nfunction Namelist() {\r\n const names =['Bruce' ,'Clark','Diana']\r\n const nameList = names.map(name => <h2>{name}</h2>)\r\n return (<div>{nameList}</div>)\r\n}\r\n\r\nexport default Namelist\r\n\r\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"clusters": {"type": "object", "properties": {"0": {"type": "object", "properties": {"centroid": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "model_id": {"type": "integer"}}, "required": ["centroid", "model_id"]}}, "required": ["0"]}}, "required": ["clusters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clusters" : {"0" : {"centroid" : {"x" : 0.0532858, "y" : 0.0205459, "z" : 0.725955}, "model_id" : 19018}}}
json_instruct
{"type": "object", "properties": {"clusters": {"type": "object", "properties": {"0": {"type": "object", "properties": {"centroid": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "model_id": {"type": "integer"}}, "required": ["centroid", "model_id"]}}, "required": ["0"]}}, "required": ["clusters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"immer": {"type": "string"}, "pixi.js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-pixi-fiber": {"type": "string"}}, "required": ["immer", "pixi.js", "react", "react-dom", "react-pixi-fiber"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "predeploy": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "predeploy", "deploy"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/pixi.js": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "gh-pages": {"type": "string"}, "jest": {"type": "string"}, "parcel": {"type": "string"}, "sass": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/pixi.js", "@types/react", "@types/react-dom", "gh-pages", "jest", "parcel", "sass", "ts-jest", "typescript"]}}, "required": ["dependencies", "homepage", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"immer" : "^3.2.0", "pixi.js" : "^5.2.0", "react" : "^16.9.0", "react-dom" : "^16.9.0", "react-pixi-fiber" : "^0.9.2"}, "homepage" : "https://hibikinekage.github.io/flappy-rico", "scripts" : {"start" : "parcel index.html", "build" : "parcel build index.html --public-url '/ricopyon'", "predeploy" : "parcel build index.html --public-url '/flappy-rico'", "deploy" : "gh-pages -d dist"}, "devDependencies" : {"@types/jest" : "^24.0.18", "@types/pixi.js" : "^4.8.8", "@types/react" : "^16.9.11", "@types/react-dom" : "^16.9.0", "gh-pages" : "^2.1.1", "jest" : "^24.9.0", "parcel" : "^1.12.3", "sass" : "^1.23.7", "ts-jest" : "^24.0.2", "typescript" : "^3.7.2"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"immer": {"type": "string"}, "pixi.js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-pixi-fiber": {"type": "string"}}, "required": ["immer", "pixi.js", "react", "react-dom", "react-pixi-fiber"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "predeploy": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "predeploy", "deploy"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/pixi.js": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "gh-pages": {"type": "string"}, "jest": {"type": "string"}, "parcel": {"type": "string"}, "sass": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/pixi.js", "@types/react", "@types/react-dom", "gh-pages", "jest", "parcel", "sass", "ts-jest", "typescript"]}}, "required": ["dependencies", "homepage", "scripts", "devDependencies"], "$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"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}}, "required": ["postinstall"]}}, "required": ["name", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "test-1", "scripts" : {"postinstall" : "cp -R fake_node_modules/* ./node_modules/"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}}, "required": ["postinstall"]}}, "required": ["name", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rmse" : [27.672427825087976]}
json_instruct
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ng-text-truncate", "version" : "1.0.0", "description" : "This is a simple, but fully functional, directive for truncating text in angularjs apps", "main" : "ng-text-truncate.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Boffka/ng-text-truncate.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/Boffka/ng-text-truncate/issues"}, "homepage" : "https://github.com/Boffka/ng-text-truncate#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"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": "integer"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1474, "source" : "barnes", "verse_id" : 18381, "verse_count" : 1, "reference" : "37:28", "title" : "", "html" : " <p> <em>But I know </em>&mdash;The language of God. &lsquo;I am well acquainted with all that pertains to you. You neither go out to war, nor return, nor abide in your capital without my providential direction&rsquo; (see the notes at <a class=\"isa\" verses=\"eyIxNzg1NiI6M30=\">Isaiah 10:5-7</a>). </p> <p> <em>Thy abode </em>&mdash;Margin, &lsquo;Sitting.&rsquo; Among the Hebrews, sitting down, rising up, and going out, were phrases to describe the whole of a man&rsquo;s life and actions (compare <a class=\"ref\">Deuteronomy 6:7; Deuteronomy 28:6; 1 Kings 3:7; Psalm 121:8</a>). God here says that he knew the place where he dwelt, and he was able to return him again to it <a class=\"isa\" verses=\"WzE4MzgyXQ==\">Isaiah 37:29</a>. </p> <p> <em>And thy rage against me </em>&mdash;(See <a class=\"isa\" verses=\"WzE4MzU3XQ==\">Isaiah 37:4</a>). </p> ", "audit" : 1}
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": "integer"}}, "required": ["id", "source", "verse_id", "verse_count", "reference", "title", "html", "audit"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "532923108201", "text" : "\u4e09\u5bb6\u6751\u6751\u59d4\u4f1a"}, {"id" : "532923108202", "text" : "\u7c73\u7538\u6751\u59d4\u4f1a"}, {"id" : "532923108203", "text" : "\u514b\u660c\u6751\u59d4\u4f1a"}, {"id" : "532923108204", "text" : "\u5c94\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "532923108205", "text" : "\u5927\u677e\u576a\u6751\u59d4\u4f1a"}, {"id" : "532923108206", "text" : "\u81ea\u7f8c\u6717\u6751\u59d4\u4f1a"}, {"id" : "532923108207", "text" : "\u9999\u4e48\u6240\u6751\u59d4\u4f1a"}, {"id" : "532923108208", "text" : "\u9ec4\u8349\u54e8\u6751\u59d4\u4f1a"}, {"id" : "532923108209", "text" : "\u695a\u573a\u6751\u59d4\u4f1a"}, {"id" : "532923108210", "text" : "\u63d2\u6717\u54e8\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : [[[150.625, 20.083333333333332], [150.625, 20.166666666666668], [150.75, 20.166666666666668], [150.75, 20.083333333333332], [150.625, 20.083333333333332]]]}, "properties" : {"code" : 305015, "url" : "http://madefor.github.io/0410/api/v1/305015.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/305015.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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_popup": {"type": "string"}}, "required": ["default_popup"]}}, "required": ["name", "description", "version", "manifest_version", "browser_action"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "click game", "description" : "click it's tjat simple", "version" : "1.0.0", "manifest_version" : 2, "browser_action" : {"default_popup" : "popup/popup.html"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_popup": {"type": "string"}}, "required": ["default_popup"]}}, "required": ["name", "description", "version", "manifest_version", "browser_action"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "appPath": {"type": "string"}, "testPath": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-sanitize": {"type": "string"}, "angular-animate": {"type": "string"}, "bootstrap": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-ui-layout": {"type": "string"}, "angular-ui-select": {"type": "string"}, "angular-social": {"type": "string"}, "angular-ui-grid": {"type": "string"}, "FileSaver": {"type": "string"}, "flag-icon-css": {"type": "string"}, "underscore": {"type": "string"}, "font-awesome": {"type": "string"}, "ng-file-upload": {"type": "string"}, "ng-file-upload-shim": {"type": "string"}, "animate.less": {"type": "string"}, "angular-scroll": {"type": "string"}, "wow": {"type": "string"}}, "required": ["angular", "angular-sanitize", "angular-animate", "bootstrap", "angular-bootstrap", "angular-ui-router", "angular-ui-layout", "angular-ui-select", "angular-social", "angular-ui-grid", "FileSaver", "flag-icon-css", "underscore", "font-awesome", "ng-file-upload", "ng-file-upload-shim", "animate.less", "angular-scroll", "wow"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "angular-scenario": {"type": "string"}}, "required": ["angular-mocks", "angular-scenario"]}}, "required": ["name", "version", "description", "appPath", "testPath", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "droidlinguist", "version" : "1.0.0", "description" : "A tool that helps you easily translate your killer android apps in a nice & clear interface, using popular translator engines like Microsoft Translator, Yandex Translate or Google Translate!", "appPath" : "src/main/webapp", "testPath" : "src/test/javascript/spec", "dependencies" : {"angular" : ">=1.3.0", "angular-sanitize" : ">=1.3.0", "angular-animate" : ">=1.3.0", "bootstrap" : "~3.3.5", "angular-bootstrap" : "~0.14.3", "angular-ui-router" : "~0.2.13", "angular-ui-layout" : "~1.3.1", "angular-ui-select" : "~0.13.2", "angular-social" : "~1.0.0", "angular-ui-grid" : "~3.0.7", "FileSaver" : "*", "flag-icon-css" : "~0.8.4", "underscore" : "~1.8.3", "font-awesome" : "~4.4.0", "ng-file-upload" : "~10.1.8", "ng-file-upload-shim" : "~10.1.8", "animate.less" : "*", "angular-scroll" : "~1.0.0", "wow" : "wowjs#~1.1.2"}, "devDependencies" : {"angular-mocks" : ">=1.3.0", "angular-scenario" : ">=1.3.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "appPath": {"type": "string"}, "testPath": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-sanitize": {"type": "string"}, "angular-animate": {"type": "string"}, "bootstrap": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-ui-layout": {"type": "string"}, "angular-ui-select": {"type": "string"}, "angular-social": {"type": "string"}, "angular-ui-grid": {"type": "string"}, "FileSaver": {"type": "string"}, "flag-icon-css": {"type": "string"}, "underscore": {"type": "string"}, "font-awesome": {"type": "string"}, "ng-file-upload": {"type": "string"}, "ng-file-upload-shim": {"type": "string"}, "animate.less": {"type": "string"}, "angular-scroll": {"type": "string"}, "wow": {"type": "string"}}, "required": ["angular", "angular-sanitize", "angular-animate", "bootstrap", "angular-bootstrap", "angular-ui-router", "angular-ui-layout", "angular-ui-select", "angular-social", "angular-ui-grid", "FileSaver", "flag-icon-css", "underscore", "font-awesome", "ng-file-upload", "ng-file-upload-shim", "animate.less", "angular-scroll", "wow"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "angular-scenario": {"type": "string"}}, "required": ["angular-mocks", "angular-scenario"]}}, "required": ["name", "version", "description", "appPath", "testPath", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/woven_granite_design_slab_eighth"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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": {"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" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 47912, "noUrut" : 1, "nama" : "YUSUF NIKOLAS SORU, A.Md. Par, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO 001.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 81727, "noUrut" : 2, "nama" : "BENYAMIN D. MAGANG", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 80976, "noUrut" : 3, "nama" : "MARJORI EDNA MANSULA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO 001.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 102696, "noUrut" : 4, "nama" : "YERIM YOS FALLO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 81444, "noUrut" : 5, "nama" : "PAULINA TRIYULIANTI SAKA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO 001.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 102555, "noUrut" : 6, "nama" : "MARTHINUS L. KAESMETAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO 001 (2).jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 81581, "noUrut" : 7, "nama" : "THOBIAS I. J. BOLLA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 81526, "noUrut" : 8, "nama" : "AKSAMINA YOHANA BETTY", "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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "dev", "start"]}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "moment": {"type": "string"}, "react-emojione": {"type": "string"}, "reselect": {"type": "string"}, "roc-package-web-app-react": {"type": "string"}}, "required": ["bootstrap", "moment", "react-emojione", "reselect", "roc-package-web-app-react"]}, "devDependencies": {"type": "object", "properties": {"roc-package-web-app-react-dev": {"type": "string"}, "roc-plugin-style-sass": {"type": "string"}}, "required": ["roc-package-web-app-react-dev", "roc-plugin-style-sass"]}}, "required": ["name", "version", "description", "author", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mood-front", "version" : "1.0.0", "description" : "Mood Frontend", "author" : "Dave Li", "license" : "MIT", "scripts" : {"build" : "roc build", "dev" : "roc dev", "start" : "roc start"}, "dependencies" : {"bootstrap" : "^4.0.0-alpha.6", "moment" : "^2.18.1", "react-emojione" : "^3.1.10", "reselect" : "^3.0.1", "roc-package-web-app-react" : "^1.0.0-beta.10"}, "devDependencies" : {"roc-package-web-app-react-dev" : "^1.0.0-beta.10", "roc-plugin-style-sass" : "^1.0.0-beta.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "dev", "start"]}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "moment": {"type": "string"}, "react-emojione": {"type": "string"}, "reselect": {"type": "string"}, "roc-package-web-app-react": {"type": "string"}}, "required": ["bootstrap", "moment", "react-emojione", "reselect", "roc-package-web-app-react"]}, "devDependencies": {"type": "object", "properties": {"roc-package-web-app-react-dev": {"type": "string"}, "roc-plugin-style-sass": {"type": "string"}}, "required": ["roc-package-web-app-react-dev", "roc-plugin-style-sass"]}}, "required": ["name", "version", "description", "author", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "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/\"61446589d3caf669abbb69625f6edb290886d99440325bae75e67223cb0d88a3\"", "Last-Modified" : "Fri, 08 Oct 2021 15:09:31 GMT", "base" : {"repo" : {"name" : "autode-feedstock"}}, "closed_at" : "2021-10-08T15:09:31Z", "created_at" : "2021-10-01T11:06:58Z", "draft" : false, "head" : {"ref" : "1.1.1_h871059"}, "html_url" : "https://github.com/conda-forge/autode-feedstock/pull/16", "id" : 747508275, "labels" : [], "mergeable" : true, "mergeable_state" : "clean", "merged" : false, "merged_at" : null, "number" : 16, "state" : "closed", "updated_at" : "2021-10-08T15:09:31Z"}
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": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sequence_gan", "description" : "Generative adversarial networks (GAN) applied to sequential data via recurrent neural networks (RNN).", "license" : null, "starNum" : 264, "folkNum" : 98, "watchNum" : 264, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id_798": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_798"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_798" : {"title" : "Idle Thoughts Of An Idle Fellow", "language" : "English", "totaltime" : "5:01:19", "url_librivox" : "http://librivox.org/idle_thoughts_of_an_idle_fellow_by_jerome_k_jerome/", "url_iarchive" : "http://www.archive.org/details/idle_thoughts_librivox", "readers" : ["969"], "authors" : "529", "genres" : "Humorous Fiction"}}
json_instruct
{"type": "object", "properties": {"id_798": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_798"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vendor" : "liberica", "filename" : "bellsoft-jre13.0.1-linux-aarch64.deb", "release_type" : "ga", "version" : "13.0.1", "java_version" : "13.0.1", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "aarch64", "file_type" : "deb", "image_type" : "jre", "features" : [], "url" : "https://github.com/bell-sw/Liberica/releases/download/13.0.1/bellsoft-jre13.0.1-linux-aarch64.deb", "md5" : "03da41c9cffff5490210c4f380bcc768", "md5_file" : "bellsoft-jre13.0.1-linux-aarch64.deb.md5", "sha1" : "9c86b6d97c9509ff5eb165cf1d2445fcc89964b6", "sha1_file" : "bellsoft-jre13.0.1-linux-aarch64.deb.sha1", "sha256" : "229cc40476c8afad9a3b7aecc97fc5fab04999f198b8973163f9017ea35ad7e9", "sha256_file" : "bellsoft-jre13.0.1-linux-aarch64.deb.sha256", "sha512" : "bad3cfe3e8d2a93f38620526cc0609490573acbc6b6c95a62bead575bc44bc475db512d629f32382ff9dc9ac3294ffd998b6441c838f001ca2812a43f55d685d", "sha512_file" : "bellsoft-jre13.0.1-linux-aarch64.deb.sha512", "size" : 50639430}
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"license": {"type": "string"}, "meta": {"type": "object", "properties": {"artifact_doi_url": {"type": "string"}, "artifact_sources": {"type": "string"}, "artifact_sources_url": {"type": "string"}, "authors": {"type": "string"}, "badge_acm_artifact_available": {"type": "string"}, "badge_acm_artifact_reusable": {"type": "string"}, "badge_acm_results_replicated": {"type": "string"}, "ck_repo_uid": {"type": "string"}, "paper_doi_url": {"type": "string"}, "paper_pdf_url": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "string"}}, "reproducibility_url": {"type": "string"}, "results": {"type": "string"}, "results_dashboard_url": {"type": "string"}, "results_url": {"type": "string"}, "tasks": {"type": "object", "properties": {"5a9a6915b20ea1bf": {"type": "object", "properties": {"data_uoa": {"type": "string"}}, "required": ["data_uoa"]}}, "required": ["5a9a6915b20ea1bf"]}, "title": {"type": "string"}, "unified_artifact_appendix": {"type": "string"}, "where": {"type": "string"}, "where_url": {"type": "string"}, "workflow": {"type": "string"}, "workflow_url": {"type": "string"}}, "required": ["artifact_doi_url", "artifact_sources", "artifact_sources_url", "authors", "badge_acm_artifact_available", "badge_acm_artifact_reusable", "badge_acm_results_replicated", "ck_repo_uid", "paper_doi_url", "paper_pdf_url", "related_urls", "reproducibility_url", "results", "results_dashboard_url", "results_url", "tasks", "title", "unified_artifact_appendix", "where", "where_url", "workflow", "workflow_url"]}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["license", "meta", "source", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"license" : "CC BY-SA 4.0", "meta" : {"artifact_doi_url" : "https://doi.org/10.1145/3229773", "artifact_sources" : "GitHub", "artifact_sources_url" : "https://github.com/dividiti/ck-request-asplos18-mobilenets-armcl-opencl", "authors" : "Anton Lokhmotov, Nikolay Chunosov, Flavio Vella, Grigori Fursin", "badge_acm_artifact_available" : "yes", "badge_acm_artifact_reusable" : "yes", "badge_acm_results_replicated" : "yes", "ck_repo_uid" : "7698eaf859b79f2b", "paper_doi_url" : "https://doi.org/10.1145/3229762.3229767", "paper_pdf_url" : "", "related_urls" : ["https://dl.acm.org/citation.cfm?id=3229773", "https://dl.acm.org/doi/10.1145/3229762.3229767"], "reproducibility_url" : "http://cKnowledge.org/request-cfp-asplos2018.html", "results" : "CK format", "results_dashboard_url" : "http://cKnowledge.org/dashboard/request.asplos18", "results_url" : "https://github.com/ctuning/ck-request-asplos18-results-mobilenets-armcl-opencl", "tasks" : {"5a9a6915b20ea1bf" : {"data_uoa" : "mobilenets-armcl-opencl"}}, "title" : "Multi-objective autotuning of MobileNets across the full software/hardware stack", "unified_artifact_appendix" : "https://ctuning.org/ae/submission_extra.html", "where" : "ReQuEST-ASPLOS'18", "where_url" : "http://cKnowledge.org/request-cfp-asplos2018.html", "workflow" : "CK", "workflow_url" : "https://github.com/dividiti/ck-request-asplos18-mobilenets-armcl-opencl"}, "source" : "https://cTuning.org/ae", "tags" : ["papers", "papers-request", "papers-request-asplos", "papers-request-asplos-2018", "reproduced-papers", "portable-workflow", "portable-workflow-ck", "ctuning", "reproindex"]}
json_instruct
{"type": "object", "properties": {"license": {"type": "string"}, "meta": {"type": "object", "properties": {"artifact_doi_url": {"type": "string"}, "artifact_sources": {"type": "string"}, "artifact_sources_url": {"type": "string"}, "authors": {"type": "string"}, "badge_acm_artifact_available": {"type": "string"}, "badge_acm_artifact_reusable": {"type": "string"}, "badge_acm_results_replicated": {"type": "string"}, "ck_repo_uid": {"type": "string"}, "paper_doi_url": {"type": "string"}, "paper_pdf_url": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "string"}}, "reproducibility_url": {"type": "string"}, "results": {"type": "string"}, "results_dashboard_url": {"type": "string"}, "results_url": {"type": "string"}, "tasks": {"type": "object", "properties": {"5a9a6915b20ea1bf": {"type": "object", "properties": {"data_uoa": {"type": "string"}}, "required": ["data_uoa"]}}, "required": ["5a9a6915b20ea1bf"]}, "title": {"type": "string"}, "unified_artifact_appendix": {"type": "string"}, "where": {"type": "string"}, "where_url": {"type": "string"}, "workflow": {"type": "string"}, "workflow_url": {"type": "string"}}, "required": ["artifact_doi_url", "artifact_sources", "artifact_sources_url", "authors", "badge_acm_artifact_available", "badge_acm_artifact_reusable", "badge_acm_results_replicated", "ck_repo_uid", "paper_doi_url", "paper_pdf_url", "related_urls", "reproducibility_url", "results", "results_dashboard_url", "results_url", "tasks", "title", "unified_artifact_appendix", "where", "where_url", "workflow", "workflow_url"]}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["license", "meta", "source", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Diffusion-Convolutional Neural Networks.", "fields" : ["diffusion", "isomorphism", "tensor", "absolute deviation", "convolutional neural network", "probabilistic logic", "levy flight", "invariant", "decision model"], "abstract" : "We present diffusion-convolutional neural networks (DCNNs), a new model for graph-structured data. Through the introduction of a diffusion-convolution operation, we show how diffusion-based representations can be learned from graph-structured data and used as an effective basis for node classification. DCNNs have several attractive qualities, including a latent representation for graphical data that is invariant under isomorphism, as well as polynomial-time prediction and learning that can be represented as tensor operations and efficiently implemented on a GPU. Through several experiments with real structured datasets, we demonstrate that DCNNs are able to outperform probabilistic relational models and kernel-on-graph methods at relational node classification tasks.", "citation" : "Not cited", "departments" : ["University of Massachusetts Amherst", "University of Massachusetts Amherst"], "authors" : ["James Atwood.....http://dblp.org/pers/hd/a/Atwood:James", "Don Towsley.....http://dblp.org/pers/hd/t/Towsley:Don"], "conf" : "nips", "year" : "2016", "pages" : 9}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"deployPath": {"type": "string"}, "templateName": {"type": "string"}, "deployFileName": {"type": "string"}, "unpack": {"type": "boolean"}, "contentType": {"type": "string"}, "entity": {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "target": {"type": "string"}, "deployToJvms": {"type": "boolean"}}, "required": ["type", "group", "target", "deployToJvms"]}}, "required": ["deployPath", "templateName", "deployFileName", "unpack", "contentType", "entity"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"deployPath" : "/deploy/path", "templateName" : "template-name.war.tpl", "deployFileName" : "deploy-file-name.war", "unpack" : false, "contentType" : "application/zip", "entity" : {"type" : "GROUPED_APPS", "group" : "test-group", "target" : "test-webapp", "deployToJvms" : false}}
json_instruct
{"type": "object", "properties": {"deployPath": {"type": "string"}, "templateName": {"type": "string"}, "deployFileName": {"type": "string"}, "unpack": {"type": "boolean"}, "contentType": {"type": "string"}, "entity": {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "target": {"type": "string"}, "deployToJvms": {"type": "boolean"}}, "required": ["type", "group", "target", "deployToJvms"]}}, "required": ["deployPath", "templateName", "deployFileName", "unpack", "contentType", "entity"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "Name": {"type": "string"}, "state_id": {"type": "integer"}, "state_code": {"type": "string"}, "state_name": {"type": "string"}, "country_id": {"type": "integer"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "wikiDataId": {"type": "string"}}, "required": ["id", "Name", "state_id", "state_code", "state_name", "country_id", "country_code", "country_name", "latitude", "longitude", "wikiDataId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 104117, "Name" : "Hrastje", "state_id" : 4299, "state_code" : "117", "state_name" : "\u0160en\u010dur Municipality", "country_id" : 201, "country_code" : "SI", "country_name" : "Slovenia", "latitude" : "46.21667000", "longitude" : "14.40000000", "wikiDataId" : "Q2348978"}, {"id" : 104351, "Name" : "\u0160en\u010dur", "state_id" : 4299, "state_code" : "117", "state_name" : "\u0160en\u010dur Municipality", "country_id" : 201, "country_code" : "SI", "country_name" : "Slovenia", "latitude" : "46.24556000", "longitude" : "14.41972000", "wikiDataId" : "Q1810670"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "Name": {"type": "string"}, "state_id": {"type": "integer"}, "state_code": {"type": "string"}, "state_name": {"type": "string"}, "country_id": {"type": "integer"}, "country_code": {"type": "string"}, "country_name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "wikiDataId": {"type": "string"}}, "required": ["id", "Name", "state_id", "state_code", "state_name", "country_id", "country_code", "country_name", "latitude", "longitude", "wikiDataId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Montlay-en-Auxois", "circ" : "4\u00e8me circonscription", "dpt" : "C\u00f4te-d'Or", "inscrits" : 122, "abs" : 69, "votants" : 53, "blancs" : 6, "nuls" : 1, "exp" : 46, "res" : [{"nuance" : "REM", "nom" : "Mme Yolaine DE COURSON", "voix" : 23}, {"nuance" : "LR", "nom" : "M. Charles BARRIERE", "voix" : 23}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"chenddcoder": {"type": "string"}}, "required": ["chenddcoder"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}, "submodules": {"type": "boolean"}}, "required": ["git", "tag", "submodules"]}, "requires_arc": {"type": "boolean"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}, "public_header_files": {"type": "string"}, "vendored_libraries": {"type": "string"}, "preserve_paths": {"type": "string"}, "libraries": {"type": "string"}, "xcconfig": {"type": "object", "properties": {"HEADER_SEARCH_PATHS": {"type": "string"}, "LIBRARY_SEARCH_PATHS": {"type": "string"}}, "required": ["HEADER_SEARCH_PATHS", "LIBRARY_SEARCH_PATHS"]}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "requires_arc", "platforms", "public_header_files", "vendored_libraries", "preserve_paths", "libraries", "xcconfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "libx264-iOS", "version" : "1.3", "license" : "MIT", "summary" : "libx264 build for iOS", "homepage" : "https://github.com/chenddcoder/libx264-iOS", "authors" : {"chenddcoder" : "chenddcoder@foxmail.com"}, "source" : {"git" : "https://github.com/chenddcoder/libx264-iOS.git", "tag" : "1.3", "submodules" : true}, "requires_arc" : false, "platforms" : {"ios" : "7.0", "osx" : "10.8"}, "public_header_files" : "include/{*}.h", "vendored_libraries" : "lib/libx264.a", "preserve_paths" : "include/*.h", "libraries" : "x264", "xcconfig" : {"HEADER_SEARCH_PATHS" : "${PODS_ROOT}/libx264-iOS/include/**", "LIBRARY_SEARCH_PATHS" : "${PODS_ROOT}/libx264-iOS/lib/**"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"chenddcoder": {"type": "string"}}, "required": ["chenddcoder"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}, "submodules": {"type": "boolean"}}, "required": ["git", "tag", "submodules"]}, "requires_arc": {"type": "boolean"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}, "public_header_files": {"type": "string"}, "vendored_libraries": {"type": "string"}, "preserve_paths": {"type": "string"}, "libraries": {"type": "string"}, "xcconfig": {"type": "object", "properties": {"HEADER_SEARCH_PATHS": {"type": "string"}, "LIBRARY_SEARCH_PATHS": {"type": "string"}}, "required": ["HEADER_SEARCH_PATHS", "LIBRARY_SEARCH_PATHS"]}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "requires_arc", "platforms", "public_header_files", "vendored_libraries", "preserve_paths", "libraries", "xcconfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 61240, "UUID" : "AD8CFEE7-24E7-4096-A2DF-2BBBD4144246", "DataProviderID" : 1, "OperatorID" : 101, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 61586, "Title" : "Zoologischer Garten", "AddressLine1" : "Am Wasserfall 2", "Town" : "Eberswalde", "StateOrProvince" : "Landkreis Barnim", "Postcode" : "16225", "CountryID" : 87, "Latitude" : 52.8254044, "Longitude" : 13.783674700000006, "AccessComments" : "Nutzbar mit PlugSurfing Keyhanger oder App, WSW Ladekarte u.a. ", "DistanceUnit" : 0}, "Connections" : [{"ID" : 77951, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 20, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2016-02-17T07:31:00Z", "DataQualityLevel" : 1, "DateCreated" : "2016-02-17T07:31:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"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": {"marker-symbol": {"type": "string"}, "marker-color": {"type": "string"}, "marker-size": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "url": {"type": "string"}, "geoBeerId": {"type": "string"}}, "required": ["marker-symbol", "marker-color", "marker-size", "name", "address", "url", "geoBeerId"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-89.63181, 42.805343]}, "properties" : {"marker-symbol" : "star", "marker-color" : "#607D8B", "marker-size" : "small", "name" : "New Glarus Brewing Company", "address" : "2400 State Highway 69, New Glarus, WI 53574", "url" : "http://www.newglarusbrewing.com/", "geoBeerId" : "c1b8566d-7fbb-4144-a90e-c82a45595406"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"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": {"marker-symbol": {"type": "string"}, "marker-color": {"type": "string"}, "marker-size": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "url": {"type": "string"}, "geoBeerId": {"type": "string"}}, "required": ["marker-symbol", "marker-color", "marker-size", "name", "address", "url", "geoBeerId"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"team": {"type": "string"}, "players": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["team", "players"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"team" : "Detroit Red Wings", "players" : [{"name" : "Pavel Datsyuk"}, {"name" : "Nicklas Lidstr\u00f6m"}, {"name" : "Darren Helm"}]}
json_instruct
{"type": "object", "properties": {"team": {"type": "string"}, "players": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["team", "players"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "5c0c1f2b86f77455912eaf05", "_tpl" : "5b3f7c005acfc4704b4a1de8", "parentId" : "5c0c1f2b86f77455912eaf04", "slotId" : "mod_mount"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 84426, "idParent" : 13617, "namaWilayah" : "EMPAT KOTO PULAU PUNJUNG", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 84426, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "EMPAT KOTO PULAU PUNJUNG", "kodeWilayah" : "13.10.02.2006"}, {"id" : 84428, "idParent" : 13617, "namaWilayah" : "GUNUNG SELASIH", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 84428, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "GUNUNG SELASIH", "kodeWilayah" : "13.10.02.2008"}, {"id" : 84429, "idParent" : 13617, "namaWilayah" : "SIKABAU", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 84429, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "SIKABAU", "kodeWilayah" : "13.10.02.2009"}, {"id" : 13618, "idParent" : 13617, "namaWilayah" : "SUNGAI DAREH", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 13618, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "SUNGAI DAREH", "kodeWilayah" : "13.10.02.2001"}, {"id" : 84427, "idParent" : 13617, "namaWilayah" : "SUNGAI KAMBUT", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 84427, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "SUNGAI KAMBUT", "kodeWilayah" : "13.10.02.2007"}, {"id" : 13619, "idParent" : 13617, "namaWilayah" : "TEBING TINGGI", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 13619, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "TEBING TINGGI", "kodeWilayah" : "13.10.02.2002"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}}, "required": ["docs"]}, "dependencies": {"type": "object", "properties": {"jsdoc": {"type": "string"}}, "required": ["jsdoc"]}}, "required": ["name", "version", "author", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "thingsboard-advanced-attribute-widget", "version" : "0.9.2", "author" : "Jan Sch\u00e4r <jan.schaer@sbb.ch>", "scripts" : {"docs" : "./node_modules/jsdoc/jsdoc.js -c ./.jsdoc.conf.json"}, "dependencies" : {"jsdoc" : "^3.6.10"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}}, "required": ["docs"]}, "dependencies": {"type": "object", "properties": {"jsdoc": {"type": "string"}}, "required": ["jsdoc"]}}, "required": ["name", "version", "author", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"loss": {"type": "number"}, "accuracy": {"type": "number"}, "val_accuracy": {"type": "number"}, "pred": {"type": "integer"}, "real": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}}, "required": ["loss", "accuracy", "val_accuracy", "pred", "real", "_runtime", "_timestamp", "_step"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loss" : 0.0013077214825898409, "accuracy" : 2.6, "val_accuracy" : 3.0, "pred" : 18, "real" : 0, "_runtime" : 10, "_timestamp" : 1621311099, "_step" : 1}
json_instruct
{"type": "object", "properties": {"loss": {"type": "number"}, "accuracy": {"type": "number"}, "val_accuracy": {"type": "number"}, "pred": {"type": "integer"}, "real": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}}, "required": ["loss", "accuracy", "val_accuracy", "pred", "real", "_runtime", "_timestamp", "_step"], "$schema": "http://json-schema.org/draft-07/schema#"}