input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"allLanguages": {"type": "array", "items": {"type": "string"}}, "defaultLanguage": {"type": "string"}}, "required": ["allLanguages", "defaultLanguage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"allLanguages" : ["en", "cy"], "defaultLanguage" : "en"}
json_instruct
{"type": "object", "properties": {"allLanguages": {"type": "array", "items": {"type": "string"}}, "defaultLanguage": {"type": "string"}}, "required": ["allLanguages", "defaultLanguage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "versionName": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "website"]}, "licence": {"type": "string"}, "viewer": {"type": "object", "properties": {"min": {"type": "string"}, "max": {"type": "string"}}, "required": ["min", "max"]}, "options": {"type": "object", "properties": {}, "required": []}, "actions": {"type": "array", "items": {}}, "sources": {"type": "array", "items": {"type": "string"}}, "constructor": {"type": "string"}}, "required": ["uid", "name", "slug", "version", "versionName", "description", "tags", "author", "licence", "viewer", "options", "actions", "sources", "constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uid" : "org.forgejs.editor", "name" : "Editor", "slug" : "editor", "version" : "1.0.0", "versionName" : "Editor 1.0.0", "description" : "An editor plugin to tweak hotspots.", "tags" : ["editor"], "author" : {"name" : "GoPro", "website" : "https://forgejs.org"}, "licence" : "Apache-2.0", "viewer" : {"min" : "0.9.5", "max" : "0.9.5"}, "options" : {}, "actions" : [], "sources" : ["css/forgejs-editor-style.css", "lib/TransformControls.js", "build/forge.editor.min.js"], "constructor" : "ForgePlugins.Editor"}
json_instruct
{"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "versionName": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "website"]}, "licence": {"type": "string"}, "viewer": {"type": "object", "properties": {"min": {"type": "string"}, "max": {"type": "string"}}, "required": ["min", "max"]}, "options": {"type": "object", "properties": {}, "required": []}, "actions": {"type": "array", "items": {}}, "sources": {"type": "array", "items": {"type": "string"}}, "constructor": {"type": "string"}}, "required": ["uid", "name", "slug", "version", "versionName", "description", "tags", "author", "licence", "viewer", "options", "actions", "sources", "constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"groups": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "sourceType": {"type": "string"}}, "required": ["name", "type", "sourceType"]}}, "properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "sourceType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["name", "type", "description", "sourceType", "defaultValue"]}}, "hints": {"type": "array", "items": {}}}, "required": ["groups", "properties", "hints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"groups" : [{"name" : "some.long.prefix", "type" : "foo.bar.HdfsProperties", "sourceType" : "foo.bar.HdfsProperties"}, {"name" : "some.long.prefix.nested", "type" : "foo.bar.OtherHdfsProperties", "sourceType" : "foo.bar.HdfsProperties"}, {"name" : "hdfs", "type" : "com.foo.DifferentHdfsProperties", "sourceType" : "com.foo.DifferentHdfsProperties"}], "properties" : [{"name" : "hdfs.directory", "type" : "java.lang.String", "description" : "A path", "sourceType" : "com.foo.DifferentHdfsProperties", "defaultValue" : "/tmp"}, {"name" : "some.long.prefix.option1", "type" : "java.lang.String", "description" : "An option", "sourceType" : "foo.bar.HdfsProperties", "defaultValue" : "foo"}, {"name" : "some.long.prefix.option2", "type" : "java.lang.String", "description" : "Another option", "sourceType" : "foo.bar.HdfsProperties", "defaultValue" : "bar"}, {"name" : "some.long.prefix.nested.itworks", "type" : "java.lang.String", "description" : "Nested option", "sourceType" : "foo.bar.HdfsProperties", "defaultValue" : "wizz"}], "hints" : []}
json_instruct
{"type": "object", "properties": {"groups": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "sourceType": {"type": "string"}}, "required": ["name", "type", "sourceType"]}}, "properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "sourceType": {"type": "string"}, "defaultValue": {"type": "string"}}, "required": ["name", "type", "description", "sourceType", "defaultValue"]}}, "hints": {"type": "array", "items": {}}}, "required": ["groups", "properties", "hints"], "$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": {"name": {"type": "string"}, "roles": {"type": "string"}, "bio": {"type": "string"}, "portrait": {"type": "string"}}, "required": ["name", "roles", "bio", "portrait"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Ryan Wright", "roles" : "Writer, Director, Cast", "bio" : "He's got it going on", "portrait" : "/img/ryan-portrait.png"}, {"name" : "Will Fosset", "roles" : "Audio Director, Cast", "bio" : "Went to college for music because food lmao", "portrait" : "/img/will-portrait.png"}, {"name" : "Joe Gable", "roles" : "Audio Engineer, Cast", "bio" : "He's creamin' and dreamin'", "portrait" : "/img/joe-portrait.jpeg"}, {"name" : "Rachael Havard", "roles" : "Cast", "bio" : "Did theatre in high school but didn't go to college for it because eating is important", "portrait" : "/img/rachael-portrait.jpg"}, {"name" : "Mymi Hang", "roles" : "Designer", "bio" : "Do I have to have a bio?", "portrait" : "/img/placeholder.png"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "roles": {"type": "string"}, "bio": {"type": "string"}, "portrait": {"type": "string"}}, "required": ["name", "roles", "bio", "portrait"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "hostname": {"type": "string"}, "event": {"type": "string"}, "namespace": {"type": "string"}, "properties": {"type": "object", "properties": {"CorrelationId": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}, "Fingerprints": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "FileType": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["CorrelationId", "Fingerprints", "FileType"]}}, "required": ["title", "type", "hostname", "event", "namespace", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Feature vectors calculator command parameters types", "type" : "object", "hostname" : "amqp://guest:guest@rabbitmq:5672/osdr_dev", "event" : "CalculateFeatureVectors", "namespace" : "Sds.Osdr.MachineLearning.Domain.Commands", "properties" : {"CorrelationId" : {"type" : "string", "format" : "Guid"}, "Fingerprints" : {"type" : "array"}, "FileType" : {"type" : "string"}}}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "hostname": {"type": "string"}, "event": {"type": "string"}, "namespace": {"type": "string"}, "properties": {"type": "object", "properties": {"CorrelationId": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}, "Fingerprints": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "FileType": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["CorrelationId", "Fingerprints", "FileType"]}}, "required": ["title", "type", "hostname", "event", "namespace", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Kimberly, AL"], "state" : "AL", "postal_code" : "35091", "locality" : "Kimberly, AL", "lat" : 33.779236, "region" : {"fips" : "01", "abbr" : "AL", "name" : "Alabama"}, "city" : "Kimberly", "type" : "STANDARD", "lng" : -86.789554, "counties" : [{"fips" : "073", "name" : "Jefferson County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.2.dev0"], "meta" : {"description" : "Xslt renderer for pyramid", "homepage" : "https://github.com/cyplp/pyramid_xslt", "license" : "MIT"}, "versions" : {"0.1" : {"sha256" : "410a4efc080d646f9bd77a3f99a1cc1845db90b3c3c990c0ce24010790e7446f", "url" : "https://files.pythonhosted.org/packages/ba/86/3127a9eb41e60a8dc06df835cc5ee06ff8fae8e748194fdd52def1c5dd8b/pyramid_xslt-0.1.linux-x86_64.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://lema.rae.es/drae/srv/search?val=opacar", "word" : "opacar", "infinitivo" : "opacar", "participio" : ["opacado"], "gerundio" : ["opacando"], "tenses" : {"3" : [["opaco"], ["opacas", "opac\u00e1s"], ["opaca"], ["opacamos"], ["opac\u00e1is", "opacan"], ["opacan"]], "4" : [["opaqu\u00e9"], ["opacaste"], ["opac\u00f3"], ["opacamos"], ["opacasteis", "opacaron"], ["opacaron"]], "5" : [["opacaba"], ["opacabas"], ["opacaba"], ["opac\u00e1bamos"], ["opacabais", "opacaban"], ["opacaban"]], "6" : [["opacar\u00eda"], ["opacar\u00edas"], ["opacar\u00eda"], ["opacar\u00edamos"], ["opacar\u00edais", "opacar\u00edan"], ["opacar\u00edan"]], "7" : [["opacar\u00e9"], ["opacar\u00e1s"], ["opacar\u00e1"], ["opacaremos"], ["opacar\u00e9is", "opacar\u00e1n"], ["opacar\u00e1n"]], "8" : [["opaque"], ["opaques"], ["opaque"], ["opaquemos"], ["opaqu\u00e9is", "opaquen"], ["opaquen"]], "9" : [["opacara"], ["opacaras"], ["opacara"], ["opac\u00e1ramos"], ["opacarais", "opacaran"], ["opacaran"]], "10" : [["opacase"], ["opacases"], ["opacase"], ["opac\u00e1semos"], ["opacaseis", "opacasen"], ["opacasen"]], "11" : [["opacare"], ["opacares"], ["opacare"], ["opac\u00e1remos"], ["opacareis", "opacaren"], ["opacaren"]], "12" : {"1" : ["opaca"], "2" : ["opaque"], "3" : ["opaquemos"], "4" : ["opacad"], "5" : ["opaquen"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "Saint-Genest-de-Beauzon", "circ" : "3\u00e8me circonscription", "dpt" : "Ard\u00e8che", "inscrits" : 237, "abs" : 110, "votants" : 127, "blancs" : 19, "nuls" : 10, "exp" : 98, "res" : [{"nuance" : "REM", "nom" : "M. Matthieu PEYRAUD", "voix" : 65}, {"nuance" : "LR", "nom" : "M. Fabrice BRUN", "voix" : 33}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [67.5275590551181, 42.8218181818182, 0.900564059615135, 77.3543307086614, 97.7454545454545, 0.657514594495296, 32, 98.9090909090909, 0.653188355267048, 34.2677165354331, 160.581818181818, 0.535308092832565, 21.9212598425197, 180.596363636364, 0.675580896437168, 124.220472440945, 95.8836363636364, 0.551758132874966, 151.685039370079, 169.425454545455, 0.759293124079704, 105.826771653543, 208.989090909091, 0.551226823590696, 32.755905511811, 216.436363636364, 0.249731260992121, 0, 0, 0, 0, 0, 0, 83.1496062992126, 225.28, 0.245131233008578, 0, 0, 0, 0, 0, 0, 59.4645669291339, 34.4436363636364, 0.920510470867157, 77.8582677165354, 32.8145454545455, 0.929608091711998, 48.3779527559055, 40.4945454545455, 0.434687443077564, 92.2204724409449, 38.4, 0.876201331615448], "hand_right_keypoints" : [], "hand_left_keypoints" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$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" : "5301050001", "district_id" : "5301050", "name" : "DEDE KADU"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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" : 404380983, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "39e96b5500ef9dc14fe2363a3bd77c58", "wof:id" : 404380983, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.17642410926111, 43.95518319363672, 3.23919251563088, 43.99398721116805], "geometry" : {"coordinates" : [[[3.23919251563088, 43.96343182078509], [3.23494990964529, 43.96494398145948], [3.21557470351286, 43.95518319363672], [3.21090490730478, 43.95572328651833], [3.18026005811416, 43.97224765194947], [3.17958362560337, 43.9790526179517], [3.17642410926111, 43.98910159201268], [3.18270992071792, 43.99398721116805], [3.18733204019196, 43.99307940247153], [3.19433266736498, 43.98415731022042], [3.20289770567913, 43.98120780410407], [3.2075939040261, 43.98047900262979], [3.21230740526014, 43.98108194220896], [3.21821113518962, 43.9865242354274], [3.22744946830686, 43.98697340583066], [3.23443801186745, 43.98288170710754], [3.23919251563088, 43.96343182078509]]], "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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"quotes": {"type": "array", "items": {}}, "first_start": {"type": "boolean"}, "date_format": {"type": "string"}, "quote_format": {"type": "string"}, "bot_admins": {"type": "array", "items": {}}, "version": {"type": "integer"}, "properties": {"type": "object", "properties": {"global": {"type": "object", "properties": {"profile": {"type": "object", "properties": {"exp": {"type": "integer"}, "level": {"type": "integer"}}, "required": ["exp", "level"]}, "command_prefix": {"type": "string"}, "broadcast_leave": {"type": "boolean"}, "broadcast_level_up": {"type": "boolean"}, "broadcast_join": {"type": "boolean"}, "prefix_answer": {"type": "boolean"}}, "required": ["profile", "command_prefix", "broadcast_leave", "broadcast_level_up", "broadcast_join", "prefix_answer"]}, "by_user": {"type": "object", "properties": {}, "required": []}, "by_server": {"type": "object", "properties": {}, "required": []}}, "required": ["global", "by_user", "by_server"]}, "nobroadcast": {"type": "array", "items": {}}, "owner_messages": {"type": "array", "items": {}}}, "required": ["quotes", "first_start", "date_format", "quote_format", "bot_admins", "version", "properties", "nobroadcast", "owner_messages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"quotes" : [], "first_start" : true, "date_format" : "{0}/{1}/{2}", "quote_format" : "**#{0}**: *\"{1}\"* \u2014 `{2}` [{3}]", "bot_admins" : [], "version" : 3, "properties" : {"global" : {"profile" : {"exp" : 0, "level" : 0}, "command_prefix" : "!", "broadcast_leave" : true, "broadcast_level_up" : true, "broadcast_join" : true, "prefix_answer" : true}, "by_user" : {}, "by_server" : {}}, "nobroadcast" : [], "owner_messages" : []}
json_instruct
{"type": "object", "properties": {"quotes": {"type": "array", "items": {}}, "first_start": {"type": "boolean"}, "date_format": {"type": "string"}, "quote_format": {"type": "string"}, "bot_admins": {"type": "array", "items": {}}, "version": {"type": "integer"}, "properties": {"type": "object", "properties": {"global": {"type": "object", "properties": {"profile": {"type": "object", "properties": {"exp": {"type": "integer"}, "level": {"type": "integer"}}, "required": ["exp", "level"]}, "command_prefix": {"type": "string"}, "broadcast_leave": {"type": "boolean"}, "broadcast_level_up": {"type": "boolean"}, "broadcast_join": {"type": "boolean"}, "prefix_answer": {"type": "boolean"}}, "required": ["profile", "command_prefix", "broadcast_leave", "broadcast_level_up", "broadcast_join", "prefix_answer"]}, "by_user": {"type": "object", "properties": {}, "required": []}, "by_server": {"type": "object", "properties": {}, "required": []}}, "required": ["global", "by_user", "by_server"]}, "nobroadcast": {"type": "array", "items": {}}, "owner_messages": {"type": "array", "items": {}}}, "required": ["quotes", "first_start", "date_format", "quote_format", "bot_admins", "version", "properties", "nobroadcast", "owner_messages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xywh" : "974,4854,3910,481"}
json_instruct
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"menu": {"type": "object", "properties": {"projects": {"type": "string"}, "collaborate": {"type": "string"}, "team": {"type": "string"}, "articles": {"type": "string"}, "contact": {"type": "string"}}, "required": ["projects", "collaborate", "team", "articles", "contact"]}, "footer": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}, "thanks": {"type": "string"}}, "required": ["title", "subtitle", "thanks"]}, "projects": {"type": "object", "properties": {"title": {"type": "string"}, "view": {"type": "string"}, "pictures": {"type": "string"}}, "required": ["title", "view", "pictures"]}, "donations": {"type": "object", "properties": {"cta": {"type": "string"}, "ok": {"type": "string"}, "text": {"type": "string"}}, "required": ["cta", "ok", "text"]}}, "required": ["menu", "footer", "projects", "donations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"menu" : {"projects" : "Projectes", "collaborate" : "Colabora", "team" : "Nosaltres", "articles" : "Articles", "contact" : "Contacta"}, "footer" : {"title" : "Seguim en contacte", "subtitle" : "Escriu-nos a trav\u00e9s de qualsevol de les nostres xarxes socials, \u00a1Contestem aviat!", "thanks" : "Gracies a"}, "projects" : {"title" : "Coneix els nostres projectes", "view" : "Veure el projecte", "pictures" : "Sobre el projecte"}, "donations" : {"cta" : "Dona!", "ok" : "Gr\u00e0cies per la informaci\u00f3", "text" : "Gr\u00e0cies a les donacions podem treballar en els diferents projectes per ajudar les persones a tenir una millor vida, pots ajudar-nos fent servir Bizum ({bizum}), Verse ({verse}) o una donaci\u00f3 a la nostra compte bancari ({bank})"}}
json_instruct
{"type": "object", "properties": {"menu": {"type": "object", "properties": {"projects": {"type": "string"}, "collaborate": {"type": "string"}, "team": {"type": "string"}, "articles": {"type": "string"}, "contact": {"type": "string"}}, "required": ["projects", "collaborate", "team", "articles", "contact"]}, "footer": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}, "thanks": {"type": "string"}}, "required": ["title", "subtitle", "thanks"]}, "projects": {"type": "object", "properties": {"title": {"type": "string"}, "view": {"type": "string"}, "pictures": {"type": "string"}}, "required": ["title", "view", "pictures"]}, "donations": {"type": "object", "properties": {"cta": {"type": "string"}, "ok": {"type": "string"}, "text": {"type": "string"}}, "required": ["cta", "ok", "text"]}}, "required": ["menu", "footer", "projects", "donations"], "$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" : "621121203201", "text" : "\u5927\u5be8\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203202", "text" : "\u8def\u5c94\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203203", "text" : "\u65e7\u5e84\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203204", "text" : "\u534a\u5c94\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203205", "text" : "\u738b\u6e7e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203206", "text" : "\u6cb9\u5e9c\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203207", "text" : "\u5f20\u5c71\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203208", "text" : "\u5f20\u6cb3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203209", "text" : "\u59da\u6cb3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203210", "text" : "\u6599\u6ee9\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203211", "text" : "\u9a6c\u6e7e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203212", "text" : "\u767d\u6768\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "621121203213", "text" : "\u5c0f\u6c9f\u6751\u6c11\u59d4\u5458\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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_facet_id": {"type": "integer"}, "affiliate_facet": {"type": "string"}, "occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"facet_id": {"type": "integer"}, "occurrence": {"type": "integer"}, "value": {"type": "string"}}, "required": ["facet_id", "occurrence", "value"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_facet_id", "affiliate_facet", "occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"time_fct_id" : 15, "time_fct" : "time_62060", "affiliate_facet_id" : 1065, "affiliate_facet" : "Filmnegative, Ordner 121 Hochrhein", "occurrence" : 303, "affiliates" : [{"facet_id" : 1065, "occurrence" : 308, "value" : "KfK-Vorstand"}]}
json_instruct
{"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_facet_id": {"type": "integer"}, "affiliate_facet": {"type": "string"}, "occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"facet_id": {"type": "integer"}, "occurrence": {"type": "integer"}, "value": {"type": "string"}}, "required": ["facet_id", "occurrence", "value"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_facet_id", "affiliate_facet", "occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"body": {"type": "string"}, "sourceUrl": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}}, "required": ["body", "sourceUrl", "id", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "A laryngoscope is a rigid or flexible endoscope passed through the mouth and equipped with a source of light and magnification, for examining and performing local diagnostic and surgical procedures on the larynx", "sourceUrl" : "https://www.webmd.com/oral-health/what-is-laryngoscopy", "id" : "3", "title" : "Data Recording"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "sourceUrl": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}}, "required": ["body", "sourceUrl", "id", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1.1"], "meta" : {"description" : "Django package to handle (serve, reference, compile) static files", "homepage" : "https://github.com/yaniv-aknin/supstream", "license" : "MIT"}, "versions" : {"0.1.0" : {"sha256" : "8c51c96b1191a2f3846394a0d69a63e9861cbfef9d14d287c01a8d7ca37939f4", "url" : "https://files.pythonhosted.org/packages/92/14/7e6a488a91f191109b4388329a4aa1b3bb85bcfd30ff7bd9287761cd1283/django-static-upstream-0.1.0.tar.gz"}, "0.1.1" : {"sha256" : "d8eb691af0103aaace392b9abb6f0e756faecb155ad2e0252a5067a3bcc11429", "url" : "https://files.pythonhosted.org/packages/10/08/ed1b3981ca7c447bb9f668367a39cabfc600e50284e1a795ed9602e31857/django-static-upstream-0.1.1.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u5bcc\u4e45\u51f8\u7248\u5370\u5237\u5ee0\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99672294", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "05810000004082", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u6771\u5340\u6a02\u6210\u91cc\u65f1\u6eaa\u8857\uff13\uff17\u5df7\uff18\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u81fa\u4e2d\u5e02\u6771\u5340\u6a02\u6210\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u6c5f\u79cb\u6842", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "51621404", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0580101", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0590101", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["16\u5370\u5237\u53ca\u8cc7\u6599\u5132\u5b58\u5a92\u9ad4\u8907\u88fd\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["161\u5370\u5237\u53ca\u5176\u8f14\u52a9"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["react-material-select", "serialport-server"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$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"}, "title": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "homepage": {"type": "string"}, "docs": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "title", "description", "keywords", "version", "author", "maintainers", "licenses", "homepage", "docs", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "hotkeys", "title" : "jQuery Hotkeys", "description" : "jQuery Hotkeys lets you watch for keyboard events anywhere in your code supporting almost any key combination.", "keywords" : ["keyboard", "events"], "version" : "0.1.0", "author" : {"name" : "John Resig", "url" : "https://ejohn.org/"}, "maintainers" : [{"name" : "John Resig", "email" : "[email protected]", "url" : "http://ejohn.org/"}], "licenses" : [{"type" : "MIT", "url" : "http://opensource.org/licenses/MIT"}, {"type" : "GPLv2", "url" : "http://www.gnu.org/licenses/gpl-2.0.html"}], "homepage" : "https://github.com/jeresig/jquery.hotkeys", "docs" : "https://github.com/jeresig/jquery.hotkeys", "dependencies" : {"jquery" : ">=1.4.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "homepage": {"type": "string"}, "docs": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "title", "description", "keywords", "version", "author", "maintainers", "licenses", "homepage", "docs", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "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" : [[[133.75, 30.916666666666668], [133.75, 31.0], [133.875, 31.0], [133.875, 30.916666666666668], [133.75, 30.916666666666668]]]}, "properties" : {"code" : 463336, "url" : "http://madefor.github.io/0410/api/v1/463336.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/463336.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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.99": {"type": "integer"}, "0.89": {"type": "integer"}, "0.27": {"type": "integer"}, "1.0": {"type": "integer"}, "0.64": {"type": "integer"}, "0.67": {"type": "integer"}, "0.13": {"type": "integer"}, "0.98": {"type": "integer"}, "0.95": {"type": "integer"}, "0.19": {"type": "integer"}, "0.84": {"type": "integer"}}, "required": ["0.99", "0.89", "0.27", "1.0", "0.64", "0.67", "0.13", "0.98", "0.95", "0.19", "0.84"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hour positive count" : 21, "hour neutral count" : 3, "hour negative count" : 3, "hour distri" : {"0.99" : 11, "0.89" : 1, "0.27" : 1, "1.0" : 7, "0.64" : 1, "0.67" : 1, "0.13" : 1, "0.98" : 1, "0.95" : 1, "0.19" : 1, "0.84" : 1}}
json_instruct
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.99": {"type": "integer"}, "0.89": {"type": "integer"}, "0.27": {"type": "integer"}, "1.0": {"type": "integer"}, "0.64": {"type": "integer"}, "0.67": {"type": "integer"}, "0.13": {"type": "integer"}, "0.98": {"type": "integer"}, "0.95": {"type": "integer"}, "0.19": {"type": "integer"}, "0.84": {"type": "integer"}}, "required": ["0.99", "0.89", "0.27", "1.0", "0.64", "0.67", "0.13", "0.98", "0.95", "0.19", "0.84"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Version": {"type": "string"}, "ApiVersion": {"type": "string"}, "MinAPIVersion": {"type": "string"}, "GitCommit": {"type": "string"}, "GoVersion": {"type": "string"}, "Os": {"type": "string"}, "Arch": {"type": "string"}, "KernelVersion": {"type": "string"}, "Experimental": {"type": "boolean"}, "BuildTime": {"type": "string"}}, "required": ["Version", "ApiVersion", "MinAPIVersion", "GitCommit", "GoVersion", "Os", "Arch", "KernelVersion", "Experimental", "BuildTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Version" : "17.03.0-ce-rc1", "ApiVersion" : "1.26", "MinAPIVersion" : "1.12", "GitCommit" : "ce07fb6", "GoVersion" : "go1.7.5", "Os" : "linux", "Arch" : "amd64", "KernelVersion" : "4.9.11-moby", "Experimental" : false, "BuildTime" : "2017-02-20T10:12:38.576960226+00:00"}
json_instruct
{"type": "object", "properties": {"Version": {"type": "string"}, "ApiVersion": {"type": "string"}, "MinAPIVersion": {"type": "string"}, "GitCommit": {"type": "string"}, "GoVersion": {"type": "string"}, "Os": {"type": "string"}, "Arch": {"type": "string"}, "KernelVersion": {"type": "string"}, "Experimental": {"type": "boolean"}, "BuildTime": {"type": "string"}}, "required": ["Version", "ApiVersion", "MinAPIVersion", "GitCommit", "GoVersion", "Os", "Arch", "KernelVersion", "Experimental", "BuildTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"place_name" : "San Juan Capistrano", "state_name" : "California", "state_abbrv" : "CA", "lat" : "33.5085", "long" : "-117.6565"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require-dev": {"type": "object", "properties": {"php": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["php", "phpunit/phpunit"]}}, "required": ["name", "description", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "environet/environ-test", "description" : "Environet tests", "require-dev" : {"php" : "7.2.*", "phpunit/phpunit" : "^8.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require-dev": {"type": "object", "properties": {"php": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["php", "phpunit/phpunit"]}}, "required": ["name", "description", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"tslint.enable": {"type": "boolean"}}, "required": ["tslint.enable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tslint.enable" : true}
json_instruct
{"type": "object", "properties": {"tslint.enable": {"type": "boolean"}}, "required": ["tslint.enable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "is_channel": {"type": "boolean"}, "created": {"type": "integer"}, "creator": {"type": "string"}, "is_archived": {"type": "boolean"}, "is_general": {"type": "boolean"}, "is_member": {"type": "boolean"}, "members": {"type": "array", "items": {"type": "string"}}, "topic": {"type": "object", "properties": {"value": {"type": "string"}, "creator": {"type": "string"}, "last_set": {"type": "integer"}}, "required": ["value", "creator", "last_set"]}, "purpose": {"type": "object", "properties": {"value": {"type": "string"}, "creator": {"type": "string"}, "last_set": {"type": "integer"}}, "required": ["value", "creator", "last_set"]}, "previous_names": {"type": "array", "items": {}}, "num_members": {"type": "integer"}}, "required": ["id", "name", "is_channel", "created", "creator", "is_archived", "is_general", "is_member", "members", "topic", "purpose", "previous_names", "num_members"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "BBBBBBBBBB", "name" : "new-channels", "is_channel" : true, "created" : 1234567890, "creator" : "AAAAAAAAA", "is_archived" : false, "is_general" : false, "is_member" : true, "members" : ["AAAAAAAAA"], "topic" : {"value" : "", "creator" : "", "last_set" : 0}, "purpose" : {"value" : "", "creator" : "", "last_set" : 0}, "previous_names" : [], "num_members" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "is_channel": {"type": "boolean"}, "created": {"type": "integer"}, "creator": {"type": "string"}, "is_archived": {"type": "boolean"}, "is_general": {"type": "boolean"}, "is_member": {"type": "boolean"}, "members": {"type": "array", "items": {"type": "string"}}, "topic": {"type": "object", "properties": {"value": {"type": "string"}, "creator": {"type": "string"}, "last_set": {"type": "integer"}}, "required": ["value", "creator", "last_set"]}, "purpose": {"type": "object", "properties": {"value": {"type": "string"}, "creator": {"type": "string"}, "last_set": {"type": "integer"}}, "required": ["value", "creator", "last_set"]}, "previous_names": {"type": "array", "items": {}}, "num_members": {"type": "integer"}}, "required": ["id", "name", "is_channel", "created", "creator", "is_archived", "is_general", "is_member", "members", "topic", "purpose", "previous_names", "num_members"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"inquirer": {"type": "string"}}, "required": ["inquirer"]}, "type": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "main", "bin", "keywords", "author", "license", "dependencies", "type", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "note-cli", "version" : "1.1.0", "description" : "Create note markdown things with the CLI", "main" : "src/index.js", "bin" : "src/index.js", "keywords" : [], "author" : "funnyboy_roks (https://www.funnyboyroks.com)", "license" : "MIT", "dependencies" : {"inquirer" : "^7.3.3"}, "type" : "module", "devDependencies" : {"eslint" : "^7.18.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-plugin-import" : "^2.22.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"inquirer": {"type": "string"}}, "required": ["inquirer"]}, "type": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "main", "bin", "keywords", "author", "license", "dependencies", "type", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x657a4134f6eb1ba0c4e86047db3158b05c35290d1019d38715740e086faf5125", "parentHash" : "0x4d9fde12f2619cfe2730ebf53ca83ed78b5d1de94c80299aa191352fef038db2", "number" : 5242, "timestamp" : 1438288334, "nonce" : "0xf60937bb2c1d0a47", "difficulty" : 195342449875, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x4e5C9FD685DCC9AbEDe1Cbde4959039388bf7c5A", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"openid": {"type": "string"}}, "required": ["openid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"openid" : "http://b\u00e5d.\u00f6pen\u00eed.c\u00f8m"}
json_instruct
{"type": "object", "properties": {"openid": {"type": "string"}}, "required": ["openid"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "1109190002", "district_id" : "1109190", "name" : "MESJID BUNGIE"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"bathrooms": {"type": "number"}, "bedrooms": {"type": "number"}, "security_deposit": {"type": "number"}, "cleaning_fee": {"type": "number"}, "extra_people": {"type": "number"}, "number_of_reviews": {"type": "number"}, "square_feet": {"type": "number"}, "review_scores_rating": {"type": "number"}, "room_type": {"type": "string"}, "host_is_super_host": {"type": "string"}, "cancellation_policy": {"type": "string"}, "instant_bookable": {"type": "string"}, "state": {"type": "string"}}, "required": ["bathrooms", "bedrooms", "security_deposit", "cleaning_fee", "extra_people", "number_of_reviews", "square_feet", "review_scores_rating", "room_type", "host_is_super_host", "cancellation_policy", "instant_bookable", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bathrooms" : 2.0, "bedrooms" : 2.0, "security_deposit" : 175.0, "cleaning_fee" : 25.0, "extra_people" : 1.0, "number_of_reviews" : 2.0, "square_feet" : 250.0, "review_scores_rating" : 2.0, "room_type" : "Entire home/apt", "host_is_super_host" : "0.0", "cancellation_policy" : "flexible", "instant_bookable" : "1.0", "state" : "CA"}
json_instruct
{"type": "object", "properties": {"bathrooms": {"type": "number"}, "bedrooms": {"type": "number"}, "security_deposit": {"type": "number"}, "cleaning_fee": {"type": "number"}, "extra_people": {"type": "number"}, "number_of_reviews": {"type": "number"}, "square_feet": {"type": "number"}, "review_scores_rating": {"type": "number"}, "room_type": {"type": "string"}, "host_is_super_host": {"type": "string"}, "cancellation_policy": {"type": "string"}, "instant_bookable": {"type": "string"}, "state": {"type": "string"}}, "required": ["bathrooms", "bedrooms", "security_deposit", "cleaning_fee", "extra_people", "number_of_reviews", "square_feet", "review_scores_rating", "room_type", "host_is_super_host", "cancellation_policy", "instant_bookable", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 45697, "cartId" : "0b3aa07e-4749-44d5-8647-eafc5a8780b7", "preferredProducts" : [2794, 4124, 3551, 2690, 2618, 4639, 4998], "productReviews" : [{"productId" : 662, "reviewText" : "This Granite works certainly well. It excitedly improves my football by a lot.", "reviewDate" : "2019-09-28T06:40:55.199731+03:00"}, {"productId" : 3572, "reviewText" : "heard about this on alternative dance radio, decided to give it a try.", "reviewDate" : "2019-02-15T03:46:21.1928211+02:00"}, {"productId" : 3036, "reviewText" : "My co-worker Delton has one of these. He says it looks slender.", "reviewDate" : "2018-06-26T06:13:05.0533437+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import { useTheme as useThemeWithoutDefault } from '@material-ui/styles';\nimport defaultTheme from './defaultTheme';\nexport default function useTheme() {\n return useThemeWithoutDefault() || defaultTheme;\n}", "map" : null, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"1233": {"type": "string"}, "9632": {"type": "string"}}, "required": ["1233", "9632"]}, "timeto": {"type": "object", "properties": {"1233": {"type": "number"}, "9632": {"type": "number"}}, "required": ["1233", "9632"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9631, "title" : ["[Gateway Tower]"], "description" : ["A tower of red sandstone rises above the forest in proud defiance of the trees that crowd against it. The massive rock faces carved high on each side of the edifice direct their gaze to the black and trackless forest beyond, their enigmatic smiles and lowered eyelids revealing nothing and suggesting much. Dark soil dusts the flagstones that lead past a pair of thick pillars and through an arch in the tower's base."], "paths" : ["Obvious paths: none"], "location" : "Wehnimer's Landing", "wayto" : {"1233" : "go faint path", "9632" : "go arch"}, "timeto" : {"1233" : 0.2, "9632" : 0.2}, "image" : "en-trail-1264234799.png", "image_coords" : [389, 704, 399, 714], "tags" : ["red passionflower", "some talneo root"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"1233": {"type": "string"}, "9632": {"type": "string"}}, "required": ["1233", "9632"]}, "timeto": {"type": "object", "properties": {"1233": {"type": "number"}, "9632": {"type": "number"}}, "required": ["1233", "9632"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Pour chocolate syrup into a large glass. Pour milk on top of chocolate syrup; stir until completely incorporated and smooth, about 30 seconds.", "Slowly pour seltzer water into chocolate mixture, stirring constantly. Mixture will foam and bubble. Serve immediately."], "ingredients" : ["1 ounce chocolate syrup", "1 ounce cold milk", "8 ounces chilled seltzer water"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Chef John's Chocolate Egg Cream", "url" : "http://allrecipes.com/recipe/221951/chef-johns-chocolate-egg-cream/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"station" : [{"pref_cd" : 40, "line_cd" : 11917, "line_name" : "JR\u9999\u690e\u7dda(\u9999\u690e\uff5e\u5b87\u7f8e)", "station_cd" : 1191710, "station_g_cd" : 1191710, "station_name" : "\u65b0\u539f", "lon" : 130.508835, "lat" : 33.579061}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1982, 13], [1983, 9], [1984, 5], [1985, 6], [1986, 13], [1987, 15], [1988, 12], [1989, 15], [1990, 9], [1991, 14], [1992, 19], [1993, 23], [1994, 18], [1995, 99], [1996, 182], [1997, 178], [1998, 170], [1999, 133], [2000, 171], [2001, 148], [2002, 169], [2003, 163], [2004, 153], [2005, 137], [2006, 192], [2007, 193], [2008, 207], [2009, 223], [2010, 223], [2011, 208], [2012, 205], [2013, 160], [2014, 171]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"_groupId": {"type": "string"}, "_qualifiedId": {"type": "string"}, "_qualifiedName": {"type": "string"}, "id": {"type": "string"}, "_editable": {"type": "boolean"}, "_creator": {"type": "string"}, "_modified": {"type": "string"}, "_modifier": {"type": "string"}, "_created": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "ownerId": {"type": "string"}, "_appliedStereotypeIds": {"type": "array", "items": {"type": "string"}}, "_read": {"type": "string"}, "_displayedElements": {"type": "array", "items": {"type": "string"}}, "_contents": {"type": "object", "properties": {"operand": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "instanceId": {"type": "string"}}, "required": ["type", "instanceId"]}}, "type": {"type": "string"}}, "required": ["operand", "type"]}, "_allowedElements": {"type": "array", "items": {}}, "_contains": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["_groupId", "_qualifiedId", "_qualifiedName", "id", "_editable", "_creator", "_modified", "_modifier", "_created", "name", "documentation", "ownerId", "_appliedStereotypeIds", "_read", "_displayedElements", "_contents", "_allowedElements", "_contains", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_groupId" : "vetest", "_qualifiedId" : "/vetest/PROJECT-21bbdceb-a188-45d9-a585-b30bba346175/_17_0_5_1_407019f_1402422593316_200143_16117/_17_0_5_1_407019f_1402422683509_36078_16169/MMS_1442345799882_df10c451-ab83-4b99-8e40-0a8e04b38b9d", "_qualifiedName" : "/vetest/VETest/adasdsddd3/Test64 sgfa/test opaquepara", "id" : "MMS_1442345799882_df10c451-ab83-4b99-8e40-0a8e04b38b9d", "_editable" : true, "_creator" : "dlam", "_modified" : "2015-12-17T12:45:15.316-0800", "_modifier" : "dlam", "_created" : "Thu Dec 17 12:25:39 PST 2015", "name" : "test opaquepara", "documentation" : "", "ownerId" : "_17_0_5_1_407019f_1402422683509_36078_16169", "_appliedStereotypeIds" : ["_17_0_1_232f03dc_1325612611695_581988_21583"], "_read" : "2016-02-09T13:57:59.842-0800", "_displayedElements" : ["MMS_1442345799882_df10c451-ab83-4b99-8e40-0a8e04b38b9d"], "_contents" : {"operand" : [{"type" : "InstanceValue", "instanceId" : "MMS_1442345802606_38e60e27-d4b1-47ce-b876-840a2b7e9b3c"}], "type" : "Expression"}, "_allowedElements" : [], "_contains" : [], "type" : "Class"}
json_instruct
{"type": "object", "properties": {"_groupId": {"type": "string"}, "_qualifiedId": {"type": "string"}, "_qualifiedName": {"type": "string"}, "id": {"type": "string"}, "_editable": {"type": "boolean"}, "_creator": {"type": "string"}, "_modified": {"type": "string"}, "_modifier": {"type": "string"}, "_created": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "ownerId": {"type": "string"}, "_appliedStereotypeIds": {"type": "array", "items": {"type": "string"}}, "_read": {"type": "string"}, "_displayedElements": {"type": "array", "items": {"type": "string"}}, "_contents": {"type": "object", "properties": {"operand": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "instanceId": {"type": "string"}}, "required": ["type", "instanceId"]}}, "type": {"type": "string"}}, "required": ["operand", "type"]}, "_allowedElements": {"type": "array", "items": {}}, "_contains": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["_groupId", "_qualifiedId", "_qualifiedName", "id", "_editable", "_creator", "_modified", "_modifier", "_created", "name", "documentation", "ownerId", "_appliedStereotypeIds", "_read", "_displayedElements", "_contents", "_allowedElements", "_contains", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "apierror-discussiontools-commentid-notfound": {"type": "string"}, "apierror-discussiontools-commentname-ambiguous": {"type": "string"}, "apierror-discussiontools-commentname-notfound": {"type": "string"}, "apierror-discussiontools-subscription-failed-add": {"type": "string"}, "apierror-discussiontools-subscription-failed-remove": {"type": "string"}, "apihelp-discussiontools-param-oldid": {"type": "string"}, "apihelp-discussiontools-paramvalue-paction-transcludedfrom": {"type": "string"}, "apihelp-discussiontools-summary": {"type": "string"}, "apihelp-discussiontoolsedit-param-commentid": {"type": "string"}, "apihelp-discussiontoolsedit-param-html": {"type": "string"}, "apihelp-discussiontoolsedit-param-wikitext": {"type": "string"}, "apihelp-discussiontoolsedit-summary": {"type": "string"}}, "required": ["@metadata", "apierror-discussiontools-commentid-notfound", "apierror-discussiontools-commentname-ambiguous", "apierror-discussiontools-commentname-notfound", "apierror-discussiontools-subscription-failed-add", "apierror-discussiontools-subscription-failed-remove", "apihelp-discussiontools-param-oldid", "apihelp-discussiontools-paramvalue-paction-transcludedfrom", "apihelp-discussiontools-summary", "apihelp-discussiontoolsedit-param-commentid", "apihelp-discussiontoolsedit-param-html", "apihelp-discussiontoolsedit-param-wikitext", "apihelp-discussiontoolsedit-summary"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["MarcoAurelio", "Rodney Araujo", "Suecarmol", "ZebaX2010"]}, "apierror-discussiontools-commentid-notfound" : "No se encontr\u00f3 el comentario con ID '$1'.", "apierror-discussiontools-commentname-ambiguous" : "Se encontraron m\u00faltiples comentarios con el nombre '$1', \u00fasese el identificador en su lugar.", "apierror-discussiontools-commentname-notfound" : "El comentario con el nombre '$1' no ha sido encontrado.", "apierror-discussiontools-subscription-failed-add" : "No se puede suscribir a este tema.", "apierror-discussiontools-subscription-failed-remove" : "No se puede desuscribir de este tema.", "apihelp-discussiontools-param-oldid" : "El n\u00famero de revisi\u00f3n a usar (por defecto la revisi\u00f3n m\u00e1s reciente).", "apihelp-discussiontools-paramvalue-paction-transcludedfrom" : "Regresa t\u00edtulos de p\u00e1ginas de la cual cada comentario en la p\u00e1gina dada es transclu\u00edda.", "apihelp-discussiontools-summary" : "Devuelve los metadatos requeridos para inicializar las herramientas de discusi\u00f3n.", "apihelp-discussiontoolsedit-param-commentid" : "ID del comentario a responder. Es usado solamente cuando <var>paction</var> es <var>addcomment</var>. Sobrescribe <var>commentname</var> .", "apihelp-discussiontoolsedit-param-html" : "Contenido a publicar, como HTML. No puede ser usado junto a <var>wikitext</var>.", "apihelp-discussiontoolsedit-param-wikitext" : "Contenido a publicar, como wikitexto. No puede ser usado junto a <var>html</var>.", "apihelp-discussiontoolsedit-summary" : "Publicar un mensaje en una p\u00e1gina de discusi\u00f3n."}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "apierror-discussiontools-commentid-notfound": {"type": "string"}, "apierror-discussiontools-commentname-ambiguous": {"type": "string"}, "apierror-discussiontools-commentname-notfound": {"type": "string"}, "apierror-discussiontools-subscription-failed-add": {"type": "string"}, "apierror-discussiontools-subscription-failed-remove": {"type": "string"}, "apihelp-discussiontools-param-oldid": {"type": "string"}, "apihelp-discussiontools-paramvalue-paction-transcludedfrom": {"type": "string"}, "apihelp-discussiontools-summary": {"type": "string"}, "apihelp-discussiontoolsedit-param-commentid": {"type": "string"}, "apihelp-discussiontoolsedit-param-html": {"type": "string"}, "apihelp-discussiontoolsedit-param-wikitext": {"type": "string"}, "apihelp-discussiontoolsedit-summary": {"type": "string"}}, "required": ["@metadata", "apierror-discussiontools-commentid-notfound", "apierror-discussiontools-commentname-ambiguous", "apierror-discussiontools-commentname-notfound", "apierror-discussiontools-subscription-failed-add", "apierror-discussiontools-subscription-failed-remove", "apihelp-discussiontools-param-oldid", "apihelp-discussiontools-paramvalue-paction-transcludedfrom", "apihelp-discussiontools-summary", "apihelp-discussiontoolsedit-param-commentid", "apihelp-discussiontoolsedit-param-html", "apihelp-discussiontoolsedit-param-wikitext", "apihelp-discussiontoolsedit-summary"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 70340, "cartId" : "2c957768-d968-4193-999f-597ad5b08eea", "preferredProducts" : [4452, 2261, 443], "productReviews" : [{"productId" : 1842, "reviewText" : "My peacock loves to play with it.", "reviewDate" : "2018-05-08T15:11:31.9348188+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"[email protected]": {"type": "string"}}, "required": ["[email protected]"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {"type": "string"}}}, "required": ["AFNetworking"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "public_header_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CTFont", "version" : "0.2.0", "summary" : "A short description of CTFont.", "description" : "TODO: Add long description of the pod here.", "homepage" : "https://github.com/[email protected]/CTFont", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"[email protected]" : "[email protected]"}, "source" : {"git" : "https://github.com/[email protected]/CTFont.git", "tag" : "0.2.0"}, "platforms" : {"ios" : "8.0"}, "source_files" : "CTFont/Classes/**/*", "public_header_files" : "CTFont/Classes/**/*.h", "dependencies" : {"AFNetworking" : ["~> 2.3"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"[email protected]": {"type": "string"}}, "required": ["[email protected]"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {"type": "string"}}}, "required": ["AFNetworking"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "public_header_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "includePath"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"configurations" : [{"name" : "Linux", "includePath" : ["${workspaceFolder}/**", "${HOME}/CoppeliaSim_Edu_V4_1_0_Ubuntu20_04/programming/**"]}], "version" : 4}
json_instruct
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "includePath"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : "KAMARON", "frequency" : 183, "males" : "94.53551912568307 %", "females" : "5.46448087431694 %"}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["451123203001", "\u67f3\u5bb6\u793e\u533a\u5c45\u59d4\u4f1a", "210", "0"], ["451123203201", "\u51e4\u5cad\u6751\u59d4\u4f1a", "220", "0"], ["451123203202", "\u957f\u6eaa\u6c5f\u6751\u59d4\u4f1a", "220", "0"], ["451123203203", "\u65b0\u77f3\u6751\u59d4\u4f1a", "220", "0"], ["451123203204", "\u4e0b\u6e7e\u6751\u59d4\u4f1a", "220", "0"], ["451123203205", "\u77f3\u575d\u6751\u59d4\u4f1a", "220", "0"], ["451123203206", "\u9f99\u5ca9\u6751\u59d4\u4f1a", "220", "0"], ["451123203207", "\u6d1e\u4e95\u6751\u59d4\u4f1a", "220", "0"], ["451123203208", "\u6d0b\u65b0\u6751\u59d4\u4f1a", "220", "0"], ["451123203209", "\u5927\u6e7e\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 4196, "redacted" : false, "hash" : 297154725, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"headers": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "row_matrix": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "shared_str_table": {"type": "array", "items": {"type": "string"}}}, "required": ["headers", "row_matrix", "shared_str_table"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"headers" : [["color_id", "id", "str"], ["red", "id", "int"], ["green", "id", "int"], ["blue", "id", "int"]], "row_matrix" : [[1, 2, 2, 2], [3, 4, 2, 2], [5, 2, 4, 2], [6, 2, 2, 4], [7, 4, 4, 4]], "shared_str_table" : ["", "black", "0", "red", "255", "green", "blue", "white"]}
json_instruct
{"type": "object", "properties": {"headers": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "row_matrix": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "shared_str_table": {"type": "array", "items": {"type": "string"}}}, "required": ["headers", "row_matrix", "shared_str_table"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "OR HOPES IN THE NEXT, AS FOOD TO LIFE:", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/4346.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "test": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}}, "required": ["clean", "start", "lint", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/reflect-metadata": {"type": "string"}, "fsrun": {"type": "string"}, "shx": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}, "typescript-bundle": {"type": "string"}}, "required": ["@types/node", "@types/reflect-metadata", "fsrun", "shx", "tslint", "typescript", "typescript-bundle"]}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "string"}}, "required": ["reflect-metadata"]}}, "required": ["name", "version", "description", "test", "scripts", "repository", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ironcap", "version" : "1.0.0", "description" : "An inversion of control library for TypeScript", "test" : "node test", "scripts" : {"clean" : "node tasks clean", "start" : "node tasks start", "lint" : "node tasks lint", "build" : "node tasks build"}, "repository" : {"type" : "git", "url" : "https://github.com/sinclairzx81/project-name"}, "author" : "sinclairzx81", "license" : "MIT", "devDependencies" : {"@types/node" : "^8.0.7", "@types/reflect-metadata" : "0.0.5", "fsrun" : "^0.9.4", "shx" : "^0.2.2", "tslint" : "^5.9.1", "typescript" : "^2.4.2", "typescript-bundle" : "^0.8.6"}, "dependencies" : {"reflect-metadata" : "^0.1.10"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "test": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}}, "required": ["clean", "start", "lint", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/reflect-metadata": {"type": "string"}, "fsrun": {"type": "string"}, "shx": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}, "typescript-bundle": {"type": "string"}}, "required": ["@types/node", "@types/reflect-metadata", "fsrun", "shx", "tslint", "typescript", "typescript-bundle"]}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "string"}}, "required": ["reflect-metadata"]}}, "required": ["name", "version", "description", "test", "scripts", "repository", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["gl-catmull-clark", "gl-particles", "gl-render-cubemap", "glsl-cos-palette", "glsl-gradient-palette", "glsl-raytrace", "glsl-sdf-normal", "glslify", "glslify-client", "glslify-promise", "pnp-gui", "three-bmfont-text"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"entityName": {"type": "string"}, "metric": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "amount": {"type": "number"}}, "required": ["type", "count", "amount"]}}, "required": ["entityName", "metric"]}}, "pincodes": {"type": "array", "items": {"type": "object", "properties": {"entityName": {"type": "string"}, "metric": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "amount": {"type": "number"}}, "required": ["type", "count", "amount"]}}, "required": ["entityName", "metric"]}}}, "required": ["states", "districts", "pincodes"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"entityName" : "ernakulam", "metric" : {"type" : "TOTAL", "count" : 521535, "amount" : 992297917.6619761}}, {"entityName" : "malappuram", "metric" : {"type" : "TOTAL", "count" : 268993, "amount" : 394434596.38289905}}, {"entityName" : "kozhikode", "metric" : {"type" : "TOTAL", "count" : 262368, "amount" : 432276266.4294082}}, {"entityName" : "thiruvananthapuram", "metric" : {"type" : "TOTAL", "count" : 241695, "amount" : 447463532.2875792}}, {"entityName" : "thrissur", "metric" : {"type" : "TOTAL", "count" : 194698, "amount" : 323326151.5548469}}, {"entityName" : "palakkad", "metric" : {"type" : "TOTAL", "count" : 148865, "amount" : 247495543.94612932}}, {"entityName" : "kottayam", "metric" : {"type" : "TOTAL", "count" : 132766, "amount" : 219583423.42327893}}, {"entityName" : "kannur", "metric" : {"type" : "TOTAL", "count" : 123543, "amount" : 190249058.5368228}}, {"entityName" : "kollam", "metric" : {"type" : "TOTAL", "count" : 107011, "amount" : 158093455.3837409}}, {"entityName" : "alappuzha", "metric" : {"type" : "TOTAL", "count" : 101141, "amount" : 157158524.65667993}}], "pincodes" : [{"entityName" : "682035", "metric" : {"type" : "TOTAL", "count" : 78839, "amount" : 161633712.1501858}}, {"entityName" : "676517", "metric" : {"type" : "TOTAL", "count" : 53515, "amount" : 88663445.2241711}}, {"entityName" : "673020", "metric" : {"type" : "TOTAL", "count" : 40292, "amount" : 75984073.30868506}}, {"entityName" : "680001", "metric" : {"type" : "TOTAL", "count" : 38451, "amount" : 72684138.14515224}}, {"entityName" : "686001", "metric" : {"type" : "TOTAL", "count" : 30333, "amount" : 57600105.62318556}}, {"entityName" : "682042", "metric" : {"type" : "TOTAL", "count" : 28431, "amount" : 47621370.06745951}}, {"entityName" : "695014", "metric" : {"type" : "TOTAL", "count" : 26794, "amount" : 57392012.69495672}}, {"entityName" : "678001", "metric" : {"type" : "TOTAL", "count" : 26636, "amount" : 49834603.16052181}}, {"entityName" : "673585", "metric" : {"type" : "TOTAL", "count" : 21014, "amount" : 39515052.757997066}}, {"entityName" : "691001", "metric" : {"type" : "TOTAL", "count" : 20473, "amount" : 41187534.790603206}}]}, "responseTimestamp" : 1630501487661}
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"entityName": {"type": "string"}, "metric": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "amount": {"type": "number"}}, "required": ["type", "count", "amount"]}}, "required": ["entityName", "metric"]}}, "pincodes": {"type": "array", "items": {"type": "object", "properties": {"entityName": {"type": "string"}, "metric": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "amount": {"type": "number"}}, "required": ["type", "count", "amount"]}}, "required": ["entityName", "metric"]}}}, "required": ["states", "districts", "pincodes"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"pathDB": {"type": "string"}, "config": {"type": "object", "properties": {"miniBatchSize": {"type": "integer"}, "dimLatentVector": {"type": "integer"}}, "required": ["miniBatchSize", "dimLatentVector"]}}, "required": ["pathDB", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pathDB" : "./logos", "config" : {"miniBatchSize" : 8, "dimLatentVector" : 64}}
json_instruct
{"type": "object", "properties": {"pathDB": {"type": "string"}, "config": {"type": "object", "properties": {"miniBatchSize": {"type": "integer"}, "dimLatentVector": {"type": "integer"}}, "required": ["miniBatchSize", "dimLatentVector"]}}, "required": ["pathDB", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"900809151": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809152": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809153": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809154": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809155": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809156": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809157": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809158": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900809151", "900809152", "900809153", "900809154", "900809155", "900809156", "900809157", "900809158"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900809151" : {"nama" : "TPS 1", "dapil" : [1302, 11302, 2130504]}, "900809152" : {"nama" : "TPS 2", "dapil" : [1302, 11302, 2130504]}, "900809153" : {"nama" : "TPS 3", "dapil" : [1302, 11302, 2130504]}, "900809154" : {"nama" : "TPS 4", "dapil" : [1302, 11302, 2130504]}, "900809155" : {"nama" : "TPS 5", "dapil" : [1302, 11302, 2130504]}, "900809156" : {"nama" : "TPS 6", "dapil" : [1302, 11302, 2130504]}, "900809157" : {"nama" : "TPS 7", "dapil" : [1302, 11302, 2130504]}, "900809158" : {"nama" : "TPS 8", "dapil" : [1302, 11302, 2130504]}}
json_instruct
{"type": "object", "properties": {"900809151": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809152": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809153": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809154": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809155": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809156": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809157": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900809158": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900809151", "900809152", "900809153", "900809154", "900809155", "900809156", "900809157", "900809158"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"n_RU": {"type": "integer"}, "LA": {"type": "number"}, "LM": {"type": "number"}, "LB": {"type": "number"}, "SL0": {"type": "number"}, "Lsmooth": {"type": "number"}}, "required": ["n_RU", "LA", "LM", "LB", "SL0", "Lsmooth"]}, "RU_steady_state": {"type": "object", "properties": {"mu": {"type": "integer"}, "gamma": {"type": "integer"}, "Q": {"type": "integer"}, "Kd0": {"type": "number"}, "alphaKd": {"type": "integer"}}, "required": ["mu", "gamma", "Q", "Kd0", "alphaKd"]}, "RU_kinetics": {"type": "object", "properties": {"Koff": {"type": "integer"}, "Kbasic": {"type": "integer"}}, "required": ["Koff", "Kbasic"]}, "XB_cycling": {"type": "object", "properties": {"mu0_fP": {"type": "number"}, "mu1_fP": {"type": "number"}, "r0": {"type": "number"}, "alpha": {"type": "number"}}, "required": ["mu0_fP", "mu1_fP", "r0", "alpha"]}, "upscaling": {"type": "object", "properties": {"a_XB": {"type": "number"}}, "required": ["a_XB"]}}, "required": ["geometry", "RU_steady_state", "RU_kinetics", "XB_cycling", "upscaling"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"geometry" : {"n_RU" : 32, "LA" : 1.25, "LM" : 1.65, "LB" : 0.18, "SL0" : 2.2, "Lsmooth" : 0.05}, "RU_steady_state" : {"mu" : 10, "gamma" : 20, "Q" : 3, "Kd0" : 1.622, "alphaKd" : 0}, "RU_kinetics" : {"Koff" : 120, "Kbasic" : 28}, "XB_cycling" : {"mu0_fP" : 57.416, "mu1_fP" : 1.368, "r0" : 134.31, "alpha" : 25.184}, "upscaling" : {"a_XB" : 22894.0}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"n_RU": {"type": "integer"}, "LA": {"type": "number"}, "LM": {"type": "number"}, "LB": {"type": "number"}, "SL0": {"type": "number"}, "Lsmooth": {"type": "number"}}, "required": ["n_RU", "LA", "LM", "LB", "SL0", "Lsmooth"]}, "RU_steady_state": {"type": "object", "properties": {"mu": {"type": "integer"}, "gamma": {"type": "integer"}, "Q": {"type": "integer"}, "Kd0": {"type": "number"}, "alphaKd": {"type": "integer"}}, "required": ["mu", "gamma", "Q", "Kd0", "alphaKd"]}, "RU_kinetics": {"type": "object", "properties": {"Koff": {"type": "integer"}, "Kbasic": {"type": "integer"}}, "required": ["Koff", "Kbasic"]}, "XB_cycling": {"type": "object", "properties": {"mu0_fP": {"type": "number"}, "mu1_fP": {"type": "number"}, "r0": {"type": "number"}, "alpha": {"type": "number"}}, "required": ["mu0_fP", "mu1_fP", "r0", "alpha"]}, "upscaling": {"type": "object", "properties": {"a_XB": {"type": "number"}}, "required": ["a_XB"]}}, "required": ["geometry", "RU_steady_state", "RU_kinetics", "XB_cycling", "upscaling"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "\u3010Ray MMD\u3011 No Title | TDA Dress - Yowane Haku \u5f31\u97f3\u30cf\u30af + Hatsune Miku \u521d\u97f3\u30df\u30af", "author" : "guenjan95", "description" : "FanpageundefinedFacebookundefined:undefined<aundefinedhref='https://www.facebook.com/kawaiigirlmmd/'>https://www.facebook.com/kawaiigirlmmd/</a><br>Myundefinedplaylistundefined:undefined<aundefinedhref='https://www.youtube.com/watch?v=WUq40z9GxDQ&amp;list=PL2yO6RcMTdmbNX_pX7Bp7b3kiDm78ipBy'>https://www.youtube.com/watch?v=WUq40z9GxDQ&amp;list=PL2yO6RcMTdmbNX_pX7Bp7b...</a><br>\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500<br>Contactundefinedmeundefined:undefined<aundefinedhref='mailto:[email protected]'>[email protected]</a><br>\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500<br>Likeundefinedandundefinedsubcribeundefinedmyundefinedchannelundefinedwithundefinedthisundefinedlinkundefined:undefinedgoo.gl/s4s55f<br>Haveundefinedfunundefinedwithundefinedmyundefinedvideoundefined!<br>\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500<br>MusicundefinedofundefinedRayundefinedMMDundefined:undefinedundefinedNoundefinedTitle.<br>Modelundefined:undefinedTDAundefinedDressundefined-undefinedYowaneundefinedHakuundefined\u5f31\u97f3\u30cf\u30afundefined+undefinedHatsuneundefinedMikuundefined\u521d\u97f3\u30df\u30afundefined|undefinedCreditundefined:TDA,undefinedsamsink.<br>EMP\u6a39\u6728undefinedbyundefinedKayutega.", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/jXeheiecxMY.jpg?itok=JhTPzVf9", "download" : "https://www.iwara.tv/api/video/alvqgt0oqoc8l49qj", "origin" : "https://www.iwara.tv/videos/alvqgt0oqoc8l49qj"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : 1973, "sex" : "F", "n" : 9, "prop" : 5.79e-06}, {"year" : 1974, "sex" : "F", "n" : 18, "prop" : 0}, {"year" : 1975, "sex" : "F", "n" : 16, "prop" : 0}, {"year" : 1976, "sex" : "F", "n" : 26, "prop" : 0}, {"year" : 1977, "sex" : "F", "n" : 24, "prop" : 0}, {"year" : 1978, "sex" : "F", "n" : 29, "prop" : 0}, {"year" : 1979, "sex" : "F", "n" : 24, "prop" : 0}, {"year" : 1980, "sex" : "F", "n" : 37, "prop" : 0}, {"year" : 1981, "sex" : "F", "n" : 36, "prop" : 0}, {"year" : 1982, "sex" : "F", "n" : 43, "prop" : 0}, {"year" : 1983, "sex" : "F", "n" : 31, "prop" : 0}, {"year" : 1984, "sex" : "F", "n" : 61, "prop" : 0}, {"year" : 1985, "sex" : "F", "n" : 40, "prop" : 0}, {"year" : 1986, "sex" : "F", "n" : 48, "prop" : 0}, {"year" : 1987, "sex" : "F", "n" : 47, "prop" : 0}, {"year" : 1988, "sex" : "F", "n" : 60, "prop" : 0}, {"year" : 1989, "sex" : "F", "n" : 70, "prop" : 0}, {"year" : 1990, "sex" : "F", "n" : 54, "prop" : 0}, {"year" : 1991, "sex" : "F", "n" : 77, "prop" : 0}, {"year" : 1992, "sex" : "F", "n" : 61, "prop" : 0}, {"year" : 1993, "sex" : "F", "n" : 72, "prop" : 0}, {"year" : 1994, "sex" : "F", "n" : 76, "prop" : 0}, {"year" : 1995, "sex" : "F", "n" : 60, "prop" : 0}, {"year" : 1996, "sex" : "F", "n" : 26, "prop" : 0}, {"year" : 1997, "sex" : "F", "n" : 43, "prop" : 0}, {"year" : 1998, "sex" : "F", "n" : 28, "prop" : 0}, {"year" : 1999, "sex" : "F", "n" : 24, "prop" : 0}, {"year" : 2000, "sex" : "F", "n" : 33, "prop" : 0}, {"year" : 2001, "sex" : "F", "n" : 15, "prop" : 7.58e-06}, {"year" : 2002, "sex" : "F", "n" : 10, "prop" : 5.07e-06}, {"year" : 2003, "sex" : "F", "n" : 6, "prop" : 2.99e-06}, {"year" : 2004, "sex" : "F", "n" : 19, "prop" : 9.42e-06}, {"year" : 2005, "sex" : "F", "n" : 14, "prop" : 6.9e-06}, {"year" : 2006, "sex" : "F", "n" : 9, "prop" : 4.31e-06}, {"year" : 2007, "sex" : "F", "n" : 10, "prop" : 4.73e-06}, {"year" : 2008, "sex" : "F", "n" : 7, "prop" : 3.36e-06}, {"year" : 2009, "sex" : "F", "n" : 6, "prop" : 2.97e-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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "keywords", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "js-set-manipulation", "version" : "1.1.0", "description" : "A set of useful functions that give easier control over set manipulation", "main" : "index.js", "scripts" : {"test" : "jest --coverage --collectCoverage=true"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rawad663/js-set-manipulation.git"}, "author" : "Rawad Karam <[email protected]>", "license" : "MIT", "keywords" : ["sets", "union", "intersection", "difference", "manipulation"], "bugs" : {"url" : "https://github.com/rawad663/js-set-manipulation/issues"}, "homepage" : "https://github.com/rawad663/js-set-manipulation#readme", "devDependencies" : {"jest" : "^24.7.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"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "keywords", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "OneForArt #1253 - Gordons Green", "description" : "A Gordons Green pixel.", "file_url" : "https://ipfs.io/ipfs/bafkreibredf6svmxv2qoc6jvxlhxno62b2lx3txl6cldt2g5phhuh6kbje", "custom_fields" : {"edition" : 1, "date" : 1642619894221, "compiler" : "HashLips Art Engine"}, "attributes" : [{"trait_type" : "name", "value" : "Gordons Green"}, {"trait_type" : "color_id", "value" : "1253"}, {"trait_type" : "hex", "value" : "#0B1107"}, {"trait_type" : "rgb", "value" : "(11, 17, 7)"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "file_url": {"type": "string"}, "custom_fields": {"type": "object", "properties": {"edition": {"type": "integer"}, "date": {"type": "integer"}, "compiler": {"type": "string"}}, "required": ["edition", "date", "compiler"]}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "file_url", "custom_fields", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1987, 6], [1988, 5], [1989, 11], [1990, 8], [1991, 8], [1992, 20], [1993, 17], [1994, 29], [1995, 20], [1996, 37], [1997, 32], [1998, 30], [1999, 19], [2000, 41], [2001, 38], [2002, 35], [2003, 20], [2004, 30], [2005, 18], [2006, 34], [2007, 24], [2008, 31], [2009, 23], [2010, 17], [2011, 15], [2012, 20], [2013, 12], [2014, 13]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"@context": {"type": "array", "items": {"type": "string"}}, "type": {"type": "array", "items": {"type": "string"}}, "verifiableCredential": {"type": "array", "items": {}}, "proof": {"type": "object", "properties": {"type": {"type": "string"}, "proofPurpose": {"type": "string"}, "verificationMethod": {"type": "string"}, "created": {"type": "string"}, "challenge": {"type": "string"}, "jws": {"type": "string"}}, "required": ["type", "proofPurpose", "verificationMethod", "created", "challenge", "jws"]}, "presentation_submission": {"type": "object", "properties": {"id": {"type": "string"}, "definition_id": {"type": "string"}, "descriptor_map": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "format": {"type": "string"}, "path": {"type": "string"}}, "required": ["id", "format", "path"]}}}, "required": ["id", "definition_id", "descriptor_map"]}}, "required": ["@context", "type", "verifiableCredential", "proof", "presentation_submission"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@context" : ["https://www.w3.org/2018/credentials/v1"], "type" : ["VerifiablePresentation"], "verifiableCredential" : [], "proof" : {"type" : "Ed25519Signature2018", "proofPurpose" : "authentication", "verificationMethod" : "did:key:z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL#z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL", "created" : "2021-04-23T16:04:37.759497", "challenge" : "1f44d55f-f161-4938-a659-f8026467f126", "jws" : "eyJhbGciOiAiRWREU0EiLCAiYjY0IjogZmFsc2UsICJjcml0IjogWyJiNjQiXX0..qljm3LhN5vL-qv-4j3Hz6dF7Wgnx8boBAWJONrRAQNmvhBwUkI2_AEvDSbtNNTskz4i8vzzvLX4Ixl75RdoZCQ"}, "presentation_submission" : {"id" : "f9513f33-4ad4-4359-af91-783e052b5ed8", "definition_id" : "32f54163-7166-48f1-93d8-ff217bdb0653", "descriptor_map" : [{"id" : "citizenship_input_1", "format" : "ldp_vp", "path" : "$.verifiableCredential[0]"}]}}
json_instruct
{"type": "object", "properties": {"@context": {"type": "array", "items": {"type": "string"}}, "type": {"type": "array", "items": {"type": "string"}}, "verifiableCredential": {"type": "array", "items": {}}, "proof": {"type": "object", "properties": {"type": {"type": "string"}, "proofPurpose": {"type": "string"}, "verificationMethod": {"type": "string"}, "created": {"type": "string"}, "challenge": {"type": "string"}, "jws": {"type": "string"}}, "required": ["type", "proofPurpose", "verificationMethod", "created", "challenge", "jws"]}, "presentation_submission": {"type": "object", "properties": {"id": {"type": "string"}, "definition_id": {"type": "string"}, "descriptor_map": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "format": {"type": "string"}, "path": {"type": "string"}}, "required": ["id", "format", "path"]}}}, "required": ["id", "definition_id", "descriptor_map"]}}, "required": ["@context", "type", "verifiableCredential", "proof", "presentation_submission"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/js/admins.js": {"type": "string"}, "/js/roles.js": {"type": "string"}, "/js/users.js": {"type": "string"}, "/js/categories.js": {"type": "string"}, "/css/default.css": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/js/admins.js", "/js/roles.js", "/js/users.js", "/js/categories.js", "/css/default.css", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js", "/js/admins.js" : "/js/admins.js", "/js/roles.js" : "/js/roles.js", "/js/users.js" : "/js/users.js", "/js/categories.js" : "/js/categories.js", "/css/default.css" : "/css/default.css", "/css/app.css" : "/css/app.css"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/js/admins.js": {"type": "string"}, "/js/roles.js": {"type": "string"}, "/js/users.js": {"type": "string"}, "/js/categories.js": {"type": "string"}, "/css/default.css": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/js/admins.js", "/js/roles.js", "/js/users.js", "/js/categories.js", "/css/default.css", "/css/app.css"], "$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": {"PlateNumb": {"type": "string"}, "OperatorID": {"type": "string"}, "RouteUID": {"type": "string"}, "RouteID": {"type": "string"}, "RouteName": {"type": "object", "properties": {"Zh_tw": {"type": "string"}}, "required": ["Zh_tw"]}, "SubRouteUID": {"type": "string"}, "SubRouteID": {"type": "string"}, "SubRouteName": {"type": "object", "properties": {"Zh_tw": {"type": "string"}}, "required": ["Zh_tw"]}, "Direction": {"type": "integer"}, "BusPosition": {"type": "object", "properties": {"PositionLat": {"type": "number"}, "PositionLon": {"type": "number"}}, "required": ["PositionLat", "PositionLon"]}, "Speed": {"type": "integer"}, "Azimuth": {"type": "integer"}, "DutyStatus": {"type": "integer"}, "BusStatus": {"type": "integer"}, "MessageType": {"type": "integer"}, "GPSTime": {"type": "string"}, "SrcUpdateTime": {"type": "string"}, "UpdateTime": {"type": "string"}}, "required": ["PlateNumb", "OperatorID", "RouteUID", "RouteID", "RouteName", "SubRouteUID", "SubRouteID", "SubRouteName", "Direction", "BusPosition", "Speed", "Azimuth", "DutyStatus", "BusStatus", "MessageType", "GPSTime", "SrcUpdateTime", "UpdateTime"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"PlateNumb" : "068-U9", "OperatorID" : "10130", "RouteUID" : "TNN10262", "RouteID" : "10262", "RouteName" : {"Zh_tw" : "H31"}, "SubRouteUID" : "TNN10262", "SubRouteID" : "10262", "SubRouteName" : {"Zh_tw" : "H31"}, "Direction" : 1, "BusPosition" : {"PositionLat" : 22.98498, "PositionLon" : 120.210978}, "Speed" : 34, "Azimuth" : 318, "DutyStatus" : 1, "BusStatus" : 0, "MessageType" : 0, "GPSTime" : "2017-10-23T23:42:49+08:00", "SrcUpdateTime" : "2017-10-23T23:42:55+08:00", "UpdateTime" : "2017-10-23T23:42:57+08:00"}, {"PlateNumb" : "363-FT", "OperatorID" : "10021", "RouteUID" : "TNN10450", "RouteID" : "10450", "RouteName" : {"Zh_tw" : "0\u5de6"}, "SubRouteUID" : "TNN10450", "SubRouteID" : "10450", "SubRouteName" : {"Zh_tw" : "0\u5de6"}, "Direction" : 1, "BusPosition" : {"PositionLat" : 23.003265, "PositionLon" : 120.206608}, "Speed" : 0, "Azimuth" : 323, "DutyStatus" : 1, "BusStatus" : 0, "MessageType" : 0, "GPSTime" : "2017-10-23T23:31:02+08:00", "SrcUpdateTime" : "2017-10-23T23:42:55+08:00", "UpdateTime" : "2017-10-23T23:42:57+08:00"}, {"PlateNumb" : "597-FS", "OperatorID" : "10130", "RouteUID" : "TNN10262", "RouteID" : "10262", "RouteName" : {"Zh_tw" : "H31"}, "SubRouteUID" : "TNN10262", "SubRouteID" : "10262", "SubRouteName" : {"Zh_tw" : "H31"}, "Direction" : 1, "BusPosition" : {"PositionLat" : 22.942665, "PositionLon" : 120.249773}, "Speed" : 86, "Azimuth" : 287, "DutyStatus" : 1, "BusStatus" : 0, "MessageType" : 0, "GPSTime" : "2017-10-23T23:42:42+08:00", "SrcUpdateTime" : "2017-10-23T23:42:55+08:00", "UpdateTime" : "2017-10-23T23:42:57+08:00"}, {"PlateNumb" : "600-FS", "OperatorID" : "10130", "RouteUID" : "TNN10265", "RouteID" : "10265", "RouteName" : {"Zh_tw" : "H62"}, "SubRouteUID" : "TNN10265", "SubRouteID" : "10265", "SubRouteName" : {"Zh_tw" : "H62"}, "Direction" : 1, "BusPosition" : {"PositionLat" : 22.98056, "PositionLon" : 120.230145}, "Speed" : 36, "Azimuth" : 309, "DutyStatus" : 1, "BusStatus" : 0, "MessageType" : 0, "GPSTime" : "2017-10-23T23:42:54+08:00", "SrcUpdateTime" : "2017-10-23T23:42:55+08:00", "UpdateTime" : "2017-10-23T23:42:57+08:00"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"PlateNumb": {"type": "string"}, "OperatorID": {"type": "string"}, "RouteUID": {"type": "string"}, "RouteID": {"type": "string"}, "RouteName": {"type": "object", "properties": {"Zh_tw": {"type": "string"}}, "required": ["Zh_tw"]}, "SubRouteUID": {"type": "string"}, "SubRouteID": {"type": "string"}, "SubRouteName": {"type": "object", "properties": {"Zh_tw": {"type": "string"}}, "required": ["Zh_tw"]}, "Direction": {"type": "integer"}, "BusPosition": {"type": "object", "properties": {"PositionLat": {"type": "number"}, "PositionLon": {"type": "number"}}, "required": ["PositionLat", "PositionLon"]}, "Speed": {"type": "integer"}, "Azimuth": {"type": "integer"}, "DutyStatus": {"type": "integer"}, "BusStatus": {"type": "integer"}, "MessageType": {"type": "integer"}, "GPSTime": {"type": "string"}, "SrcUpdateTime": {"type": "string"}, "UpdateTime": {"type": "string"}}, "required": ["PlateNumb", "OperatorID", "RouteUID", "RouteID", "RouteName", "SubRouteUID", "SubRouteID", "SubRouteName", "Direction", "BusPosition", "Speed", "Azimuth", "DutyStatus", "BusStatus", "MessageType", "GPSTime", "SrcUpdateTime", "UpdateTime"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"product": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "price": {"type": "string"}, "rating": {"type": "number"}, "rating_count": {"type": "integer"}}, "required": ["id", "name", "description", "image", "price", "rating", "rating_count"]}}}, "required": ["product"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"product" : [{"id" : 1, "name" : "Tuborg Classic", "description" : "classisk \u00f8l med fremragende smag", "image" : "https://netpris.dk/media/catalog/product/cache/14/image/330x/9df78eab33525d08d6e5fb8d27136e95/t/u/tuborg_classic_33cl_d_se_-__05740600998523.jpg", "price" : "30", "rating" : 1.4, "rating_count" : 12}]}
json_instruct
{"type": "object", "properties": {"product": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "price": {"type": "string"}, "rating": {"type": "number"}, "rating_count": {"type": "integer"}}, "required": ["id", "name", "description", "image", "price", "rating", "rating_count"]}}}, "required": ["product"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"rules": {"type": "array", "items": {}}, "generic": {"type": "string"}}, "required": ["rules", "generic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rules" : [], "generic" : "ios"}
json_instruct
{"type": "object", "properties": {"rules": {"type": "array", "items": {}}, "generic": {"type": "string"}}, "required": ["rules", "generic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "temporomaxillary", "definition" : "Of or pertaining to both the temple or the temporal bone and the maxilla."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"next:dev": {"type": "string"}, "next:build": {"type": "string"}, "next:start": {"type": "string"}, "css:dev": {"type": "string"}, "css:build": {"type": "string"}, "lint": {"type": "string"}, "lint:fix": {"type": "string"}}, "required": ["next:dev", "next:build", "next:start", "css:dev", "css:build", "lint", "lint:fix"]}, "dependencies": {"type": "object", "properties": {"next": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["next", "prop-types", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "autoprefixer": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-import-resolver-typescript": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "laravel-mix": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "autoprefixer", "eslint", "eslint-config-airbnb", "eslint-import-resolver-typescript", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "laravel-mix", "postcss", "tailwindcss", "typescript"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "onlydevs.li-frontend-v2", "version" : "0.1.0", "private" : true, "scripts" : {"next:dev" : "next dev", "next:build" : "next build", "next:start" : "next start", "css:dev" : "mix watch", "css:build" : "mix build --production", "lint" : "eslint */**/*.ts{,x}", "lint:fix" : "eslint */**/*.ts{,x} --fix"}, "dependencies" : {"next" : "10.2.3", "prop-types" : "^15.7.2", "react" : "17.0.2", "react-dom" : "17.0.2"}, "devDependencies" : {"@types/react" : "17.0.8", "@typescript-eslint/eslint-plugin" : "^4.25.0", "@typescript-eslint/parser" : "^4.25.0", "autoprefixer" : "^10.2.6", "eslint" : "^7.27.0", "eslint-config-airbnb" : "^18.2.1", "eslint-import-resolver-typescript" : "^2.4.0", "eslint-plugin-import" : "^2.23.4", "eslint-plugin-jsx-a11y" : "^6.4.1", "eslint-plugin-react" : "^7.24.0", "eslint-plugin-react-hooks" : "^4.2.0", "laravel-mix" : "^6.0.19", "postcss" : "^8.3.0", "tailwindcss" : "^2.1.2", "typescript" : "4.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"next:dev": {"type": "string"}, "next:build": {"type": "string"}, "next:start": {"type": "string"}, "css:dev": {"type": "string"}, "css:build": {"type": "string"}, "lint": {"type": "string"}, "lint:fix": {"type": "string"}}, "required": ["next:dev", "next:build", "next:start", "css:dev", "css:build", "lint", "lint:fix"]}, "dependencies": {"type": "object", "properties": {"next": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["next", "prop-types", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "autoprefixer": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-import-resolver-typescript": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "laravel-mix": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "autoprefixer", "eslint", "eslint-config-airbnb", "eslint-import-resolver-typescript", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "laravel-mix", "postcss", "tailwindcss", "typescript"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "english_NIV", "book" : "Isaiah", "chapter" : 59, "verse" : 7, "word" : "Their feet rush into sin; they are swift to shed innocent blood. They pursue evil schemes; acts of violence mark their ways."}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"lamansky/phpcs": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["lamansky/phpcs", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lamansky/secure-shuffle", "description" : "Reorders array elements using cryptographically-secure randomization.", "type" : "library", "keywords" : ["cryptographically secure", "array", "randomization", "shuffle"], "homepage" : "https://github.com/lamansky/secure-shuffle", "license" : "MIT", "authors" : [{"name" : "Fr. John Lamansky", "homepage" : "https://lamansky.com"}], "require" : {"php" : ">=7.1.0"}, "require-dev" : {"lamansky/phpcs" : "^1", "phpunit/phpunit" : "^9"}, "autoload" : {"files" : ["src/functions.php"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"lamansky/phpcs": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["lamansky/phpcs", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {}}, "client": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "compatibilityLevel", "mixins", "client", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"required" : true, "minVersion" : "0.8", "package" : "me.luligabi.fuelinfo.mixin", "compatibilityLevel" : "JAVA_16", "mixins" : [], "client" : ["AbstractFurnaceScreenHandlerAccessor", "AbstractFurnaceScreenMixin", "BrewingStandScreenMixin"], "injectors" : {"defaultRequire" : 1}}
json_instruct
{"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {}}, "client": {"type": "array", "items": {"type": "string"}}, "injectors": {"type": "object", "properties": {"defaultRequire": {"type": "integer"}}, "required": ["defaultRequire"]}}, "required": ["required", "minVersion", "package", "compatibilityLevel", "mixins", "client", "injectors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "abbreviation": {"type": "string"}, "name": {"type": "string"}, "lower_name": {"type": "string"}}, "required": ["_id", "abbreviation", "name", "lower_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "dc61ac8b", "abbreviation" : "", "name" : "Rudbeckia flower distortion virus", "lower_name" : "rudbeckia flower distortion virus"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "abbreviation": {"type": "string"}, "name": {"type": "string"}, "lower_name": {"type": "string"}}, "required": ["_id", "abbreviation", "name", "lower_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"width" : 0.15504165, "rotation" : -0.1323533, "xCenter" : 0.577347, "yCenter" : 0.46244547, "height" : 0.2756296}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Country": {"type": "string"}, "director": {"type": "array", "items": {"type": "string"}}, "caste": {"type": "array", "items": {"type": "object", "properties": {"imdb_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["imdb_id", "name"]}}, "name": {"type": "string"}, "runtime": {"type": "integer"}, "Language": {"type": "array", "items": {"type": "string"}}, "movie_poster_url": {"type": "string"}, "gener": {"type": "array", "items": {"type": "string"}}, "bio": {"type": "string"}}, "required": ["Country", "director", "caste", "name", "runtime", "Language", "movie_poster_url", "gener", "bio"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Country" : "India", "director" : ["Yash Chopra"], "caste" : [{"imdb_id" : "nm0451321", "name" : "Shah Rukh Khan"}, {"imdb_id" : "nm0611552", "name" : "Rani Mukerji"}, {"imdb_id" : "nm0006689", "name" : "Preity Zinta"}, {"imdb_id" : "nm0451601", "name" : "Kiron Kher"}, {"imdb_id" : "nm0244890", "name" : "Divya Dutta"}, {"imdb_id" : "nm1224082", "name" : "Boman Irani"}, {"imdb_id" : "nm0451600", "name" : "Anupam Kher"}, {"imdb_id" : "nm0000821", "name" : "Amitabh Bachchan"}, {"imdb_id" : "nm0004564", "name" : "Hema Malini"}, {"imdb_id" : "nm0048075", "name" : "Manoj Bajpayee"}, {"imdb_id" : "nm0782247", "name" : "Zohra Sehgal"}, {"imdb_id" : "nm1012529", "name" : "S.M. Zaheer"}, {"imdb_id" : "nm0022758", "name" : "Tom Alter"}, {"imdb_id" : "nm0592782", "name" : "Akhilendra Mishra"}, {"imdb_id" : "nm0050187", "name" : "Arun Bali"}], "name" : "Veer-Zaara", "runtime" : 192, "Language" : ["Hindi", "Urdu", "Punjabi"], "movie_poster_url" : "https://m.media-amazon.com/images/M/MV5BY2VlOTc4ZjctYjVlMS00NDYwLWEwZjctZmYzZmVkNGU5NjNjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY268_CR5,0,182,268_AL__QL50.jpg", "gener" : ["Drama", "Family", "Musical"], "bio" : "Veer-Zaara is a saga of love, separation, courage and sacrifice. A love story that is an inspiration and will remain a legend forever."}
json_instruct
{"type": "object", "properties": {"Country": {"type": "string"}, "director": {"type": "array", "items": {"type": "string"}}, "caste": {"type": "array", "items": {"type": "object", "properties": {"imdb_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["imdb_id", "name"]}}, "name": {"type": "string"}, "runtime": {"type": "integer"}, "Language": {"type": "array", "items": {"type": "string"}}, "movie_poster_url": {"type": "string"}, "gener": {"type": "array", "items": {"type": "string"}}, "bio": {"type": "string"}}, "required": ["Country", "director", "caste", "name", "runtime", "Language", "movie_poster_url", "gener", "bio"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["411025109001", "\u6c7e\u9648\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["411025109002", "\u738b\u68a6\u5bfa\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["411025109003", "\u540e\u6cb3\u5e84\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["411025109004", "\u65b9\u5e84\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["411025109005", "\u534a\u5761\u5e97\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["411025109006", "\u53f0\u5b98\u674e\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["411025109007", "\u4ef2\u5e84\u6751\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["411025109202", "\u5927\u8def\u6751\u59d4\u4f1a", "220", "0"], ["411025109203", "\u5317\u5415\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["411025109204", "\u5ebe\u6cb3\u6751\u59d4\u4f1a", "220", "0"], ["411025109207", "\u5927\u78e8\u5f20\u6751\u59d4\u4f1a", "220", "0"], ["411025109208", "\u6731\u5802\u6751\u59d4\u4f1a", "220", "0"], ["411025109209", "\u7a0b\u6865\u6751\u59d4\u4f1a", "220", "0"], ["411025109210", "\u5317\u5d14\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["411025109211", "\u5c97\u6768\u6751\u59d4\u4f1a", "220", "0"], ["411025109212", "\u738b\u7a91\u6751\u59d4\u4f1a", "220", "0"], ["411025109213", "\u5317\u7af9\u56ed\u6751\u59d4\u4f1a", "220", "0"], ["411025109214", "\u53cc\u697c\u5f20\u6751\u59d4\u4f1a", "220", "0"], ["411025109215", "\u5317\u6768\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["411025109216", "\u5317\u4e54\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["411025109217", "\u5b8b\u5802\u6751\u59d4\u4f1a", "220", "0"], ["411025109218", "\u674e\u8425\u6751\u59d4\u4f1a", "220", "0"], ["411025109219", "\u67f3\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["411025109220", "\u8001\u5e84\u960e\u6751\u59d4\u4f1a", "220", "0"], ["411025109221", "\u7816\u5899\u674e\u6751\u59d4\u4f1a", "220", "0"], ["411025109222", "\u5317\u5f90\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["411025109223", "\u5317\u7eb8\u623f\u6751\u59d4\u4f1a", "220", "0"], ["411025109224", "\u4fc3\u8fdb\u674e\u6751\u59d4\u4f1a", "220", "0"], ["411025109228", "\u8d64\u6da7\u5085\u6751\u59d4\u4f1a", "220", "0"], ["411025109230", "\u8bbf\u8f66\u674e\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "dataVotes": {"type": "integer"}, "willVotes": {"type": "integer"}, "totalVotes": {"type": "integer"}}, "required": ["id", "title", "children", "dataVotes", "willVotes", "totalVotes"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "05e7ae92-3b79-4471-b194-5a6df4f77c38", "playerTags" : [], "teamTags" : ["3f8bbb15-61c0-4e3f-8e4a-907a5fb1565e"], "gameTags" : [], "metadata" : {"id" : "shadows_call_up", "title" : "Foreshadow", "children" : ["a4565359-2571-4855-9922-161b79b441a6", "866510b5-f85a-4274-b1cb-2f0a07f4ab89", "d2a48ba5-8512-4bf9-9574-79b589edcf85"], "dataVotes" : 58837, "willVotes" : 65831, "totalVotes" : 135088}, "created" : "2021-03-21T18:01:05.109Z", "season" : 13, "tournament" : -1, "type" : 61, "day" : 116, "phase" : 13, "category" : 3, "description" : "Will Received: Foreshadow", "nuts" : 5}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "dataVotes": {"type": "integer"}, "willVotes": {"type": "integer"}, "totalVotes": {"type": "integer"}}, "required": ["id", "title", "children", "dataVotes", "willVotes", "totalVotes"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"beta": {"type": "string"}, "coverage": {"type": "string"}, "format": {"type": "string"}, "publish": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["beta", "coverage", "format", "publish", "start", "test"]}, "jest": {"type": "object", "properties": {"collectCoverageFrom": {"type": "array", "items": {"type": "string"}}}, "required": ["collectCoverageFrom"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@ampproject/toolbox-optimizer": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@ampproject/toolbox-optimizer", "jest", "prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "jest", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@ampproject/cloudflare-amp-optimizer", "version" : "0.1.0", "description" : "A Cloudflare Worker AMP Optimizer", "main" : "./src/index.js", "scripts" : {"beta" : "wrangler publish --env=beta", "coverage" : "jest --coverage && open coverage/lcov-report/index.html", "format" : "prettier --write '{src,test}/*.{js,css,json,md}'", "publish" : "wrangler publish", "start" : "wrangler dev --env=dev", "test" : "jest"}, "jest" : {"collectCoverageFrom" : ["src/*.js"]}, "author" : "Jake Fried <[email protected]>", "license" : "MIT", "devDependencies" : {"@ampproject/toolbox-optimizer" : "2.8.0-canary.16", "jest" : "^26.6.3", "prettier" : "1.18.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"beta": {"type": "string"}, "coverage": {"type": "string"}, "format": {"type": "string"}, "publish": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["beta", "coverage", "format", "publish", "start", "test"]}, "jest": {"type": "object", "properties": {"collectCoverageFrom": {"type": "array", "items": {"type": "string"}}}, "required": ["collectCoverageFrom"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@ampproject/toolbox-optimizer": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@ampproject/toolbox-optimizer", "jest", "prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "jest", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 79167, "cartId" : "f4d42bdf-1c18-49bd-883f-42d5b402055b", "preferredProducts" : [2814, 4389, 2837, 88, 110, 4600, 1678, 1471, 3811], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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" : "netherthings:block/glowing_reeds"}}}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "SOC301H5F20199", "code" : "SOC301H5F", "name" : "Canadian Prisons", "description" : "This course will examine trends and approaches within the correctional system in Canada. It will explore the historical and contemporary context of correctional practices. Attention will be paid to the differential impact of Canadian corrections on Aboriginal people and other minority groups. [24L]", "division" : "University of Toronto Mississauga", "department" : "Sociology", "prerequisites" : "SOC100H5, SOC209H5", "exclusions" : "", "level" : 300, "campus" : "UTM", "term" : "2019 Fall", "breadths" : [], "meeting_sections" : [{"code" : "L0101", "instructors" : ["E Laming"], "times" : [{"day" : "MONDAY", "start" : 32400, "end" : 39600, "duration" : 7200, "location" : "IB 345"}], "size" : 150, "enrolment" : 0}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$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"}, "style": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "page4", "style" : ["*.css", "*.blah"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "style": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "sourceMaps": {"type": "null"}, "error": {"type": "null"}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["id", "dependencies", "generated", "sourceMaps", "error", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "../../node_modules/superagent/lib/is-object.js", "dependencies" : [{"name" : "/Users/hozan/Desktop/devstree/nawikurdi/API/package.json", "includedInParent" : true, "mtime" : 1590877042665}, {"name" : "/Users/hozan/Desktop/devstree/nawikurdi/API/node_modules/superagent/package.json", "includedInParent" : true, "mtime" : 1585830670205}, {"name" : "/Users/hozan/Desktop/devstree/nawikurdi/API/node_modules/superagent/.browserslistrc", "includedInParent" : true, "mtime" : 1585830670205}], "generated" : {"js" : "\"use strict\";\n\nfunction _typeof(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function _typeof(obj) {\n return typeof obj;\n };\n } else {\n _typeof = function _typeof(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n/**\n * Check if `obj` is an object.\n *\n * @param {Object} obj\n * @return {Boolean}\n * @api private\n */\n\n\nfunction isObject(obj) {\n return obj !== null && _typeof(obj) === 'object';\n}\n\nmodule.exports = isObject;"}, "sourceMaps" : null, "error" : null, "hash" : "b2cc9a035cc88475b29c20c93250ff33", "cacheData" : {"env" : {}}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "sourceMaps": {"type": "null"}, "error": {"type": "null"}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["id", "dependencies", "generated", "sourceMaps", "error", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}, "bodyPatterns": {"type": "array", "items": {"type": "object", "properties": {"equalToJson": {"type": "string"}, "ignoreArrayOrder": {"type": "boolean"}, "ignoreExtraElements": {"type": "boolean"}}, "required": ["equalToJson", "ignoreArrayOrder", "ignoreExtraElements"]}}}, "required": ["url", "method", "bodyPatterns"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "string"}, "Vary": {"type": "string"}}, "required": ["Content-Type", "Date", "Server", "Vary"]}}, "required": ["status", "body", "headers"]}, "uuid": {"type": "string"}, "persistent": {"type": "boolean"}, "insertionIndex": {"type": "integer"}}, "required": ["id", "name", "request", "response", "uuid", "persistent", "insertionIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "151a1ee5-c481-49a5-9bef-63b8101afe43", "name" : "apiphp", "request" : {"url" : "/api.php", "method" : "POST", "bodyPatterns" : [{"equalToJson" : "{\"action\":\"get_identified_files\",\"group\":\"scans\",\"data\":{\"username\":\"\",\"key\":\"\",\"scan_code\":\"semver4j_20201203_090342\"}}", "ignoreArrayOrder" : true, "ignoreExtraElements" : true}]}, "response" : {"status" : 200, "body" : "{\"operation\":\"get_identified_files\",\"status\":\"1\",\"data\":false}", "headers" : {"Content-Type" : "text/html; charset=UTF-8", "Date" : "Thu, 03 Dec 2020 08:04:04 GMT", "Server" : "Apache/2.4.38 (Debian)", "Vary" : "Accept-Encoding"}}, "uuid" : "151a1ee5-c481-49a5-9bef-63b8101afe43", "persistent" : true, "insertionIndex" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}, "bodyPatterns": {"type": "array", "items": {"type": "object", "properties": {"equalToJson": {"type": "string"}, "ignoreArrayOrder": {"type": "boolean"}, "ignoreExtraElements": {"type": "boolean"}}, "required": ["equalToJson", "ignoreArrayOrder", "ignoreExtraElements"]}}}, "required": ["url", "method", "bodyPatterns"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "string"}, "Vary": {"type": "string"}}, "required": ["Content-Type", "Date", "Server", "Vary"]}}, "required": ["status", "body", "headers"]}, "uuid": {"type": "string"}, "persistent": {"type": "boolean"}, "insertionIndex": {"type": "integer"}}, "required": ["id", "name", "request", "response", "uuid", "persistent", "insertionIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"InternList": {"type": "string"}, "Position": {"type": "string"}, "Location": {"type": "string"}, "Type": {"type": "string"}, "Search": {"type": "string"}, "AllJobs": {"type": "string"}, "SeeDetail": {"type": "string"}, "CTA": {"type": "string"}, "ViewInternList": {"type": "string"}, "SortBy": {"type": "string"}, "CantFindWhatYouAreLookingFor": {"type": "string"}, "DropCV": {"type": "string"}, "ContactUs": {"type": "string"}, "SearchResultFound": {"type": "string"}, "DropCVUrl": {"type": "string"}, "ContactUrl": {"type": "string"}}, "required": ["InternList", "Position", "Location", "Type", "Search", "AllJobs", "SeeDetail", "CTA", "ViewInternList", "SortBy", "CantFindWhatYouAreLookingFor", "DropCV", "ContactUs", "SearchResultFound", "DropCVUrl", "ContactUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"InternList" : "Internship Opening", "Position" : "Posisi", "Location" : "Lokasi", "Type" : "Tipe", "Search" : "Cari", "AllJobs" : "Semua", "SeeDetail" : "Selengkapnya", "CTA" : "Lihat Lainnya", "ViewInternList" : "Lihat Daftar Magang", "SortBy" : "Urutkan berdasarkan", "CantFindWhatYouAreLookingFor" : "Mencari Kesempatan Magang Lainnya?", "DropCV" : "Kirimkan CV", "ContactUs" : "Hubungi Kami", "SearchResultFound" : "hasil pencarian ditemukan", "DropCVUrl" : "https://docs.google.com/forms/d/e/1FAIpQLSfoOadBGOJhl7tDupAYspuoD_XGldH5kQQtrGW1oK2Z61wJnQ/viewform", "ContactUrl" : "mailto: [email protected]"}
json_instruct
{"type": "object", "properties": {"InternList": {"type": "string"}, "Position": {"type": "string"}, "Location": {"type": "string"}, "Type": {"type": "string"}, "Search": {"type": "string"}, "AllJobs": {"type": "string"}, "SeeDetail": {"type": "string"}, "CTA": {"type": "string"}, "ViewInternList": {"type": "string"}, "SortBy": {"type": "string"}, "CantFindWhatYouAreLookingFor": {"type": "string"}, "DropCV": {"type": "string"}, "ContactUs": {"type": "string"}, "SearchResultFound": {"type": "string"}, "DropCVUrl": {"type": "string"}, "ContactUrl": {"type": "string"}}, "required": ["InternList", "Position", "Location", "Type", "Search", "AllJobs", "SeeDetail", "CTA", "ViewInternList", "SortBy", "CantFindWhatYouAreLookingFor", "DropCV", "ContactUs", "SearchResultFound", "DropCVUrl", "ContactUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"SYMFONY_ENV": {"type": "string"}}, "required": ["SYMFONY_ENV"]}}, "required": ["name", "description", "repository", "logo", "keywords", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Symfony Standard Edition", "description" : "The Symfony Standard Edition", "repository" : "https://github.com/fabpot/symfony-standard-heroku", "logo" : "http://symfony.com/logos/symfony_black_03.svg", "keywords" : ["symfony"], "env" : {"SYMFONY_ENV" : "prod"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "logo": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"SYMFONY_ENV": {"type": "string"}}, "required": ["SYMFONY_ENV"]}}, "required": ["name", "description", "repository", "logo", "keywords", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "S\u00c3O JOS\u00c9 DE PRINCESA", "Description" : "S\u00c3O JOS\u00c9 DE PRINCESA / PB"}, "geometry" : {"type" : "LineString", "coordinates" : [[-38.06947829598653, -7.772324341195314], [-38.07574114233977, -7.805383615661299], [-38.06535000489879, -7.819747763648309], [-38.077069377149996, -7.830579521227889], [-38.11617815090091, -7.822560182906044], [-38.13142549159312, -7.795757674477045], [-38.11587620712123, -7.737512163955159], [-38.12942740305214, -7.725670545958905], [-38.11670676700368, -7.697191163441404], [-38.1256739421986, -7.674121486317516], [-38.11122576335828, -7.659781596643313], [-38.1310969485653, -7.618945864659906], [-38.10545046196921, -7.571552520032753], [-38.10376525835994, -7.570550184243587], [-38.08247686571473, -7.588965854490538], [-38.07840330287007, -7.611528177283503], [-38.084623369372935, -7.642465664159033], [-38.05252778682785, -7.642084693353866], [-38.06456581136308, -7.67774038431122], [-38.06167874118091, -7.699922123007524], [-38.08061863344312, -7.739027063847857], [-38.06947829598653, -7.772324341195314]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid 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" : 1966, "sex" : "F", "n" : 5, "prop" : 2.85e-06}, {"year" : 1971, "sex" : "F", "n" : 5, "prop" : 2.85e-06}, {"year" : 1972, "sex" : "F", "n" : 11, "prop" : 6.82e-06}, {"year" : 1973, "sex" : "F", "n" : 5, "prop" : 3.22e-06}, {"year" : 1974, "sex" : "F", "n" : 5, "prop" : 3.19e-06}, {"year" : 1975, "sex" : "F", "n" : 7, "prop" : 4.49e-06}, {"year" : 1976, "sex" : "F", "n" : 7, "prop" : 4.45e-06}, {"year" : 1977, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1978, "sex" : "F", "n" : 9, "prop" : 5.48e-06}, {"year" : 1979, "sex" : "F", "n" : 6, "prop" : 3.48e-06}, {"year" : 1980, "sex" : "F", "n" : 7, "prop" : 3.93e-06}, {"year" : 1981, "sex" : "F", "n" : 7, "prop" : 3.91e-06}, {"year" : 1982, "sex" : "F", "n" : 7, "prop" : 3.86e-06}, {"year" : 1983, "sex" : "F", "n" : 9, "prop" : 5.03e-06}, {"year" : 1987, "sex" : "F", "n" : 5, "prop" : 2.67e-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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"image_name" : "lesion4354.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "374.0,283.0,368.0,275.0,363.0,268.0,356.0,266.0,351.0,272.0,351.0,281.0,349.0,290.0,351.0,303.0,354.0,314.0,363.0,312.0,370.0,308.0,379.0,306.0,385.0,301.0,381.0,292.0,376.0,290.0", "id" : "1", "blurred" : false, "goodIllumination" : true}, {"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 2.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "376.0,348.0,373.0,353.0,367.0,362.0,362.0,369.0,355.0,376.0,349.0,380.0,343.0,380.0,336.0,377.0,333.0,371.0,336.0,363.0,338.0,357.0,341.0,351.0,340.0,344.0,346.0,344.0,357.0,344.0,364.0,347.0,370.0,347.0", "id" : "2", "blurred" : false, "goodIllumination" : true}, {"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 3.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "125.0,298.0,135.0,297.0,144.0,296.0,150.0,298.0,152.0,304.0,149.0,315.0,146.0,322.0,146.0,330.0,149.0,340.0,153.0,345.0,163.0,345.0,162.0,354.0,162.0,362.0,165.0,369.0,172.0,372.0,179.0,369.0,179.0,363.0,182.0,358.0,181.0,352.0,188.0,353.0,197.0,354.0,204.0,353.0,209.0,346.0,207.0,339.0,204.0,334.0,204.0,327.0,208.0,327.0,211.0,332.0,214.0,340.0,219.0,344.0,225.0,345.0,232.0,341.0,235.0,334.0,236.0,323.0,243.0,330.0,245.0,334.0,242.0,340.0,241.0,348.0,240.0,355.0,241.0,364.0,238.0,371.0,232.0,379.0,224.0,387.0,215.0,394.0,207.0,397.0,201.0,398.0,194.0,398.0,190.0,393.0,185.0,391.0,175.0,388.0,166.0,384.0,161.0,382.0,155.0,381.0,144.0,371.0,138.0,361.0,129.0,353.0,122.0,342.0,119.0,329.0,119.0,316.0,121.0,305.0", "id" : "3", "blurred" : false, "goodIllumination" : true}], "camera_id" : "", "image_width" : 512}
json_instruct
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"region_attributes": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["region_attributes"]}, "category_id": {"type": "string"}, "segmentation": {"type": "string"}, "id": {"type": "string"}, "blurred": {"type": "boolean"}, "goodIllumination": {"type": "boolean"}}, "required": ["score", "frontview", "other", "category_id", "segmentation", "id", "blurred", "goodIllumination"]}}, "camera_id": {"type": "string"}, "image_width": {"type": "integer"}}, "required": ["image_name", "image_height", "camera_gps", "bbox", "camera_id", "image_width"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/node": {"type": "string"}}, "required": ["@types/express", "@types/node"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}}, "required": ["version", "name", "description", "keywords", "main", "repository", "license", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "0.5.0", "name" : "express-dump-curl", "description" : "ExpressJS middleware to dump received requests as curls and RESTests", "keywords" : ["express", "curl", "dump", "debug"], "main" : "index.js", "repository" : "[email protected]:fsoft72/express-dump-curl.git", "license" : "MIT", "devDependencies" : {"@types/express" : "^4.17.2", "@types/node" : "^12.12.7"}, "scripts" : {"build" : "tsc --build", "dev" : "tsc --build -w"}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/node": {"type": "string"}}, "required": ["@types/express", "@types/node"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}}, "required": ["version", "name", "description", "keywords", "main", "repository", "license", "devDependencies", "scripts"], "$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"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "body-parser": {"type": "string"}, "socket.io": {"type": "string"}, "handlebars": {"type": "string"}, "consolidate": {"type": "string"}, "habitat": {"type": "string"}, "mongodb": {"type": "string"}, "monk": {"type": "string"}, "twit": {"type": "string"}}, "required": ["express", "body-parser", "socket.io", "handlebars", "consolidate", "habitat", "mongodb", "monk", "twit"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Voix", "version" : "0.0.0", "description" : "Twitter poling for taking votes", "main" : "app.js", "author" : "Tanay Prabhu Desai", "license" : "MIT", "dependencies" : {"express" : "~4.6.1", "body-parser" : "~1.14.0", "socket.io" : "~1.0", "handlebars" : "~4.0.4", "consolidate" : "~0.13.1", "habitat" : "~3.0.0", "mongodb" : "1.4.x", "monk" : "~1.0.1", "twit" : "~2.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "body-parser": {"type": "string"}, "socket.io": {"type": "string"}, "handlebars": {"type": "string"}, "consolidate": {"type": "string"}, "habitat": {"type": "string"}, "mongodb": {"type": "string"}, "monk": {"type": "string"}, "twit": {"type": "string"}}, "required": ["express", "body-parser", "socket.io", "handlebars", "consolidate", "habitat", "mongodb", "monk", "twit"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "json2csv": {"type": "string"}}, "required": ["@babel/core", "json2csv"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["@babel/cli", "@babel/preset-env"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "repository", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lc-js-components", "version" : "1.0.3", "description" : "js\u76f8\u5173\u516c\u5171\u63a7\u4ef6.", "main" : "dist/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "babel src --out-dir dist --presets=@babel/env"}, "author" : "Linc", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/sulirlinc/lc-js-components"}, "keywords" : ["json2csv"], "dependencies" : {"@babel/core" : "^7.14.3", "json2csv" : "^5.0.6"}, "devDependencies" : {"@babel/cli" : "^7.14.3", "@babel/preset-env" : "^7.14.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "json2csv": {"type": "string"}}, "required": ["@babel/core", "json2csv"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["@babel/cli", "@babel/preset-env"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "repository", "keywords", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"userFirstname": {"type": "string"}, "userLastname": {"type": "string"}, "address": {"type": "string"}, "homePhone": {"type": "string"}, "email": {"type": "string"}}, "required": ["userFirstname", "userLastname", "address", "homePhone", "email"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"userFirstname" : "firstName 0", "userLastname" : "lastName 0", "address" : "address 0", "homePhone" : "homePhone 0", "email" : "email 0"}, {"userFirstname" : "firstName 1", "userLastname" : "lastName 1", "address" : "address 1", "homePhone" : "homePhone 1", "email" : "email 1"}, {"userFirstname" : "firstName 2", "userLastname" : "lastName 2", "address" : "address 2", "homePhone" : "homePhone 2", "email" : "email 2"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"userFirstname": {"type": "string"}, "userLastname": {"type": "string"}, "address": {"type": "string"}, "homePhone": {"type": "string"}, "email": {"type": "string"}}, "required": ["userFirstname", "userLastname", "address", "homePhone", "email"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x3edb4898471ae5c6037456661c59e3ae4e0a6c29f0a7bb983d3a2161086b5e6c", "parentHash" : "0x9095c4068be5de1508a9d4c639c099584cfede23390f21f4b9e5f8e11e128dbf", "number" : 115779, "timestamp" : 1440063197, "nonce" : "0xa4d24f86603f14f9", "difficulty" : 4569251674192, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "null"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Twelve women, including woman in center wearing light colored short sleeve dress, holding document with Byrd Brown wearing dark suit, light colored shirt, and patterned necktie, gathered in YMCA with linoleum floor and banner inscribed \"Young Men's Christian Association...\"", "creation_date" : "c. 1959", "creation_date_earliest" : "1956-01-01", "creation_date_latest" : "1962-01-01", "medium" : "black and white: Kodak Safety Film", "accession_number" : "2001.35.50695", "id" : "cmoa:things/0a316de5-d86a-4e20-a4a8-2bf8ccc6d22a", "credit_line" : "Heinz Family Fund", "date_acquired" : "2001-10-04", "department" : "Fine Arts", "physical_location" : "Not on View", "item_width" : 5.0, "item_height" : 4.0, "item_depth" : 0.0, "item_diameter" : 0.0, "web_url" : "http://teenie.cmoa.org/CollectionSearch.aspx?itemIRN=64842", "provenance_text" : null, "classification" : "Photographic Negative", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=74434&size=ZoomLarge"}], "creator" : [{"artist_id" : "cmoa:parties/c6f0eebf-b566-4532-b704-ce6ad6cb421c", "party_type" : "Person", "full_name" : "Charles \"Teenie\" Harris", "cited_name" : "Harris, Charles \"Teenie\"", "role" : null, "nationality" : "American", "birth_date" : "1908-01-01", "death_date" : "1998-01-01", "birth_place" : "Pittsburgh PA", "death_place" : "Pittsburgh PA"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "null"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "slim/slim": {"type": "string"}, "monolog/monolog": {"type": "string"}, "illuminate/database": {"type": "string"}, "illuminate/events": {"type": "string"}, "robmorgan/phinx": {"type": "string"}, "illuminate/cache": {"type": "string"}, "myclabs/php-enum": {"type": "string"}, "ext-json": {"type": "string"}, "ext-redis": {"type": "string"}, "ext-fileinfo": {"type": "string"}, "ext-curl": {"type": "string"}}, "required": ["php", "slim/slim", "monolog/monolog", "illuminate/database", "illuminate/events", "robmorgan/phinx", "illuminate/cache", "myclabs/php-enum", "ext-json", "ext-redis", "ext-fileinfo", "ext-curl"]}, "require-dev": {"type": "object", "properties": {"squizlabs/php_codesniffer": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "php-coveralls/php-coveralls": {"type": "string"}}, "required": ["squizlabs/php_codesniffer", "phpunit/phpunit", "php-coveralls/php-coveralls"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Youkok\\": {"type": "string"}}, "required": ["Youkok\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Youkok\\Tests\\": {"type": "string"}}, "required": ["Youkok\\Tests\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}, "phpunit": {"type": "string"}, "phpcs": {"type": "string"}, "migrate": {"type": "string"}}, "required": ["test", "phpunit", "phpcs", "migrate"]}}, "required": ["name", "description", "license", "require", "require-dev", "autoload", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "youkok2/youkok2", "description" : "Utility website for students", "license" : "MIT", "require" : {"php" : ">=7.4", "slim/slim" : "3.12.1", "monolog/monolog" : "1.24.0", "illuminate/database" : "6.20.14", "illuminate/events" : "6.20.14", "robmorgan/phinx" : "0.10.8", "illuminate/cache" : "6.20.14", "myclabs/php-enum" : "^1.7", "ext-json" : "*", "ext-redis" : "*", "ext-fileinfo" : "*", "ext-curl" : "*"}, "require-dev" : {"squizlabs/php_codesniffer" : "3.4.2", "phpunit/phpunit" : "8.2.5", "php-coveralls/php-coveralls" : "1.1.0"}, "autoload" : {"psr-4" : {"Youkok\\" : "src"}}, "autoload-dev" : {"psr-4" : {"Youkok\\Tests\\" : "tests"}}, "scripts" : {"test" : ["@phpunit", "@phpcs", "@phpmd"], "phpunit" : "vendor/bin/phpunit", "phpcs" : "vendor/bin/phpcs", "migrate" : "vendor/bin/phinx migrate -c phinx/config.php"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "slim/slim": {"type": "string"}, "monolog/monolog": {"type": "string"}, "illuminate/database": {"type": "string"}, "illuminate/events": {"type": "string"}, "robmorgan/phinx": {"type": "string"}, "illuminate/cache": {"type": "string"}, "myclabs/php-enum": {"type": "string"}, "ext-json": {"type": "string"}, "ext-redis": {"type": "string"}, "ext-fileinfo": {"type": "string"}, "ext-curl": {"type": "string"}}, "required": ["php", "slim/slim", "monolog/monolog", "illuminate/database", "illuminate/events", "robmorgan/phinx", "illuminate/cache", "myclabs/php-enum", "ext-json", "ext-redis", "ext-fileinfo", "ext-curl"]}, "require-dev": {"type": "object", "properties": {"squizlabs/php_codesniffer": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "php-coveralls/php-coveralls": {"type": "string"}}, "required": ["squizlabs/php_codesniffer", "phpunit/phpunit", "php-coveralls/php-coveralls"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Youkok\\": {"type": "string"}}, "required": ["Youkok\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Youkok\\Tests\\": {"type": "string"}}, "required": ["Youkok\\Tests\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}, "phpunit": {"type": "string"}, "phpcs": {"type": "string"}, "migrate": {"type": "string"}}, "required": ["test", "phpunit", "phpcs", "migrate"]}}, "required": ["name", "description", "license", "require", "require-dev", "autoload", "autoload-dev", "scripts"], "$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"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "jsnext:main": {"type": "string"}, "unpkg": {"type": "string"}, "types": {"type": "string"}, "typings": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "lint", "prepare"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"ts-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-airbnb": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["ts-loader", "tslint", "tslint-config-airbnb", "typescript", "webpack"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "repository", "description", "main", "module", "jsnext:main", "unpkg", "types", "typings", "license", "author", "scripts", "files", "keywords", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pomelog", "version" : "1.0.4", "repository" : "tsachis/pomelog", "description" : "A tiny client side utility for tracing/debugging web apps", "main" : "dist/pomelog.js", "module" : "dist/pomelog.es.js", "jsnext:main" : "dist/pomelog.es.js", "unpkg" : "dist/pomelog.min.js", "types" : "dist/pomelog.d.ts", "typings" : "dist/pomelog.d.ts", "license" : "MIT", "author" : {"name" : "Tsachi Shushan", "email" : "[email protected]"}, "scripts" : {"build" : "webpack", "lint" : "tslint -c tslint.json 'src/**/*.ts'", "prepare" : "npm run lint && npm run build"}, "files" : ["dist"], "keywords" : ["pomelog"], "devDependencies" : {"ts-loader" : "^3.4.0", "tslint" : "^5.9.1", "tslint-config-airbnb" : "^5.5.0", "typescript" : "^2.7.1", "webpack" : "^3.10.0"}, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "jsnext:main": {"type": "string"}, "unpkg": {"type": "string"}, "types": {"type": "string"}, "typings": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "lint", "prepare"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"ts-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-airbnb": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["ts-loader", "tslint", "tslint-config-airbnb", "typescript", "webpack"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "repository", "description", "main", "module", "jsnext:main", "unpkg", "types", "typings", "license", "author", "scripts", "files", "keywords", "devDependencies", "dependencies"], "$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"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101774473, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "2da878920016c5bb5d0b5c327e2acb1a", "wof:id" : 101774473, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-0.7037, 41.614, -0.7037, 41.614], "geometry" : {"coordinates" : [-0.7037, 41.614], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nanotimer": {"type": "string"}, "uWebSockets.js": {"type": "string"}}, "required": ["nanotimer", "uWebSockets.js"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "main", "author", "private", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "simple-socket-server", "version" : "0.1.0", "description" : "Simple socket server", "main" : "app.js", "author" : "Dom Chapman", "private" : true, "license" : "BSD", "dependencies" : {"nanotimer" : "^0.3.15", "uWebSockets.js" : "github:uNetworking/uWebSockets.js#v20.6.0"}, "scripts" : {"start" : "node app.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nanotimer": {"type": "string"}, "uWebSockets.js": {"type": "string"}}, "required": ["nanotimer", "uWebSockets.js"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "main", "author", "private", "license", "dependencies", "scripts"], "$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"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Lumia, Saint of the Crimson Lotus", "attribute" : "Light/Fire", "type" : "J-Ruler", "cmc" : 0, "racesOrTraits" : ["Human"], "text" : "Swiftness\nAs this card enters your field, you may remove a card named \"Nyarlathotep, the Crimson Radiance\" in your hand from the game.\nThis card gains Imperishable and \"When this card deals damage \u21d2 You gain that much life.\" as long as a card named \"Nyarlathotep, the Crimson Radiance\" is in your removed area and was removed by this card.\nWhenever this card attacks \u21d2 Remove target resonator from the game. Then put it into its owner's field rested.", "set" : "Legacy Lost", "code" : "LEL-071", "rarity" : "R", "thumbnailImage" : "../assets/img/cards/LEL/071.jpg", "cardImage" : "http://db.fowtcg.us/cards/lel/071j.jpg"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "firestore": {"type": "object", "properties": {"version": {"type": "string"}, "path": {"type": "string"}, "metadata_file": {"type": "string"}}, "required": ["version", "path", "metadata_file"]}}, "required": ["version", "firestore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "8.19.0", "firestore" : {"version" : "1.11.11", "path" : "firestore_export", "metadata_file" : "firestore_export/firestore_export.overall_export_metadata"}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "firestore": {"type": "object", "properties": {"version": {"type": "string"}, "path": {"type": "string"}, "metadata_file": {"type": "string"}}, "required": ["version", "path", "metadata_file"]}}, "required": ["version", "firestore"], "$schema": "http://json-schema.org/draft-07/schema#"}