input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"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": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-3.1175944805144695, 53.30097198486328], [-3.0792906284332275, 53.32167434692383], [-3.0716414451598553, 53.31198883056652], [-3.0404398441314697, 53.307830810546875], [-2.9916441440582275, 53.31090545654297], [-2.960411071777287, 53.304954528808594], [-2.941943883895817, 53.31842041015631], [-2.9574999809265137, 53.331527709960994], [-2.9591679573058514, 53.33680725097656], [-2.9680559635162354, 53.345973968505916], [-2.9680559635162354, 53.348472595214844], [-2.980833053588867, 53.360694885253906], [-2.9919440746306805, 53.36486053466797], [-2.998054027557316, 53.3704185485841], [-2.9969449043273357, 53.37736129760742], [-3.0019450187683105, 53.378471374511776], [-3.008610963821411, 53.390140533447266], [-3.010277032852173, 53.399028778076286], [-3.0202779769896893, 53.39764022827154], [-3.0258328914642334, 53.40180587768555], [-3.0141680240630535, 53.404582977295036], [-3.0158340930938152, 53.410137176513615], [-3.0258328914642334, 53.419303894043026], [-3.031388998031616, 53.42902755737305], [-3.033611059188786, 53.437637329101676], [-3.038611888885441, 53.44124984741211], [-3.0547230243682293, 53.43902587890619], [-3.060832977294865, 53.43624877929693], [-3.0741660594939617, 53.43486022949219], [-3.0991659164427574, 53.422084808349666], [-3.1530559062957195, 53.40819549560547], [-3.1691670417785076, 53.40319442749029], [-3.2002780437468914, 53.38569259643566], [-3.196945905685425, 53.384304046630916], [-3.1886110305786133, 53.37014007568371], [-3.183609962463265, 53.36458206176758], [-3.1752779483795166, 53.36013793945318], [-3.171942949295044, 53.354026794433594], [-3.1602768898009685, 53.34680557250971], [-3.145277976989746, 53.340137481689396], [-3.133610963821411, 53.33041763305664], [-3.12860989570612, 53.328193664550895], [-3.1297221183776855, 53.32013702392584], [-3.1247220039367107, 53.31597137451183], [-3.122499942779484, 53.304862976074276], [-3.1175944805144695, 53.30097198486328]]]}, "properties" : {"name" : "Wirral, Wirral, England, United Kingdom"}}
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": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"faceId": {"type": "string"}, "faceRectangle": {"type": "object", "properties": {"top": {"type": "integer"}, "left": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["top", "left", "width", "height"]}, "faceAttributes": {"type": "object", "properties": {"emotion": {"type": "object", "properties": {"anger": {"type": "integer"}, "contempt": {"type": "number"}, "disgust": {"type": "number"}, "fear": {"type": "number"}, "happiness": {"type": "number"}, "neutral": {"type": "number"}, "sadness": {"type": "number"}, "surprise": {"type": "integer"}}, "required": ["anger", "contempt", "disgust", "fear", "happiness", "neutral", "sadness", "surprise"]}}, "required": ["emotion"]}}, "required": ["faceId", "faceRectangle", "faceAttributes"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"faceId" : "ee2589b4-170e-4c3e-832a-70fdbf275c97", "faceRectangle" : {"top" : 253, "left" : 174, "width" : 223, "height" : 223}, "faceAttributes" : {"emotion" : {"anger" : 0, "contempt" : 0.004, "disgust" : 0.002, "fear" : 0.001, "happiness" : 0.243, "neutral" : 0.134, "sadness" : 0.615, "surprise" : 0}}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"faceId": {"type": "string"}, "faceRectangle": {"type": "object", "properties": {"top": {"type": "integer"}, "left": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["top", "left", "width", "height"]}, "faceAttributes": {"type": "object", "properties": {"emotion": {"type": "object", "properties": {"anger": {"type": "integer"}, "contempt": {"type": "number"}, "disgust": {"type": "number"}, "fear": {"type": "number"}, "happiness": {"type": "number"}, "neutral": {"type": "number"}, "sadness": {"type": "number"}, "surprise": {"type": "integer"}}, "required": ["anger", "contempt", "disgust", "fear", "happiness", "neutral", "sadness", "surprise"]}}, "required": ["emotion"]}}, "required": ["faceId", "faceRectangle", "faceAttributes"]}, "$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"}, "authors": {"type": "object", "properties": {"liugangios": {"type": "string"}}, "required": ["liugangios"]}, "homepage": {"type": "string"}, "summary": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}}, "required": ["name", "version", "authors", "homepage", "summary", "source", "license", "platforms", "requires_arc", "source_files", "public_header_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "IFMMenu", "version" : "1.0.3", "authors" : {"liugangios" : "ustbliugang@163.com"}, "homepage" : "https://github.com/liugangios/IFMMenu", "summary" : "a dropdown menu for ios like wechat homepage.", "source" : {"git" : "https://github.com/liugangios/IFMMenu.git", "tag" : "1.0.3"}, "license" : {"type" : "MIT", "file" : "LICENSE"}, "platforms" : {"ios" : "7.0"}, "requires_arc" : true, "source_files" : "IFMMenu", "public_header_files" : "IFMMenu/*.h"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "object", "properties": {"liugangios": {"type": "string"}}, "required": ["liugangios"]}, "homepage": {"type": "string"}, "summary": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "public_header_files": {"type": "string"}}, "required": ["name", "version", "authors", "homepage", "summary", "source", "license", "platforms", "requires_arc", "source_files", "public_header_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"format_version": {"type": "string"}, "minecraft:client_entity": {"type": "object", "properties": {"description": {"type": "object", "properties": {"identifier": {"type": "string"}, "materials": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "textures": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "geometry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "animations": {"type": "object", "properties": {"animLoaded": {"type": "string"}, "contPose": {"type": "string"}}, "required": ["animLoaded", "contPose"]}, "scripts": {"type": "object", "properties": {"animate": {"type": "array", "items": {"type": "string"}}}, "required": ["animate"]}, "render_controllers": {"type": "array", "items": {"type": "string"}}}, "required": ["identifier", "materials", "textures", "geometry", "animations", "scripts", "render_controllers"]}}, "required": ["description"]}}, "required": ["format_version", "minecraft:client_entity"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"format_version" : "1.10.0", "minecraft:client_entity" : {"description" : {"identifier" : "rift:catapult", "materials" : {"default" : "skeleton"}, "textures" : {"default" : "textures/entity/catapult"}, "geometry" : {"default" : "geometry.catapult"}, "animations" : {"animLoaded" : "animation.catapult.loaded", "contPose" : "controller.animation.catapult_pose"}, "scripts" : {"animate" : ["contPose"]}, "render_controllers" : ["controller.render.catapult"]}}}
json_instruct
{"type": "object", "properties": {"format_version": {"type": "string"}, "minecraft:client_entity": {"type": "object", "properties": {"description": {"type": "object", "properties": {"identifier": {"type": "string"}, "materials": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "textures": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "geometry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "animations": {"type": "object", "properties": {"animLoaded": {"type": "string"}, "contPose": {"type": "string"}}, "required": ["animLoaded", "contPose"]}, "scripts": {"type": "object", "properties": {"animate": {"type": "array", "items": {"type": "string"}}}, "required": ["animate"]}, "render_controllers": {"type": "array", "items": {"type": "string"}}}, "required": ["identifier", "materials", "textures", "geometry", "animations", "scripts", "render_controllers"]}}, "required": ["description"]}}, "required": ["format_version", "minecraft:client_entity"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"eslint.format.enable": {"type": "boolean"}, "eslint.alwaysShowStatus": {"type": "boolean"}, "eslint.packageManager": {"type": "string"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "string"}}}, "required": ["eslint.format.enable", "eslint.alwaysShowStatus", "eslint.packageManager", "eslint.workingDirectories"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"eslint.format.enable" : true, "eslint.alwaysShowStatus" : true, "eslint.packageManager" : "yarn", "eslint.workingDirectories" : ["./src", "."]}
json_instruct
{"type": "object", "properties": {"eslint.format.enable": {"type": "boolean"}, "eslint.alwaysShowStatus": {"type": "boolean"}, "eslint.packageManager": {"type": "string"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "string"}}}, "required": ["eslint.format.enable", "eslint.alwaysShowStatus", "eslint.packageManager", "eslint.workingDirectories"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "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" : [[[132.0, 44.75], [132.0, 44.833333333333336], [132.125, 44.833333333333336], [132.125, 44.75], [132.0, 44.75]]]}, "properties" : {"code" : 673210, "url" : "http://madefor.github.io/0410/api/v1/673210.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/673210.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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Coding efficiency and detectability of rate fluctuations with non-Poisson neuronal firing.", "fields" : ["inverse gaussian distribution", "kullback leibler divergence", "log normal distribution", "renewal theory", "gamma distribution"], "abstract" : "Statistical features of neuronal spike trains are known to be non-Poisson. Here, we investigate the extent to which the non-Poissonian feature affects the efficiency of transmitting information on fluctuating firing rates. For this purpose, we introduce the Kullback-Leibler (KL) divergence as a measure of the efficiency of information encoding, and assume that spike trains are generated by time-rescaled renewal processes. We show that the KL divergence determines the lower bound of the degree of rate fluctuations below which the temporal variation of the firing rates is undetectable from sparse data. We also show that the KL divergence, as well as the lower bound, depends not only on the variability of spikes in terms of the coefficient of variation, but also significantly on the higher-order moments of interspike interval (ISI) distributions. We examine three specific models that are commonly used for describing the stochastic nature of spikes (the gamma, inverse Gaussian (IG) and lognormal ISI distributions), and find that the time-rescaled renewal process with the IG distribution achieves the largest KL divergence, followed by the lognormal and gamma distributions.", "citation" : "Citations (2)", "departments" : ["Department of S ... , Tokyo, Japan"], "authors" : ["Shinsuke Koyama.....http://dblp.org/pers/hd/k/Koyama:Shinsuke"], "conf" : "nips", "year" : "2012", "pages" : 9}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Brennan Stehling": {"type": "string"}}, "required": ["Brennan Stehling"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PhotoZoom", "version" : "0.0.2", "summary" : "Photo viewing view which allows for tapping and zooming like Apple's iPhoto.", "description" : "Implementing your own photo viewer is hard. This makes it easier. Simply drop PZPhotoView into any place that\nyou want to allow an image to be pinched and zoomed. The sample project shows how to do it with a paging collection view.\n", "homepage" : "https://github.com/brennanMKE/PhotoZoom", "license" : "MIT", "authors" : {"Brennan Stehling" : "brennan@smallsharptools.com"}, "social_media_url" : "http://twitter.com/smallsharptools", "platforms" : {"ios" : "6.0"}, "source" : {"git" : "https://github.com/brennanMKE/PhotoZoom.git", "tag" : "0.0.2"}, "source_files" : "Classes/**/*.{h,m}", "requires_arc" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Brennan Stehling": {"type": "string"}}, "required": ["Brennan Stehling"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files", "requires_arc"], "$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"}, "devDependencies": {"type": "object", "properties": {"less": {"type": "string"}, "less-loader": {"type": "string"}, "poi-preset-typescript": {"type": "string"}, "typescript": {"type": "string"}, "vue-class-component": {"type": "string"}}, "required": ["less", "less-loader", "poi-preset-typescript", "typescript", "vue-class-component"]}, "dependencies": {"type": "object", "properties": {"element-ui": {"type": "string"}, "lodash": {"type": "string"}, "normalize.css": {"type": "string"}, "vue": {"type": "string"}}, "required": ["element-ui", "lodash", "normalize.css", "vue"]}}, "required": ["name", "version", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "photo-wall.js", "version" : "0.0.1", "devDependencies" : {"less" : "*", "less-loader" : "*", "poi-preset-typescript" : "^9.0.2", "typescript" : "^2.6.2", "vue-class-component" : "^6.1.2"}, "dependencies" : {"element-ui" : "^2.0.10", "lodash" : "^4.17.4", "normalize.css" : "^7.0.0", "vue" : "^2.5.13"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"less": {"type": "string"}, "less-loader": {"type": "string"}, "poi-preset-typescript": {"type": "string"}, "typescript": {"type": "string"}, "vue-class-component": {"type": "string"}}, "required": ["less", "less-loader", "poi-preset-typescript", "typescript", "vue-class-component"]}, "dependencies": {"type": "object", "properties": {"element-ui": {"type": "string"}, "lodash": {"type": "string"}, "normalize.css": {"type": "string"}, "vue": {"type": "string"}}, "required": ["element-ui", "lodash", "normalize.css", "vue"]}}, "required": ["name", "version", "devDependencies", "dependencies"], "$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": {"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" : 1982, "sex" : "F", "n" : 10, "prop" : 5.51e-06}, {"year" : 1985, "sex" : "F", "n" : 6, "prop" : 3.25e-06}, {"year" : 1986, "sex" : "F", "n" : 12, "prop" : 6.5e-06}, {"year" : 1987, "sex" : "F", "n" : 7, "prop" : 3.74e-06}, {"year" : 1989, "sex" : "F", "n" : 5, "prop" : 2.51e-06}, {"year" : 2007, "sex" : "M", "n" : 6, "prop" : 2.71e-06}, {"year" : 2008, "sex" : "M", "n" : 5, "prop" : 2.3e-06}, {"year" : 2009, "sex" : "M", "n" : 6, "prop" : 2.83e-06}, {"year" : 2011, "sex" : "M", "n" : 8, "prop" : 3.94e-06}, {"year" : 2012, "sex" : "M", "n" : 8, "prop" : 3.95e-06}, {"year" : 2013, "sex" : "M", "n" : 10, "prop" : 4.96e-06}, {"year" : 2014, "sex" : "M", "n" : 7, "prop" : 3.42e-06}, {"year" : 2015, "sex" : "M", "n" : 5, "prop" : 2.45e-06}, {"year" : 2016, "sex" : "M", "n" : 8, "prop" : 3.96e-06}, {"year" : 2017, "sex" : "M", "n" : 5, "prop" : 2.55e-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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Eckartswiller", "dpt" : "Bas-Rhin", "inscrits" : 376, "abs" : 77, "votants" : 299, "blancs" : 1, "nuls" : 4, "exp" : 294, "res" : [{"panneau" : "2", "voix" : 76}, {"panneau" : "11", "voix" : 56}, {"panneau" : "3", "voix" : 48}, {"panneau" : "9", "voix" : 41}, {"panneau" : "1", "voix" : 25}, {"panneau" : "4", "voix" : 20}, {"panneau" : "6", "voix" : 9}, {"panneau" : "8", "voix" : 9}, {"panneau" : "10", "voix" : 9}, {"panneau" : "5", "voix" : 1}, {"panneau" : "7", "voix" : 0}]}
json_instruct
{"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$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" : "Chauvac-Laux-Montaux", "circ" : "3\u00e8me circonscription", "dpt" : "Dr\u00f4me", "inscrits" : 47, "abs" : 20, "votants" : 27, "blancs" : 3, "nuls" : 0, "exp" : 24, "res" : [{"nuance" : "LR", "nom" : "M. Paul BERARD", "voix" : 13}, {"nuance" : "REM", "nom" : "Mme C\u00e9lia DE LAVERGNE", "voix" : 11}]}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Add deps: pip download --no-binary :all: keras-preprocessing==1.1.2\r\nCollecting numpy>=1.9.1\r\n Installing build dependencies: started\r\nCollecting six>=1.9.0", "user" : "bernhardkaindl", "url" : "https://api.github.com/repos/spack/spack/issues/26605", "updated_at" : "2021-10-08 18:34:26", "created_at" : "2021-10-08 15:20:50", "closed_at" : "2021-10-08 18:34:26", "state" : "closed", "title" : "py-keras-preprocessing: Add missing deps: six@1.9.0: and numpy@1.9.1:", "number" : 26605, "milestone" : null, "labels" : ["python", "dependencies", "update-package"], "id" : 1021213496, "html_url" : "https://github.com/spack/spack/pull/26605", "assignees" : ["adamjstewart"], "comments" : 1}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : 404415431, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "96c2a4ae8446bc03c9764f0ee004e33c", "wof:id" : 404415431, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.45110720465957, 48.41955851183648, 4.5004590151699, 48.4480389246783], "geometry" : {"coordinates" : [[[4.5004590151699, 48.42234537356634], [4.49812195139664, 48.41955851183648], [4.48056477553139, 48.42444895010791], [4.47105272315797, 48.42367648740437], [4.46238336127083, 48.42937142135207], [4.45110720465957, 48.43915562616476], [4.46919229501494, 48.4480389246783], [4.47142292381588, 48.44800229178232], [4.48309489146766, 48.43362229769745], [4.5004590151699, 48.42234537356634]]], "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "required": ["en", "fi", "fr"]}, "description": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "required": ["en", "fi", "fr"]}, "story": {"type": "string"}, "dateTaken": {"type": "string"}, "focalLength35mm": {"type": "integer"}, "exposureTime": {"type": "string"}, "fNumber": {"type": "number"}, "iso": {"type": "integer"}, "prev": {"type": "integer"}, "next": {"type": "integer"}}, "required": ["title", "description", "story", "dateTaken", "focalLength35mm", "exposureTime", "fNumber", "iso", "prev", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : {"en" : "Spring Resiliency", "fi" : "Kev\u00e4\u00e4n joustavuus", "fr" : "La r\u00e9silience du printemps"}, "description" : {"en" : "", "fi" : "", "fr" : ""}, "story" : "Les_Quatres_Termes", "dateTaken" : "2019-05-05T06:37:58", "focalLength35mm" : 330, "exposureTime" : "1/100", "fNumber" : 7.1, "iso" : 320, "prev" : 190330112136, "next" : 190526074212}
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "required": ["en", "fi", "fr"]}, "description": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "required": ["en", "fi", "fr"]}, "story": {"type": "string"}, "dateTaken": {"type": "string"}, "focalLength35mm": {"type": "integer"}, "exposureTime": {"type": "string"}, "fNumber": {"type": "number"}, "iso": {"type": "integer"}, "prev": {"type": "integer"}, "next": {"type": "integer"}}, "required": ["title", "description", "story", "dateTaken", "focalLength35mm", "exposureTime", "fNumber", "iso", "prev", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200881801527000, "key" : "transformer-remark-markdown-html-d74034c90a876d12db90940b3679a4f5-gatsby-remark-external-linksgatsby-remark-imagesgatsby-remark-code-titlesgatsby-remark-prismjs-", "val" : "<ul>\n<li>Written blogs in different social medias on a regular basis for the evolvement of correct spelling skills within the school students of class 10 - 12 .</li>\n<li>Proposed and implemented scalable solutions to issues identified with hosting a national spelling competition among top schools of India .</li>\n</ul>"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"rules": {"type": "object", "properties": {"resumes": {"type": "object", "properties": {".indexOn": {"type": "string"}, ".read": {"type": "string"}, "$rid": {"type": "object", "properties": {".read": {"type": "string"}, ".write": {"type": "string"}}, "required": [".read", ".write"]}}, "required": [".indexOn", ".read", "$rid"]}, "users": {"type": "object", "properties": {"$uid": {"type": "object", "properties": {".read": {"type": "string"}, ".write": {"type": "string"}}, "required": [".read", ".write"]}}, "required": ["$uid"]}}, "required": ["resumes", "users"]}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rules" : {"resumes" : {".indexOn" : "user", ".read" : "auth !== null && query.orderByChild === 'user' && query.equalTo === auth.uid", "$rid" : {".read" : "data.child('public').val() === true || data.child('user').val() === auth.uid", ".write" : " !data.exists() || data.child('user').val() === auth.uid || (!newData.exists() && data.child('user').val() === auth.uid)"}}, "users" : {"$uid" : {".read" : "$uid === auth.uid", ".write" : "$uid === auth.uid"}}}}
json_instruct
{"type": "object", "properties": {"rules": {"type": "object", "properties": {"resumes": {"type": "object", "properties": {".indexOn": {"type": "string"}, ".read": {"type": "string"}, "$rid": {"type": "object", "properties": {".read": {"type": "string"}, ".write": {"type": "string"}}, "required": [".read", ".write"]}}, "required": [".indexOn", ".read", "$rid"]}, "users": {"type": "object", "properties": {"$uid": {"type": "object", "properties": {".read": {"type": "string"}, ".write": {"type": "string"}}, "required": [".read", ".write"]}}, "required": ["$uid"]}}, "required": ["resumes", "users"]}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"pubdate": {"type": "string"}, "title": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minutes": {"type": "integer"}}, "required": ["pubdate", "title", "tags", "minutes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pubdate" : "2017-04-20T23:08:18+09:00", "title" : "Rust \u3092\u6570\u884c\u3060\u3051\u66f8\u304f", "tags" : ["programming"], "minutes" : 10}
json_instruct
{"type": "object", "properties": {"pubdate": {"type": "string"}, "title": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minutes": {"type": "integer"}}, "required": ["pubdate", "title", "tags", "minutes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-h328-mrrm-rx8q", "modified" : "2022-01-06T00:00:48Z", "published" : "2021-12-27T00:00:40Z", "aliases" : ["CVE-2021-45636"], "details" : "NETGEAR D7000 devices before 1.0.1.82 are affected by a stack-based buffer overflow by an unauthenticated attacker.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-45636"}, {"type" : "WEB", "url" : "https://kb.netgear.com/000064447/Security-Advisory-for-Pre-Authentication-Stack-Overflow-on-D7000-PSV-2019-0182"}], "database_specific" : {"cwe_ids" : ["CWE-787"], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : 101824355, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "ed7684ece04b276eec0b5583b2a89dc7", "wof:id" : 101824355, "wof:repo" : "whosonfirst-data-admin-cz"}, "bbox" : [15.37341, 50.53062, 15.37341, 50.53062], "geometry" : {"coordinates" : [15.37341, 50.53062], "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": {"datetime": {"type": "string"}, "elapsed": {"type": "string"}, "exception": {"type": "string"}, "url": {"type": "string"}}, "required": ["datetime", "elapsed", "exception", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"datetime" : "2020-07-16T00:29:29.507966", "elapsed" : "0.177", "exception" : "SSLError", "url" : "https://www.staffsmoorlands.gov.uk/media/4895/brownfield-land.csv-Mar20/Excel/sm_brownfield-land.csv.csv"}
json_instruct
{"type": "object", "properties": {"datetime": {"type": "string"}, "elapsed": {"type": "string"}, "exception": {"type": "string"}, "url": {"type": "string"}}, "required": ["datetime", "elapsed", "exception", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "topic": {"type": "string"}, "link": {"type": "string"}, "img_url": {"type": "string"}, "license": {"type": "string"}, "dataset_id": {"type": "string"}, "title": {"type": "string"}, "last_update": {"type": "string"}, "sha512": {"type": "string"}, "url": {"type": "string"}, "statistics": {"type": "object", "properties": {"n_papers": {"type": "integer"}, "n_missing_title": {"type": "integer"}, "n_missing_abstract": {"type": "integer"}}, "required": ["n_papers", "n_missing_title", "n_missing_abstract"]}}, "required": ["description", "authors", "topic", "link", "img_url", "license", "dataset_id", "title", "last_update", "sha512", "url", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "A free dataset on publications on the corona virus.", "authors" : ["Allen institute for AI"], "topic" : "Covid-19", "link" : "https://pages.semanticscholar.org/coronavirus-research", "img_url" : "https://pages.semanticscholar.org/hs-fs/hubfs/covid-image.png?width=300&name=covid-image.png", "license" : "Covid dataset license", "dataset_id" : "cord19-v11", "title" : "CORD-19 v11", "last_update" : "2020-05-12", "sha512" : "52419dd3b68a19f72a791887c83326b9330b77581ef10ebb6597cbbadde8bedc885c8de75f6e6284dd6657231d96d4734c3f0bdd5d36a6c52f4343da13e196f4", "url" : "https://ai2-semanticscholar-cord-19.s3-us-west-2.amazonaws.com/2020-05-12/metadata.csv", "statistics" : {"n_papers" : 63571, "n_missing_title" : 163, "n_missing_abstract" : 12559}}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "topic": {"type": "string"}, "link": {"type": "string"}, "img_url": {"type": "string"}, "license": {"type": "string"}, "dataset_id": {"type": "string"}, "title": {"type": "string"}, "last_update": {"type": "string"}, "sha512": {"type": "string"}, "url": {"type": "string"}, "statistics": {"type": "object", "properties": {"n_papers": {"type": "integer"}, "n_missing_title": {"type": "integer"}, "n_missing_abstract": {"type": "integer"}}, "required": ["n_papers", "n_missing_title", "n_missing_abstract"]}}, "required": ["description", "authors", "topic", "link", "img_url", "license", "dataset_id", "title", "last_update", "sha512", "url", "statistics"], "$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"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"publishToFirebase": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["publishToFirebase", "build", "start"]}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "eslint": {"type": "string"}, "fs-extra": {"type": "string"}, "handlebars": {"type": "string"}, "highlight.js": {"type": "string"}, "jsdoc": {"type": "string"}, "less": {"type": "string"}, "less-plugin-autoprefix": {"type": "string"}, "less-plugin-clean-css": {"type": "string"}, "marked": {"type": "string"}, "plop": {"type": "string"}, "prettier": {"type": "string"}, "ramda": {"type": "string"}, "serve": {"type": "string"}, "walk": {"type": "string"}}, "required": ["bootstrap", "eslint", "fs-extra", "handlebars", "highlight.js", "jsdoc", "less", "less-plugin-autoprefix", "less-plugin-clean-css", "marked", "plop", "prettier", "ramda", "serve", "walk"]}}, "required": ["name", "private", "version", "description", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ramda-extension-docs", "private" : true, "version" : "0.0.1", "description" : "ramda-extension website", "license" : "Apache-2.0", "scripts" : {"publishToFirebase" : "yarn build && node ./tools/publishToFirebase", "build" : "node ./tools/build", "start" : "yarn build && serve -p 3333 public"}, "devDependencies" : {"bootstrap" : "^3.3.0", "eslint" : "^6.8.0", "fs-extra" : "^8.1.0", "handlebars" : "^4.7.3", "highlight.js" : "^9.16.2", "jsdoc" : "~3.6.3", "less" : "~3.8.1", "less-plugin-autoprefix" : "^2.0.0", "less-plugin-clean-css" : "^1.5.0", "marked" : "~0.6.1", "plop" : "^2.6.0", "prettier" : "^1.19.1", "ramda" : "^0.26.1", "serve" : "11.2.0", "walk" : "^2.3.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"publishToFirebase": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["publishToFirebase", "build", "start"]}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "eslint": {"type": "string"}, "fs-extra": {"type": "string"}, "handlebars": {"type": "string"}, "highlight.js": {"type": "string"}, "jsdoc": {"type": "string"}, "less": {"type": "string"}, "less-plugin-autoprefix": {"type": "string"}, "less-plugin-clean-css": {"type": "string"}, "marked": {"type": "string"}, "plop": {"type": "string"}, "prettier": {"type": "string"}, "ramda": {"type": "string"}, "serve": {"type": "string"}, "walk": {"type": "string"}}, "required": ["bootstrap", "eslint", "fs-extra", "handlebars", "highlight.js", "jsdoc", "less", "less-plugin-autoprefix", "less-plugin-clean-css", "marked", "plop", "prettier", "ramda", "serve", "walk"]}}, "required": ["name", "private", "version", "description", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "activationCommands": {"type": "object", "properties": {"atom-workspace": {"type": "string"}}, "required": ["atom-workspace"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "dependencies": {"type": "object", "properties": {"child_process": {"type": "string"}}, "required": ["child_process"]}}, "required": ["name", "main", "version", "description", "keywords", "activationCommands", "repository", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bslint", "main" : "./lib/bslint", "version" : "0.0.1", "description" : "An Atom plugin to run the BSLint tool", "keywords" : [], "activationCommands" : {"atom-workspace" : "bslint:run"}, "repository" : "https://github.com/zac-robinson/bslint-atom", "license" : "MIT", "engines" : {"atom" : ">=1.0.0 <2.0.0"}, "dependencies" : {"child_process" : "^1.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "activationCommands": {"type": "object", "properties": {"atom-workspace": {"type": "string"}}, "required": ["atom-workspace"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "dependencies": {"type": "object", "properties": {"child_process": {"type": "string"}}, "required": ["child_process"]}}, "required": ["name", "main", "version", "description", "keywords", "activationCommands", "repository", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vendor" : "adoptopenjdk", "filename" : "OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz", "release_type" : "ga", "version" : "8.0.242+8.1", "java_version" : "1.8.0_242-b08", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "ppc64le", "file_type" : "tar.gz", "image_type" : "jre", "features" : [], "url" : "https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz", "md5" : "a9fe5a1b791d9faac626de87b1ba9791", "md5_file" : "OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz.md5", "sha1" : "d76aaec5210f378ec730aac22af36aee1561a2cf", "sha1_file" : "OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz.sha1", "sha256" : "0b34b855a205d7c00b6625075884b48f6b9fafe3288397116896c39a39220b74", "sha256_file" : "OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz.sha256", "sha512" : "f366b503c78aee0991acccd07dd5400782c69b4f36033056baf60d7146f69fa38a5075bced7d8ab20313fb1fefa48c1d2cdcdf285f22887f9bec01297738f39e", "sha512_file" : "OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz.sha512", "size" : 40166008}
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Human brain labeling using image similarities.", "fields" : ["human brain", "graph", "connected component labeling", "image registration", "noise reduction"], "abstract" : "We propose in this work a patch-based segmentation method relying on a label propagation framework. Based on image intensity similarities between the input image and a learning dataset, an original strategy which does not require any non-rigid registration is presented. Following recent developments in non-local image denoising, the similarity between images is represented by a weighted graph computed from intensity-based distance between patches. Experiments on simulated and in-vivo MR images show that the proposed method is very successful in providing automated human brain labeling.", "citation" : "Citations (13)", "year" : "2011", "departments" : ["Centre national de la recherche scientifique", "University of Washington", "University of Washington"], "conf" : "cvpr", "authors" : ["Fran\u00e7ois Rousseau.....http://dblp.org/pers/hd/r/Rousseau_0002:Fran=ccedil=ois", "Piotr A. Habas.....http://dblp.org/pers/hd/h/Habas:Piotr_A=", "Colin Studholme.....http://dblp.org/pers/hd/s/Studholme:Colin"], "pages" : 8}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "Object.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.VisuallyHidden = VisuallyHidden;\n\nvar _hooks = require(\"../../../hooks\");\n\nfunction VisuallyHidden(_ref) {\n var children = _ref.children;\n var screenReaderEnabled = (0, _hooks.useScreenReaderEnabled)();\n return screenReaderEnabled ? children : null;\n}", "map" : {"version" : 3, "sources" : ["index.tsx"], "names" : ["children", "screenReaderEnabled"], "mappings" : ";;;;;AACA,IAAA,MAAA,GAAA,OAAA,CAAA,gBAAA,CAAA;;AAEO,SAAA,cAAA,CAAA,IAAA,EAIuB;AAH5BA,MAAAA,QAG4B,GAAA,IAAA,CAH5BA,QAAAA;AAIA,MAAMC,mBAAmB,GAAG,CAAA,GAAA,MAAA,CAA5B,sBAA4B,GAA5B;AAEA,SAAOA,mBAAmB,GAAA,QAAA,GAA1B,IAAA;AACD", "sourcesContent" : ["import type React from 'react';\nimport { useScreenReaderEnabled } from '../../../hooks';\n\nexport function VisuallyHidden({\n children,\n}: {\n children: React.ReactElement;\n}): React.ReactElement | null {\n const screenReaderEnabled = useScreenReaderEnabled();\n\n return screenReaderEnabled ? children : null;\n}\n"]}, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"vue.js": {"type": "string"}, "vue.min.js": {"type": "string"}}, "required": ["vue.js", "vue.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vue.js" : "sha256-E277wePVsE8EZooqU1FyXXfnZqolJSG4u/ExYAhMCNU=", "vue.min.js" : "sha256-8Z1JfovYsYNp+iX2VwaPKCZcgvYDtCZm6FYs713+oOc="}
json_instruct
{"type": "object", "properties": {"vue.js": {"type": "string"}, "vue.min.js": {"type": "string"}}, "required": ["vue.js", "vue.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-104.573644, 33.350248], [-104.571254, 33.355669], [-104.569465, 33.357737], [-104.564898, 33.360574], [-104.55735, 33.362202], [-104.546124, 33.368969], [-104.545561, 33.379595], [-104.53581, 33.379671], [-104.534149, 33.380828], [-104.533971, 33.383088], [-104.531751, 33.383305], [-104.532351, 33.35063], [-104.573644, 33.350248]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 41439}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "08", "provinceId" : "74", "regencyId" : "06", "name" : "Mata Oleo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : [[[136.875, 20.583333333333332], [136.875, 20.666666666666668], [137.0, 20.666666666666668], [137.0, 20.583333333333332], [136.875, 20.583333333333332]]]}, "properties" : {"code" : 303677, "url" : "http://madefor.github.io/0410/api/v1/303677.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/303677.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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"merge alley lucky axis penalty manage latin gasp virus captain wheel deal chase fragile chapter boss zero dirt stadium tooth physical valve kid plunge": {"type": "object", "properties": {"m": {"type": "object", "properties": {"xpub": {"type": "string"}, "xprv": {"type": "string"}}, "required": ["xpub", "xprv"]}}, "required": ["m"]}}, "required": ["merge alley lucky axis penalty manage latin gasp virus captain wheel deal chase fragile chapter boss zero dirt stadium tooth physical valve kid plunge"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"merge alley lucky axis penalty manage latin gasp virus captain wheel deal chase fragile chapter boss zero dirt stadium tooth physical valve kid plunge" : {"m" : {"xpub" : "xpub661MyMwAqRbcF6Ly4o6f9PLC4UcnKbjqnGxP36Uo2Ab2bZmMVG3gHNJ6SNoqZWF2n7fBJDfY1jakR8bpyW4BRakhzuctwWzHEhWg6QECrSC", "xprv" : "xprv9s21ZrQH143K2cGVxmZenFPTWSnHv91zR42nEi5BTq43imSCwijRjZycb7H2gHQ2o8ezaDXkuis71huV8TLHKsdzkzNaS4XmYRiQuAA8rTM"}}}
json_instruct
{"type": "object", "properties": {"merge alley lucky axis penalty manage latin gasp virus captain wheel deal chase fragile chapter boss zero dirt stadium tooth physical valve kid plunge": {"type": "object", "properties": {"m": {"type": "object", "properties": {"xpub": {"type": "string"}, "xprv": {"type": "string"}}, "required": ["xpub", "xprv"]}}, "required": ["m"]}}, "required": ["merge alley lucky axis penalty manage latin gasp virus captain wheel deal chase fragile chapter boss zero dirt stadium tooth physical valve kid plunge"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : 101821723, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "4d53d64452747ebd16a2159366ea9989", "wof:id" : 101821723, "wof:repo" : "whosonfirst-data-admin-pl"}, "bbox" : [21.402048, 52.188785, 21.456062, 52.206531], "geometry" : {"coordinates" : [[[21.421625, 52.201021], [21.427414, 52.200459], [21.427644, 52.201345], [21.433433, 52.200783], [21.434122, 52.20344], [21.435569, 52.2033], [21.43534, 52.202414], [21.436787, 52.202273], [21.436557, 52.201387], [21.438005, 52.201246], [21.437775, 52.200361], [21.442117, 52.199938], [21.442346, 52.200824], [21.446688, 52.200402], [21.446918, 52.201288], [21.448365, 52.201147], [21.448595, 52.202033], [21.452937, 52.20161], [21.453167, 52.202496], [21.456062, 52.202214], [21.455602, 52.200443], [21.454154, 52.200583], [21.453694, 52.198812], [21.452247, 52.198953], [21.451557, 52.196295], [21.453004, 52.196154], [21.452774, 52.195268], [21.454221, 52.195127], [21.453532, 52.19247], [21.454978, 52.192329], [21.454059, 52.188785], [21.451165, 52.189067], [21.451855, 52.191725], [21.450408, 52.191866], [21.450867, 52.193637], [21.44942, 52.193778], [21.44965, 52.194664], [21.448203, 52.194805], [21.448433, 52.195691], [21.444092, 52.196113], [21.443862, 52.195227], [21.442415, 52.195368], [21.442185, 52.194482], [21.440738, 52.194623], [21.440968, 52.195509], [21.436626, 52.195931], [21.436397, 52.195045], [21.433503, 52.195327], [21.434191, 52.197984], [21.428402, 52.198547], [21.428173, 52.197661], [21.426726, 52.197801], [21.426496, 52.196915], [21.417813, 52.197759], [21.418272, 52.19953], [21.415377, 52.199811], [21.415606, 52.200697], [21.414159, 52.200838], [21.414388, 52.201724], [21.412941, 52.201864], [21.41317, 52.20275], [21.408828, 52.203171], [21.409057, 52.204057], [21.404714, 52.204478], [21.404943, 52.205364], [21.402048, 52.205645], [21.402277, 52.206531], [21.40662, 52.20611], [21.406391, 52.205224], [21.410733, 52.204803], [21.410504, 52.203917], [21.422084, 52.202793], [21.421625, 52.201021]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"debug": {"type": "string"}}, "required": ["debug"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"debug" : "1.0.5"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"debug": {"type": "string"}}, "required": ["debug"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "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": {"Jordan Zucker": {"type": "string"}}, "required": ["Jordan Zucker"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "tvos": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "tvos", "osx"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "JSONLiteralString", "version" : "0.1.0", "summary" : "Converts JSON compatible Foundation objects into valid NSString literals.", "description" : "This is an obscure but distinct framework for converting JSON compatible objects into a valid NSString, represented as literals, that can be compiled into valid Foundation objects.", "homepage" : "https://github.com/jzucker2/JSONLiteralString", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Jordan Zucker" : "jordan.zucker@gmail.com"}, "source" : {"git" : "https://github.com/jzucker2/JSONLiteralString.git", "tag" : "0.1.0"}, "social_media_url" : "https://twitter.com/jzucker", "platforms" : {"ios" : "8.0", "tvos" : "9.0", "osx" : "10.8"}, "source_files" : "JSONLiteralString/Classes/**/*"}
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": {"Jordan Zucker": {"type": "string"}}, "required": ["Jordan Zucker"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "tvos": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "tvos", "osx"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "social_media_url", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 9110081003, "parent" : 9110081, "name" : "KARFA", "latitude" : null, "longitude" : null, "postal" : [98249], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x9231ba34f5553ca389af3bc5b2097756a196cdf01cb00aab3b62b1784c8223b1", "parentHash" : "0xd935563e4fcc1460b08ef400bb8aa6bc2b6ae3ac0c30bf621c1ee3fda402f75e", "number" : 19777, "timestamp" : 1438485212, "nonce" : "0xc469de16c055d707", "difficulty" : 975436310977, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"translation": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}}}, "required": ["translation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translation" : [{"key" : "Language successfully switched to English", "value" : "\u8bed\u8a00\u6210\u529f\u5207\u6362\u4e3a\u4e2d\u6587"}, {"key" : "Available languages: {str:ListOfLanguage}", "value" : "\u53ef\u7528\u8bed\u8a00: {str:ListOfLanguage}"}]}
json_instruct
{"type": "object", "properties": {"translation": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}}}, "required": ["translation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "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": {"yanyanforest": {"type": "string"}}, "required": ["yanyanforest"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "UICollectionViewLeftAlignFlowLayout", "version" : "0.1.2", "summary" : "UICollectionViewLeftAlignFlowLayout is left align Flowlayout for CollectionView.", "description" : "This library provides a easy use for UICollectionView with left align flow layout. performances!", "homepage" : "https://github.com/yanyanforest/UICollectionViewLeftAlignFlowLayout", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"yanyanforest" : "yanyanforest@163.com"}, "source" : {"git" : "https://github.com/yanyanforest/UICollectionViewLeftAlignFlowLayout.git", "tag" : "0.1.2"}, "platforms" : {"ios" : "7.0"}, "source_files" : "UICollectionViewLeftAlignFlowLayout/Classes/**/*", "frameworks" : "UIKit"}
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": {"yanyanforest": {"type": "string"}}, "required": ["yanyanforest"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Merles", "dpt" : "Tarn-et-Garonne", "inscrits" : 180, "abs" : 27, "votants" : 153, "blancs" : 12, "nuls" : 3, "exp" : 138, "res" : [{"panneau" : "2", "voix" : 75}, {"panneau" : "1", "voix" : 63}]}
json_instruct
{"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}, "account": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}, "billing_plan": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}, "payment_method": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}, "currency": {"type": "string"}, "description": {"type": "string"}, "starts": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}, "product": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}}, "required": ["object", "id", "product"]}}, "minimum_commitment": {"type": "integer"}, "policy": {"type": "object", "properties": {"ignore_cvn_policy": {"type": "integer"}, "ignore_avs_policy": {"type": "integer"}, "min_chargeback_probability": {"type": "integer"}, "immediate_auth_failure_policy": {"type": "string"}, "validate_for_future_payment": {"type": "integer"}}, "required": ["ignore_cvn_policy", "ignore_avs_policy", "min_chargeback_probability", "immediate_auth_failure_policy", "validate_for_future_payment"]}}, "required": ["object", "id", "account", "billing_plan", "payment_method", "currency", "description", "starts", "items", "minimum_commitment", "policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"object" : "Subscription", "id" : "sub_1234", "account" : {"object" : "Account", "id" : "cust_1234"}, "billing_plan" : {"object" : "BillingPlan", "id" : "plan_1234"}, "payment_method" : {"object" : "PaymentMethod", "id" : "paym_1234"}, "currency" : "USD", "description" : "Subscription_1234", "starts" : "2016-05-27T05:52:02-07:00", "items" : [{"object" : "SubscriptionItem", "id" : "sub_1234.1", "product" : {"object" : "Product", "id" : "prod_1234"}}, {"object" : "SubscriptionItem", "id" : "sub_1234.2", "product" : {"object" : "Product", "id" : "prod_1235"}}], "minimum_commitment" : 0, "policy" : {"ignore_cvn_policy" : 1, "ignore_avs_policy" : 1, "min_chargeback_probability" : 99, "immediate_auth_failure_policy" : "doNotSaveAutoBill", "validate_for_future_payment" : 0}}
json_instruct
{"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}, "account": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}, "billing_plan": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}, "payment_method": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}, "currency": {"type": "string"}, "description": {"type": "string"}, "starts": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}, "product": {"type": "object", "properties": {"object": {"type": "string"}, "id": {"type": "string"}}, "required": ["object", "id"]}}, "required": ["object", "id", "product"]}}, "minimum_commitment": {"type": "integer"}, "policy": {"type": "object", "properties": {"ignore_cvn_policy": {"type": "integer"}, "ignore_avs_policy": {"type": "integer"}, "min_chargeback_probability": {"type": "integer"}, "immediate_auth_failure_policy": {"type": "string"}, "validate_for_future_payment": {"type": "integer"}}, "required": ["ignore_cvn_policy", "ignore_avs_policy", "min_chargeback_probability", "immediate_auth_failure_policy", "validate_for_future_payment"]}}, "required": ["object", "id", "account", "billing_plan", "payment_method", "currency", "description", "starts", "items", "minimum_commitment", "policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"16945": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16944": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16943": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16939": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16940": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "84669": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "84667": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16942": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "84668": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16941": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["16945", "16944", "16943", "16939", "16940", "84669", "84667", "16942", "84668", "16941"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"16945" : {"nama" : "KEMPAS JAYA", "dapil" : [15, 1501, 11506, 2150605]}, "16944" : {"nama" : "LUMAHAN", "dapil" : [15, 1501, 11506, 2150605]}, "16943" : {"nama" : "MARGO RUKUN", "dapil" : [15, 1501, 11506, 2150605]}, "16939" : {"nama" : "SENYERANG", "dapil" : [15, 1501, 11506, 2150605]}, "16940" : {"nama" : "SUNGAIKAYU ARO", "dapil" : [15, 1501, 11506, 2150605]}, "84669" : {"nama" : "SUNGAIKEPAYANG", "dapil" : [15, 1501, 11506, 2150605]}, "84667" : {"nama" : "SUNGAILANDAK", "dapil" : [15, 1501, 11506, 2150605]}, "16942" : {"nama" : "SUNGAIRAMBAI", "dapil" : [15, 1501, 11506, 2150605]}, "84668" : {"nama" : "SUNGSANG", "dapil" : [15, 1501, 11506, 2150605]}, "16941" : {"nama" : "TELUKKETAPANG", "dapil" : [15, 1501, 11506, 2150605]}}
json_instruct
{"type": "object", "properties": {"16945": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16944": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16943": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16939": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16940": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "84669": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "84667": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16942": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "84668": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "16941": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["16945", "16944", "16943", "16939", "16940", "84669", "84667", "16942", "84668", "16941"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Thinkverse\\": {"type": "string"}}, "required": ["Thinkverse\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "homepage", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "thinkverse/package-tutorial", "type" : "library", "description" : "Package built for my Package Tutorial.", "homepage" : "https://github.com/thinkverse/package-tutorial", "license" : "MIT", "authors" : [{"name" : "Kim <thinkverse> Hallberg", "email" : "hallberg.kim@gmail.com"}], "require" : {"php" : ">=7.2"}, "autoload" : {"psr-4" : {"Thinkverse\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Thinkverse\\": {"type": "string"}}, "required": ["Thinkverse\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "homepage", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid 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" : "0x557bce2195a90152df6c54f8ec7b1c63b3563184840cd9c44c191f324b874790", "parentHash" : "0x62172f8ad8c5e437be61fc0d05d7184fe11938759da5fc042cfbd7fe549e1334", "number" : 66928, "timestamp" : 1439262652, "nonce" : "0xc265ecc8c8f9d423", "difficulty" : 1954613354741, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x47ff6576639c2e94762eA5443978D7681C0E78DC", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"month" : "1", "num" : 1470, "link" : "", "year" : "2015", "news" : "", "safe_title" : "Kix", "transcript" : "((This comic is a single panel))\n[[Three characters silently focus on a whiteboard, titled KIX SLOGAN IDEAS They clutch markers while pondering an ending to their slogan.]]\nKid tested, mother...\n\n[[There are several possible sentence endings, all verb phrases. They are all crossed out.]]\nselected\nperfected\nnot notified\nwatching helplessly\ninfected\nconsumed\nfucker\n\n{{Title text: My parents sent me to several years of intensive Kix test prep.}}", "alt" : "My parents sent me to several years of intensive Kix test prep.", "img" : "https://imgs.xkcd.com/comics/kix.png", "title" : "Kix", "day" : "7", "mirror_img" : "https://raw.githubusercontent.com/aghontpi/mirror-xkcd-api/main/api/1470/kix.png"}
json_instruct
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Key", "Value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Key" : "Project", "Value" : "Fog"}, {"Key" : "Owner", "Value" : "Arjen"}, {"Key" : "Environment", "Value" : "uat"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Key", "Value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u745e\u6615\u6a61\u81a0\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99680787", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u5f70\u5316\u7e23\u9e7f\u6e2f\u93ae\u9e7f\u5de5\u5357\u4e09\u8def\uff14\uff18\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u5f70\u5316\u7e23\u9e7f\u6e2f\u93ae", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u9673\u7f8e\u6eff", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "28778403", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0971009", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["21\u6a61\u81a0\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["210\u6a61\u81a0\u88fd\u54c1"]}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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.0.1": {"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.0.1", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1.1"], "meta" : {"description" : "A micro search engine", "homepage" : "https://github.com/jladdjr/mobius", "license" : "GPLv2"}, "versions" : {"0.0.1" : {"sha256" : "5535eaa8b5fc8c0edd2b05d7ef42166c796f058795cbb0c2e5b3151b2c85e427", "url" : "https://files.pythonhosted.org/packages/4c/ae/368cfbeb0f0b486c021621f50f0d79ffb8c8c8749555aac9814e0633a366/mobius-0.0.1.tar.gz"}, "0.1.1" : {"sha256" : "92da2791832a01527061069bc1ed6c96d7f3b6282faf51219244393ab2f4fbf8", "url" : "https://files.pythonhosted.org/packages/61/95/1725beb5993c55f0ca28476e42d575d6cbd7e7a8fd987294a19ca1032d29/mobius-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.0.1": {"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.0.1", "0.1.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-09-28T02:00:00Z", "Temp" : 23, "RelHum" : 75, "WindSpeed" : 0.5, "WindDir" : 313}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-74.704702, 40.18483], [-74.704697, 40.18549], [-74.703292, 40.185662], [-74.694968, 40.185718], [-74.680243, 40.194205], [-74.649941, 40.202413], [-74.642961, 40.203224], [-74.63539, 40.202184], [-74.642872, 40.195101], [-74.658084, 40.185499], [-74.663697, 40.180736], [-74.669774, 40.177164], [-74.679451, 40.173665], [-74.680531, 40.175013], [-74.680352, 40.175989], [-74.684505, 40.178036], [-74.685323, 40.17727], [-74.684595, 40.175642], [-74.68537, 40.175384], [-74.686894, 40.17743], [-74.690688, 40.176947], [-74.69238, 40.179329], [-74.695876, 40.178905], [-74.694413, 40.181485], [-74.695118, 40.182793], [-74.698392, 40.182586], [-74.702421, 40.184223], [-74.703646, 40.18387], [-74.704552, 40.182173], [-74.704702, 40.18483]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 39543}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"videomail-client.js": {"type": "string"}, "videomail-client.min.js": {"type": "string"}}, "required": ["videomail-client.js", "videomail-client.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"videomail-client.js" : "sha512-PzusqHeSAZYLyUekMBWx4BihrUFkDrCazWv08tW/t7qPny8fhjMud6ycDySBWHrb9jHQVTo1aHu6Op+pQqqJTA==", "videomail-client.min.js" : "sha512-7yQfKvCyScANu1Kr1fSlSXiWgP0ELOc9wrxWa+aVoieZafALdB0j9Gn/IYGIgbMGGsczSFDcjsrtLML1P2wJng=="}
json_instruct
{"type": "object", "properties": {"videomail-client.js": {"type": "string"}, "videomail-client.min.js": {"type": "string"}}, "required": ["videomail-client.js", "videomail-client.min.js"], "$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"}, "lines": {"type": "object", "properties": {"119": {"type": "string"}, "130": {"type": "string"}}, "required": ["119", "130"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "97394313", "lines" : {"119" : "public void setNotes(Notes notes) {\n", "130" : " sa.setNotesID(notes._getSheetNumber());\n"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"119": {"type": "string"}, "130": {"type": "string"}}, "required": ["119", "130"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"limit" : 100, "name" : "Cider (4)", "value" : 1, "highalch" : 1, "id" : 5849, "lowalch" : 1, "name_pt" : "Cidra (4)", "price" : 24099, "last" : 24099}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"format_version": {"type": "string"}, "minecraft:recipe_shaped": {"type": "object", "properties": {"description": {"type": "object", "properties": {"identifier": {"type": "string"}}, "required": ["identifier"]}, "tags": {"type": "array", "items": {"type": "string"}}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"a": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}, "b": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}, "c": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "d": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["a", "b", "c", "d"]}, "result": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}}}, "required": ["description", "tags", "pattern", "key", "result"]}}, "required": ["format_version", "minecraft:recipe_shaped"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"format_version" : "1.16.0", "minecraft:recipe_shaped" : {"description" : {"identifier" : "csccrafting:spawnegg_piglin"}, "tags" : ["crafting_table"], "pattern" : ["ada", "bcb", "ada"], "key" : {"a" : {"item" : "minecraft:dye", "data" : 11}, "b" : {"item" : "minecraft:dye", "data" : 14}, "c" : {"item" : "minecraft:egg"}, "d" : {"item" : "minecraft:golden_sword"}}, "result" : [{"item" : "minecraft:spawn_egg", "data" : 123}]}}
json_instruct
{"type": "object", "properties": {"format_version": {"type": "string"}, "minecraft:recipe_shaped": {"type": "object", "properties": {"description": {"type": "object", "properties": {"identifier": {"type": "string"}}, "required": ["identifier"]}, "tags": {"type": "array", "items": {"type": "string"}}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"a": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}, "b": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}, "c": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "d": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["a", "b", "c", "d"]}, "result": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}, "data": {"type": "integer"}}, "required": ["item", "data"]}}}, "required": ["description", "tags", "pattern", "key", "result"]}}, "required": ["format_version", "minecraft:recipe_shaped"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible 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" : "\u5be6\u82f1\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8\u65b0\u5e97\u4e8c\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99689260", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "08610001363716", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u65b0\u5e97\u5340\u4e2d\u6b63\u8def\u4e94\u4e09\u516b\u5df7\u4e09\u865f\u4e94\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u65b0\u5e97\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u90b1\u79cb\u6797", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "22163956", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0861003", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0861015", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["26\u96fb\u5b50\u96f6\u7d44\u4ef6\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["263\u5370\u5237\u96fb\u8def\u677f"]}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"alt": {"type": "string"}, "src": {"type": "string"}}, "required": ["alt", "src"]}}, "link": {"type": "string"}, "Pronunciation": {"type": "string"}, "IUPAC name": {"type": "string"}, "Other names": {"type": "string"}, "CAS Number": {"type": "string"}, "3D model (JSmol)": {"type": "string"}, "ChEBI": {"type": "string"}, "ChemSpider": {"type": "string"}, "DrugBank": {"type": "string"}, "ECHA InfoCard": {"type": "string"}, "E number": {"type": "string"}, "KEGG": {"type": "string"}, "UNII": {"type": "string"}, "Chemical formula": {"type": "string"}, "Molar mass": {"type": "string"}, "Density": {"type": "string"}, "Melting point": {"type": "string"}, "Boiling point": {"type": "string"}, "Solubility in water": {"type": "string"}, "Solubility": {"type": "string"}, "Acidity (pKa)": {"type": "string"}, "NFPA 704": {"type": "string"}, "standard state": {"type": "string"}}, "required": ["name", "desc", "images", "link", "Pronunciation", "IUPAC name", "Other names", "CAS Number", "3D model (JSmol)", "ChEBI", "ChemSpider", "DrugBank", "ECHA InfoCard", "E number", "KEGG", "UNII", "Chemical formula", "Molar mass", "Density", "Melting point", "Boiling point", "Solubility in water", "Solubility", "Acidity (pKa)", "NFPA 704", "standard state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Aspartame", "desc" : "Aspartame (APM) is an artificial, non-saccharide sweetener used as a sugar substitute in some foods and beverages. In the European Union, it is codified as E951. Aspartame is a methyl ester of the aspartic acid/phenylalanine dipeptide.", "images" : [{"alt" : "Aspartame", "src" : "//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Aspartame.svg/200px-Aspartame.svg.png"}, {"alt" : "Ball-and-stick model of aspartame", "src" : "//upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Aspartame-from-hydrate-xtal-2000-3D-balls.png/200px-Aspartame-from-hydrate-xtal-2000-3D-balls.png"}, {"alt" : "Aspartame sample.jpg", "src" : "//upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Aspartame_sample.jpg/200px-Aspartame_sample.jpg"}], "link" : "/wiki/Aspartame", "Pronunciation" : "/\u02c8\u00e6sp\u0259rte\u026am/ or /\u0259\u02c8sp\u0251\u02d0rte\u026am/", "IUPAC name" : "Methyl L-\u03b1-aspartyl-L-phenylalaninate", "Other names" : "N-(L-\u03b1-Aspartyl)-L-phenylalanine,\n1-methyl ester", "CAS Number" : "22839-47-0\u00a0Y", "3D model (JSmol)" : "Interactive image", "ChEBI" : "CHEBI:2877\u00a0Y", "ChemSpider" : "118630\u00a0Y", "DrugBank" : "DB00168\u00a0Y", "ECHA InfoCard" : "100.041.132", "E number" : "E951 (glazing agents, ...)", "KEGG" : "C11045\u00a0Y", "UNII" : "Z0H242BBR1\u00a0Y", "Chemical formula" : "<span title=\"Carbon\">C</span><sub>14</sub><span title=\"Hydrogen\">H</span><sub>18</sub><span title=\"Nitrogen\">N</span><sub>2</sub><span title=\"Oxygen\">O</span><sub>5</sub>", "Molar mass" : "294.31\u00a0g\u00b7mol\u22121", "Density" : "1.347 g/cm<sup>3</sup>", "Melting point" : "246 to 247\u00a0\u00b0C (475 to 477\u00a0\u00b0F; 519 to 520\u00a0K)", "Boiling point" : "decomposes", "Solubility in water" : "Sparingly soluble", "Solubility" : "Slightly soluble in ethanol", "Acidity (pKa)" : "4.5\u20136.0[2]", "NFPA 704" : "1\n1\n0", "standard state" : "Except where otherwise noted, data are given for materials in their standard state (at 25\u00a0\u00b0C [77\u00a0\u00b0F], 100\u00a0kPa).\nExcept where otherwise noted, data are given for materials in their standard state (at 25\u00a0\u00b0C [77\u00a0\u00b0F], 100\u00a0kPa)."}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"alt": {"type": "string"}, "src": {"type": "string"}}, "required": ["alt", "src"]}}, "link": {"type": "string"}, "Pronunciation": {"type": "string"}, "IUPAC name": {"type": "string"}, "Other names": {"type": "string"}, "CAS Number": {"type": "string"}, "3D model (JSmol)": {"type": "string"}, "ChEBI": {"type": "string"}, "ChemSpider": {"type": "string"}, "DrugBank": {"type": "string"}, "ECHA InfoCard": {"type": "string"}, "E number": {"type": "string"}, "KEGG": {"type": "string"}, "UNII": {"type": "string"}, "Chemical formula": {"type": "string"}, "Molar mass": {"type": "string"}, "Density": {"type": "string"}, "Melting point": {"type": "string"}, "Boiling point": {"type": "string"}, "Solubility in water": {"type": "string"}, "Solubility": {"type": "string"}, "Acidity (pKa)": {"type": "string"}, "NFPA 704": {"type": "string"}, "standard state": {"type": "string"}}, "required": ["name", "desc", "images", "link", "Pronunciation", "IUPAC name", "Other names", "CAS Number", "3D model (JSmol)", "ChEBI", "ChemSpider", "DrugBank", "ECHA InfoCard", "E number", "KEGG", "UNII", "Chemical formula", "Molar mass", "Density", "Melting point", "Boiling point", "Solubility in water", "Solubility", "Acidity (pKa)", "NFPA 704", "standard state"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "0.4_31"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"folio-bootstrap": {"type": "string"}, "jquery-ui": {"type": "string"}, "popper.js": {"type": "string"}, "vanilla-lazyload": {"type": "string"}, "selectize": {"type": "string"}, "sinfin-selectize-bootstrap-4-style": {"type": "string"}, "photoswipe": {"type": "string"}, "moment": {"type": "string"}, "slideout.js": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery-debounce": {"type": "string"}, "eonasdan-bootstrap-datetimepicker": {"type": "string"}, "multiselect": {"type": "string"}, "autosize": {"type": "string"}, "spectrum": {"type": "string"}, "js-cookie": {"type": "string"}, "balloon.css": {"type": "string"}, "jquery.kinetic": {"type": "string"}, "dropzone": {"type": "string"}, "cleave.js": {"type": "string"}, "material-design-icons": {"type": "string"}, "select2": {"type": "string"}, "clipboard": {"type": "string"}, "slick-carousel": {"type": "string"}}, "required": ["folio-bootstrap", "jquery-ui", "popper.js", "vanilla-lazyload", "selectize", "sinfin-selectize-bootstrap-4-style", "photoswipe", "moment", "slideout.js", "font-awesome", "jquery-debounce", "eonasdan-bootstrap-datetimepicker", "multiselect", "autosize", "spectrum", "js-cookie", "balloon.css", "jquery.kinetic", "dropzone", "cleave.js", "material-design-icons", "select2", "clipboard", "slick-carousel"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "authors", "version", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "folio", "authors" : ["Sinfin <info@sinfin.cz>"], "version" : "0.0.0", "dependencies" : {"folio-bootstrap" : "https://github.com/twbs/bootstrap.git#v4.5.2", "jquery-ui" : "^1.12.1", "popper.js" : "https://unpkg.com/popper.js", "vanilla-lazyload" : "^11.0.6", "selectize" : "^0.12.6", "sinfin-selectize-bootstrap-4-style" : "sinfin/selectize-bootstrap-4-style#cddc9b76", "photoswipe" : "^4.1.3", "moment" : "^2.24.0", "slideout.js" : "https://github.com/mango/slideout.git#^1.0.1", "font-awesome" : "^5.7.1", "jquery-debounce" : "^1.0.6", "eonasdan-bootstrap-datetimepicker" : "^4.17.47", "multiselect" : "^0.9.12", "autosize" : "^4.0.2", "spectrum" : "^1.8.0", "js-cookie" : "^2.2.0", "balloon.css" : "^1.0.0", "jquery.kinetic" : "https://raw.githubusercontent.com/davetayls/jquery.kinetic/master/jquery.kinetic.js", "dropzone" : "^5.5.0", "cleave.js" : "^1.5.3", "material-design-icons" : "^4.0.0", "select2" : "^4.0.13", "clipboard" : "^2.0.6", "slick-carousel" : "^1.8.1"}, "devDependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"folio-bootstrap": {"type": "string"}, "jquery-ui": {"type": "string"}, "popper.js": {"type": "string"}, "vanilla-lazyload": {"type": "string"}, "selectize": {"type": "string"}, "sinfin-selectize-bootstrap-4-style": {"type": "string"}, "photoswipe": {"type": "string"}, "moment": {"type": "string"}, "slideout.js": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery-debounce": {"type": "string"}, "eonasdan-bootstrap-datetimepicker": {"type": "string"}, "multiselect": {"type": "string"}, "autosize": {"type": "string"}, "spectrum": {"type": "string"}, "js-cookie": {"type": "string"}, "balloon.css": {"type": "string"}, "jquery.kinetic": {"type": "string"}, "dropzone": {"type": "string"}, "cleave.js": {"type": "string"}, "material-design-icons": {"type": "string"}, "select2": {"type": "string"}, "clipboard": {"type": "string"}, "slick-carousel": {"type": "string"}}, "required": ["folio-bootstrap", "jquery-ui", "popper.js", "vanilla-lazyload", "selectize", "sinfin-selectize-bootstrap-4-style", "photoswipe", "moment", "slideout.js", "font-awesome", "jquery-debounce", "eonasdan-bootstrap-datetimepicker", "multiselect", "autosize", "spectrum", "js-cookie", "balloon.css", "jquery.kinetic", "dropzone", "cleave.js", "material-design-icons", "select2", "clipboard", "slick-carousel"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "authors", "version", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "350923101001", "text" : "\u53cc\u6eaa\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "350923101202", "text" : "\u4e7e\u6e90\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "350923101203", "text" : "\u5ced\u9876\u6751\u59d4\u4f1a"}, {"id" : "350923101204", "text" : "\u4e0a\u4e03\u623f\u6751\u59d4\u4f1a"}, {"id" : "350923101205", "text" : "\u4e0b\u4e03\u623f\u6751\u59d4\u4f1a"}, {"id" : "350923101206", "text" : "\u524d\u6d0b\u6751\u59d4\u4f1a"}, {"id" : "350923101207", "text" : "\u90d1\u5c71\u6751\u59d4\u4f1a"}, {"id" : "350923101208", "text" : "\u540e\u5ced\u6751\u59d4\u4f1a"}, {"id" : "350923101209", "text" : "\u5b9c\u6d0b\u6751\u59d4\u4f1a"}, {"id" : "350923101210", "text" : "\u5ca9\u540e\u6751\u59d4\u4f1a"}, {"id" : "350923101211", "text" : "\u7ae0\u5cad\u6751\u59d4\u4f1a"}, {"id" : "350923101212", "text" : "\u5317\u6751\u6751\u59d4\u4f1a"}, {"id" : "350923101213", "text" : "\u5c71\u5934\u6751\u59d4\u4f1a"}, {"id" : "350923101214", "text" : "\u9ad8\u5b89\u6751\u59d4\u4f1a"}, {"id" : "350923101215", "text" : "\u524d\u6eaa\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/3190683011", "properties" : {"amenity" : "marketplace", "id" : "node/3190683011"}, "geometry" : {"type" : "Point", "coordinates" : [19.8117535, 47.0287299]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"select-group": {"type": "string"}, "helper": {"type": "string"}, "placeholder": {"type": "string"}, "title": {"type": "string"}, "has-value": {"type": "string"}, "content": {"type": "string"}, "multiple": {"type": "string"}, "icon-end": {"type": "string"}, "has-focus": {"type": "string"}, "options": {"type": "string"}, "open": {"type": "string"}, "fadeIn": {"type": "string"}, "options-list": {"type": "string"}, "item": {"type": "string"}, "close": {"type": "string"}, "selectGroup": {"type": "string"}, "hasValue": {"type": "string"}, "iconEnd": {"type": "string"}, "hasFocus": {"type": "string"}, "optionsList": {"type": "string"}}, "required": ["select-group", "helper", "placeholder", "title", "has-value", "content", "multiple", "icon-end", "has-focus", "options", "open", "fadeIn", "options-list", "item", "close", "selectGroup", "hasValue", "iconEnd", "hasFocus", "optionsList"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"select-group" : "select_select-group__1UUZq", "helper" : "select_helper__1p0iL", "placeholder" : "select_placeholder__198oK", "title" : "select_title__35s9Z", "has-value" : "select_has-value__3GPT7", "content" : "select_content__3iCy-", "multiple" : "select_multiple__2gUBq", "icon-end" : "select_icon-end__TaQD5", "has-focus" : "select_has-focus__1JlCw", "options" : "select_options__rO37z", "open" : "select_open__PU8Wi", "fadeIn" : "select_fadeIn__G0KUy", "options-list" : "select_options-list__1_W1l", "item" : "select_item__3lcA1", "close" : "select_close__1Tgh0", "selectGroup" : "select_select-group__1UUZq", "hasValue" : "select_has-value__3GPT7", "iconEnd" : "select_icon-end__TaQD5", "hasFocus" : "select_has-focus__1JlCw", "optionsList" : "select_options-list__1_W1l"}
json_instruct
{"type": "object", "properties": {"select-group": {"type": "string"}, "helper": {"type": "string"}, "placeholder": {"type": "string"}, "title": {"type": "string"}, "has-value": {"type": "string"}, "content": {"type": "string"}, "multiple": {"type": "string"}, "icon-end": {"type": "string"}, "has-focus": {"type": "string"}, "options": {"type": "string"}, "open": {"type": "string"}, "fadeIn": {"type": "string"}, "options-list": {"type": "string"}, "item": {"type": "string"}, "close": {"type": "string"}, "selectGroup": {"type": "string"}, "hasValue": {"type": "string"}, "iconEnd": {"type": "string"}, "hasFocus": {"type": "string"}, "optionsList": {"type": "string"}}, "required": ["select-group", "helper", "placeholder", "title", "has-value", "content", "multiple", "icon-end", "has-focus", "options", "open", "fadeIn", "options-list", "item", "close", "selectGroup", "hasValue", "iconEnd", "hasFocus", "optionsList"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"woofmark.css": {"type": "string"}, "woofmark.js": {"type": "string"}, "woofmark.min.css": {"type": "string"}, "woofmark.min.js": {"type": "string"}}, "required": ["woofmark.css", "woofmark.js", "woofmark.min.css", "woofmark.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"woofmark.css" : "sha512-L9Qk9d1mXCS3FofQaB1UAYFZzn9e2VDTfgVawK5aEw7WoIr3cshlr43CDbsmlsaLUbWNXPedNNBu5Lbq8coIIw==", "woofmark.js" : "sha512-mP9/LHYW79dJTvb43S/vVMQ+85cwpY8Ev/bRzhrWMei6ZWaZaD3h2P4vxvpLEei/Jzq4iZApoh7WqUorCv/ziQ==", "woofmark.min.css" : "sha512-dZj2LdtU/goeYT5wUEZL40Acnm5odBpwosbdY7Ns3nF+cDy1nxWU2cvcNB2r8BzhB0Lb/Jlja9IKvXjTfNF3qw==", "woofmark.min.js" : "sha512-+gpBhTO32jD3pn0PEHl4hFfEotNorLNYw9T5aQiz08XfGyMiB/wtP+vCvqUSQb+L2jqoQ4pOiHi/K2mnmtmzmw=="}
json_instruct
{"type": "object", "properties": {"woofmark.css": {"type": "string"}, "woofmark.js": {"type": "string"}, "woofmark.min.css": {"type": "string"}, "woofmark.min.js": {"type": "string"}}, "required": ["woofmark.css", "woofmark.js", "woofmark.min.css", "woofmark.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : 101886263, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "03ce65dc7a39481e28ddedea79fdc583", "wof:id" : 101886263, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [7.56402, 48.18296, 7.56402, 48.18296], "geometry" : {"coordinates" : [7.56402, 48.18296], "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": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "Dan Rothchild", "trackCount" : 1, "tracks" : [{"_id" : "609", "names" : ["If It Makes You Happy"], "releases" : [{"_id" : "233", "names" : ["Sheryl Crow"]}], "artists" : [{"_id" : "162", "names" : ["Sheryl Crow"]}]}], "targets" : [{"name" : "Sheryl Crow", "targetId" : "1018", "trackCount" : 1, "tracks" : ["609"]}, {"name" : "Jeff Trott", "targetId" : "1022", "trackCount" : 1, "tracks" : ["609"]}, {"name" : "Michael Urbano", "targetId" : "1026", "trackCount" : 1, "tracks" : ["609"]}]}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2027", "provinceId" : "92", "regencyId" : "10", "districtId" : "03", "name" : "Sanem"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "clot-005_1", "size" : 1164695478, "link" : "https://streamtape.com/e/doVxlDL8D7Sk49q", "created_at" : "2022\u5e7404\u670804\u65e5 01:55:33", "downloads" : 0, "linkid" : "doVxlDL8D7Sk49q", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "CLOT-005 \u7761\u8457\u7684\u4eba\u59bb \u4e09\u539f\u7a57\u9999", "thumbUrl" : "https://assets-cdn.jable.tv/contents/videos_screenshots/20000/20564/320x180/1.jpg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id_5969": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_5969"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_5969" : {"title" : "Cousin Henry", "language" : "English", "totaltime" : "5:47:07", "url_librivox" : "http://librivox.org/cousin-henry-by-anthony-trollope/", "url_iarchive" : "http://www.archive.org/details/cousinhenry_1202_librivox", "readers" : ["6345"], "authors" : "513", "genres" : "General Fiction"}}
json_instruct
{"type": "object", "properties": {"id_5969": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_5969"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "string"}, "ghcn": {"type": "string"}, "wban": {"type": "null"}, "usaf": {"type": "string"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "48615", "name" : {"en" : "Kota Bharu"}, "country" : "MY", "region" : "KN", "identifiers" : {"national" : null, "wmo" : "48615", "ghcn" : "MYM00048615", "wban" : null, "usaf" : "486150", "mosmix" : null, "icao" : "WMKC", "iata" : "KBR"}, "location" : {"latitude" : 6.1667, "longitude" : 102.2833, "elevation" : 5}, "timezone" : "Asia/Kuala_Lumpur", "history" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "string"}, "ghcn": {"type": "string"}, "wban": {"type": "null"}, "usaf": {"type": "string"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Sokoto State University", "alt_name" : "(SSU)", "country" : "Nigeria", "state" : null, "address" : {"street" : "P.M.B. 2134, Near Airport, Birnin Kebbi Road", "city" : "Sokoto", "province" : "Sokoto State", "postal_code" : null}, "contact" : {"telephone" : "+234(903) 037-8374", "website" : "http://www.ssu.edu.ng", "email" : "info@ssu.edu.ng", "fax" : null}, "funding" : "Public", "languages" : null, "academic_year" : null, "accrediting_agency" : "Universities Commission (NUC)"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "lab": {"type": "string"}, "sinon": {"type": "string"}, "sinon-chai": {"type": "string"}}, "required": ["chai", "lab", "sinon", "sinon-chai"]}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "contralog": {"type": "string"}, "hoek": {"type": "string"}, "lodash": {"type": "string"}, "mongoose": {"type": "string"}, "valid-url": {"type": "string"}}, "required": ["bluebird", "contralog", "hoek", "lodash", "mongoose", "valid-url"]}}, "required": ["name", "version", "description", "main", "scripts", "directories", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "joshball-node-utils", "version" : "1.0.2", "description" : "Some utils I use in multiple projects", "main" : "lib/index", "scripts" : {"test" : "node_modules/.bin/lab"}, "directories" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "https://github.com/joshball/joshball-node-utils"}, "author" : "Joshua Ball <joshua.g.s.ball@gmail.com> (https://github.com/joshball/)", "license" : "MIT", "bugs" : {"url" : "https://github.com/joshball/joshball-node-utils/issues"}, "homepage" : "https://github.com/joshball/joshball-node-utils", "devDependencies" : {"chai" : "^3.0.0", "lab" : "^5.13.0", "sinon" : "^1.15.4", "sinon-chai" : "^2.8.0"}, "dependencies" : {"bluebird" : "^2.9.33", "contralog" : "git+https://github.com/joshball/contralog.git", "hoek" : "^2.14.0", "lodash" : "^3.10.0", "mongoose" : "4.0.7", "valid-url" : "^1.0.9"}}
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"]}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "lab": {"type": "string"}, "sinon": {"type": "string"}, "sinon-chai": {"type": "string"}}, "required": ["chai", "lab", "sinon", "sinon-chai"]}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "contralog": {"type": "string"}, "hoek": {"type": "string"}, "lodash": {"type": "string"}, "mongoose": {"type": "string"}, "valid-url": {"type": "string"}}, "required": ["bluebird", "contralog", "hoek", "lodash", "mongoose", "valid-url"]}}, "required": ["name", "version", "description", "main", "scripts", "directories", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["laforge-sequelize"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"header" : {"protoclVersion" : {"protocolVersion" : "0.0.2"}}, "body" : {"rx_obcTime" : "2112327", "rx_recvCnt" : "324", "rx_gpsDate" : "110319", "rx_gpsTime" : "105312", "rx_lat" : 43.003004, "rx_long" : 141.43488, "rx_alt" : "36", "rx_temp" : "21.71", "rx_airP" : "99588", "rx_bSize" : "35", "tx_id" : "23", "tx_cnt" : "82", "payload" : 1, "tx_gpsTime" : "105303", "tx_lat" : 43.0025, "tx_long" : 141.435536, "tx_alt" : 38}}
json_instruct
{"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_recvCnt": {"type": "string"}, "rx_gpsDate": {"type": "string"}, "rx_gpsTime": {"type": "string"}, "rx_lat": {"type": "number"}, "rx_long": {"type": "number"}, "rx_alt": {"type": "string"}, "rx_temp": {"type": "string"}, "rx_airP": {"type": "string"}, "rx_bSize": {"type": "string"}, "tx_id": {"type": "string"}, "tx_cnt": {"type": "string"}, "payload": {"type": "integer"}, "tx_gpsTime": {"type": "string"}, "tx_lat": {"type": "number"}, "tx_long": {"type": "number"}, "tx_alt": {"type": "integer"}}, "required": ["rx_obcTime", "rx_recvCnt", "rx_gpsDate", "rx_gpsTime", "rx_lat", "rx_long", "rx_alt", "rx_temp", "rx_airP", "rx_bSize", "tx_id", "tx_cnt", "payload", "tx_gpsTime", "tx_lat", "tx_long", "tx_alt"]}}, "required": ["header", "body"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["#tconstruct:casts/multi_use/ingot", "#tconstruct:casts/multi_use/nugget", "#tconstruct:casts/multi_use/gem", "#tconstruct:casts/multi_use/rod", "#tconstruct:casts/multi_use/repair_kit", "#tconstruct:casts/multi_use/plate", "#tconstruct:casts/multi_use/gear", "#tconstruct:casts/multi_use/coin", "#tconstruct:casts/multi_use/wire", "#tconstruct:casts/multi_use/pick_head", "#tconstruct:casts/multi_use/small_axe_head", "#tconstruct:casts/multi_use/small_blade", "#tconstruct:casts/multi_use/hammer_head", "#tconstruct:casts/multi_use/broad_axe_head", "#tconstruct:casts/multi_use/broad_blade", "#tconstruct:casts/multi_use/tool_binding", "#tconstruct:casts/multi_use/round_plate", "#tconstruct:casts/multi_use/large_plate", "#tconstruct:casts/multi_use/tool_handle", "#tconstruct:casts/multi_use/tough_handle"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "integer"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200820297500000, "key" : "7bc1ad42-2370-58de-afab-802ef471d27d{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"trim\":false,\"toFormat\":\"webp\",\"toFormatBase64\":\"\",\"width\":20,\"height\":20}", "val" : {"src" : "data:image/webp;base64,UklGRtwAAABXRUJQVlA4INAAAABQBQCdASoUABQAPtFgqE+oJSOiKAgBABoJYwCdMoAlwwnMDKWJZEsbuxp9yR2uRz3PnoAA/t1vPf6zUEBxDTavn/9p1bdUkuCp451CTSIDZe1/AhJr6Sm2rkDqNxaM0pq7xBnOmLJQPi4coNo4ERAxYG0kLvLfDvk81evaFbP0ahu2mzLHa+eqFkHs4EdUU1KF+FX/KzZqYOOKxAVHE0KYUpCksPBsQQIxkIPGOtLY6YmjvxRBIvdDDYoSnq9mIySKGmNu+0oXy/QE0tyEiAAA", "width" : 20, "height" : 20, "aspectRatio" : 1, "originalName" : "wwe3.jpg"}}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "integer"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "3": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "4": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "5": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2", "3", "4", "5"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : {"0" : {"m1" : "\u0632\u0627\u0647\u062f \u0645\u062e\u0645\u0648\u0631 \u0631\u0627 \u0631\u0627\u0647\u0650 \u0645\u0646\u0627\u062c\u0627\u062a \u0628\u0633", "m2" : "\u0639\u0627\u0631\u0641 \u0645\u062c\u0645\u0648\u0639 \u0631\u0627 \u06a9\u0646\u062c \u062e\u0631\u0627\u0628\u0627\u062a \u0628\u0633"}, "1" : {"m1" : "\u0634\u0627\u0647\u062f \u0645\u0627 \u06af\u0648 \u062f\u0631\u0622\u06cc \u062a\u0627 \u0646\u0638\u0631\u06cc \u062e\u0648\u0634 \u06a9\u0646\u06cc\u0645", "m2" : "\u0628\u06cc\u200c\u063a\u0631\u0636 \u0639\u0634\u0642 \u0631\u0627 \u0630\u0648\u0642 \u0645\u0644\u0627\u0642\u0627\u062a \u0628\u0633"}, "2" : {"m1" : "\u0632\u0647\u062f \u0645\u0648\u0631\u0632 \u0627\u06cc \u0641\u0642\u06cc\u0647 \u0628\u0627\u062f\u0647 \u200c\u062e\u0648\u0631 \u0648 \u0639\u0634\u0642 \u0628\u0627\u0632", "m2" : "\u06af\u0631 \u062f\u0645 \u0645\u0627 \u0645\u06cc\u200c\u0632\u0646\u06cc \u0647\u0645 \u0631\u0648\u0634 \u0645\u0627\u062a \u0628\u0633"}, "3" : {"m1" : "\u0645\u0639\u0631\u0641\u062a \u06a9\u0631\u062f\u06af\u0627\u0631 \u0648\u0635\u0641 \u06a9\u0646 \u0627\u0631 \u0639\u0627\u0631\u0641\u06cc", "m2" : "\u0648\u0631 \u0646\u0647 \u06a9\u0631\u0645 \u06a9\u0646 \u062e\u0645\u0648\u0634 \u0686\u0646\u062f \u06a9\u0631\u0627\u0645\u0627\u062a \u0628\u0633"}, "4" : {"m1" : "\u0632 \u0622\u0646 \u0686\u0647 \u062a\u0648 \u06af\u0645 \u06a9\u0631\u062f\u0647\u200c\u0627\u06cc \u0628\u0627\u0632 \u0646\u06cc\u0627\u0628\u06cc \u0628\u0647 \u0628\u0627\u0646\u06af", "m2" : "\u0646\u0639\u0631\u0647 \u0645\u0632\u0646 \u062a\u0627 \u0628\u0647 \u06a9\u06cc \u0632\u06cc\u0646 \u0647\u0645\u0647 \u0637\u0627\u0645\u0627\u062a \u0628\u0633"}, "5" : {"m1" : "\u0631\u0645\u0632 \u0646\u0632\u0627\u0631\u06cc \u0646\u06af\u0631 \u062a\u0627 \u06a9\u0647 \u0628\u062f\u0627\u0646\u06cc \u06a9\u0647 \u0686\u06cc\u0633\u062a", "m2" : "\u06cc\u0639\u0646\u06cc \u0627\u06af\u0631 \u0637\u0627\u0644\u0628\u06cc \u0631\u0647\u0628\u0631\u0650 \u062f\u0627\u0646\u0627\u062a \u0628\u0633"}}}
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "3": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "4": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "5": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2", "3", "4", "5"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"__GIT_COMMIT__": {"type": "string"}, "resize_Config_should_show_by_default": {"type": "string"}, "resize_Resize_the_container_causes_the_widget_to_resize": {"type": "string"}, "resize_row_pivots_traitlet_works": {"type": "string"}}, "required": ["__GIT_COMMIT__", "resize_Config_should_show_by_default", "resize_Resize_the_container_causes_the_widget_to_resize", "resize_row_pivots_traitlet_works"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__GIT_COMMIT__" : "21eb6e6303888b41ec49891317c4302f93515335", "resize_Config_should_show_by_default" : "b8bc3ea0c100cbd12f2b6364d13ad2cc", "resize_Resize_the_container_causes_the_widget_to_resize" : "b8bc3ea0c100cbd12f2b6364d13ad2cc", "resize_row_pivots_traitlet_works" : "52d03e6b2e62254a8135c0450d6ef1f2"}
json_instruct
{"type": "object", "properties": {"__GIT_COMMIT__": {"type": "string"}, "resize_Config_should_show_by_default": {"type": "string"}, "resize_Resize_the_container_causes_the_widget_to_resize": {"type": "string"}, "resize_row_pivots_traitlet_works": {"type": "string"}}, "required": ["__GIT_COMMIT__", "resize_Config_should_show_by_default", "resize_Resize_the_container_causes_the_widget_to_resize", "resize_row_pivots_traitlet_works"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "guzzlehttp/oauth-subscriber": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle", "guzzlehttp/oauth-subscriber"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "psr/log": {"type": "string"}}, "required": ["phpunit/phpunit", "psr/log"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Onemax\\": {"type": "string"}}, "required": ["Onemax\\"]}, "classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "classmap"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Onemax\\Tests\\": {"type": "string"}}, "required": ["Onemax\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "homepage", "license", "repositories", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "honganh/onemax-api-php", "type" : "library", "description" : "Connect to onemax api", "homepage" : "http://api.onemax.com.vn/", "license" : "MIT", "repositories" : [{"type" : "git", "url" : "https://github.com/honganh/onemax-api-php.git"}], "authors" : [{"name" : "onemax dev team", "email" : "hotro@onemax.com.vn", "homepage" : "https://github.com/honganh"}], "require" : {"php" : ">=5.5.0", "guzzlehttp/guzzle" : "~6.0", "guzzlehttp/oauth-subscriber" : "0.3.*"}, "require-dev" : {"phpunit/phpunit" : "~4.0", "psr/log" : "~1.0"}, "autoload" : {"psr-4" : {"Onemax\\" : "src/"}, "classmap" : ["src/"]}, "autoload-dev" : {"psr-4" : {"Onemax\\Tests\\" : "tests/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "guzzlehttp/oauth-subscriber": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle", "guzzlehttp/oauth-subscriber"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "psr/log": {"type": "string"}}, "required": ["phpunit/phpunit", "psr/log"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Onemax\\": {"type": "string"}}, "required": ["Onemax\\"]}, "classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "classmap"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Onemax\\Tests\\": {"type": "string"}}, "required": ["Onemax\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "homepage", "license", "repositories", "authors", "require", "require-dev", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"timestamp": {"type": "string"}, "type": {"type": "string"}, "message": {"type": "string"}, "data": {"type": "object", "properties": {"baz": {"type": "string"}}, "required": ["baz"]}}, "required": ["timestamp", "type", "message", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timestamp" : "2016-02-22T20:43:39+00:00", "type" : "info", "message" : "there was an info", "data" : {"baz" : "123"}}
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "string"}, "type": {"type": "string"}, "message": {"type": "string"}, "data": {"type": "object", "properties": {"baz": {"type": "string"}}, "required": ["baz"]}}, "required": ["timestamp", "type", "message", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 6937, "citation_title" : "Price, Clean Indoor Air, and Cigarette Smoking: Evidence from the Longitudinal Data for Young Adults", "citation_author" : ["John A. Tauras", "Frank J. Chaloupka"], "citation_publication_date" : "1999-02-01", "issue_date" : "1999-02-01", "revision_date" : "None", "topics" : ["Health, Education, and Welfare", "Health"], "program" : ["Health Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThe upward trend in cigarette smoking among teenagers throughout the 1990's has spurred a great deal of interest on how to discourage young people from smoking. This paper attempts to inform policy makers by providing evidence on the effects cigarette prices (which can be increased through cigarette excise taxes) and restrictions on smoking in public places and private worksites have on the use of cigarettes by young adults. Data on cigarette use are taken from the 1976 through 1993 surveys of high school seniors as part of the Monitoring the Future program. Seven follow-ups are conducted on each senior class and therefore each individual is sampled up to eight times. Site-specific data on cigarette prices and clean indoor air laws are added to the survey data. Individual fixed effects methods are used to estimate smoking participation and conditional demand equations. The results indicate that increases in cigarette prices would lead to significant reductions in both the number of people smoking and the frequency with which individuals smoke. The estimated overall average price elasticity of demand is -0.791. In addition, restrictions on smoking in public places and private worksites are found to be effective in reducing both the intensity and the propensity to smoke.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}}, "required": ["bootstrap"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "milkyway-multimedia/ss-mwm", "version" : "0.1.0", "private" : true, "dependencies" : {}, "devDependencies" : {"bootstrap" : "~3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}}, "required": ["bootstrap"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "message": {"type": "string"}, "passed": {"type": "boolean"}, "points": {"type": "array", "items": {"type": "string"}}, "backtrace": {"type": "array", "items": {}}}, "required": ["name", "status", "message", "passed", "points", "backtrace"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "test.test_correlation.Correlation.test_correlations", "status" : "passed", "message" : "", "passed" : true, "points" : ["p03-05.2"], "backtrace" : []}, {"name" : "test.test_correlation.Correlation.test_lengths", "status" : "passed", "message" : "", "passed" : true, "points" : ["p03-05.1"], "backtrace" : []}, {"name" : "test.test_correlation.Correlation.test_lengths_calls", "status" : "passed", "message" : "", "passed" : true, "points" : ["p03-05.1", "p03-05.2"], "backtrace" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "message": {"type": "string"}, "passed": {"type": "boolean"}, "points": {"type": "array", "items": {"type": "string"}}, "backtrace": {"type": "array", "items": {}}}, "required": ["name", "status", "message", "passed", "points", "backtrace"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"css/grapes.min.css": {"type": "string"}, "grapes.min.js": {"type": "string"}}, "required": ["css/grapes.min.css", "grapes.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/grapes.min.css" : "sha512-Q5cY5LlKuSEImkBB4zH/2jJlw1JM6m/nRhmPjv9bBcLZCmkhipjpY1zA/cDCrxjJy+7nxe15+93S2c/ZMfuQZw==", "grapes.min.js" : "sha512-3nfuptV9w1hDTM8DT0rrR+6gjFMq6EWA3yBda4QOlycNu/2C4VYLvHSFkb6Nk+C1xgzVywS74VlySfqnMaTdew=="}
json_instruct
{"type": "object", "properties": {"css/grapes.min.css": {"type": "string"}, "grapes.min.js": {"type": "string"}}, "required": ["css/grapes.min.css", "grapes.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "C:\\Users\\BLDE\\AndroidStudioProjects\\MyApplication3\\Scorekeeper\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi\\ic_minus.png", "source" : "C:\\Users\\BLDE\\AndroidStudioProjects\\MyApplication3\\Scorekeeper\\app\\build\\generated\\res\\pngs\\debug\\drawable-xhdpi\\ic_minus.png"}, {"merged" : "C:\\Users\\BLDE\\AndroidStudioProjects\\MyApplication3\\Scorekeeper\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi\\ic_plus.png", "source" : "C:\\Users\\BLDE\\AndroidStudioProjects\\MyApplication3\\Scorekeeper\\app\\build\\generated\\res\\pngs\\debug\\drawable-xhdpi\\ic_plus.png"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 3, "n_trials" : 210, "objective" : "markowitz_realized_on_cube", "white" : "hebo_sequential", "black" : "shgo_slsqp_sobol", "traceback" : ["passing", "passing"], "best_val" : [-0.022837320833602737, -0.026536788403227683], "best_x" : [[0.9998318367181513, 0.00014958788516394872, 8.157819655044734e-06], [0.1942472692978126, 1.7447063149677773e-17, 0.8057527306881996]], "feval_count" : [210, 417], "n_trials_instructed" : [210, 65], "passing" : [true, true], "completed" : false, "winner" : "incomplete", "points" : null}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["abi-code-gen", "ambassador", "balloon-generator", "clay-run", "cortex-profile", "document", "ecrit", "extension-tools", "fdm", "flashroutingtests", "gerencio-upgrade", "gherkindoc", "git-headup", "gomake-mock-data", "grunt-cortex-neuron-build", "grunt-gallery", "grunt-lokalise", "grunt-tube", "gulp-proactive-nugetpack", "gulp-release", "i2g", "merge-web-dirs", "mock-telemetry", "module-wrapper", "multi-profile", "multi-watcher", "neocortex", "neocortex-sync", "neocortex-sync-canary", "noddity-installer", "nodify-cli", "ns-tools", "paquet", "pomjs", "ppear-command-migrate", "put-in", "quihex", "stare", "stopp", "strong-globalize", "tmp-sync", "typo-image", "unwrap-project", "yog-amg"]
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": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "A Multivariate Complexity Analysis of Determining Possible Winners Given Incomplete Votes.", "fields" : ["multivariate statistics", "time complexity", "voting", "special case", "scoring rule"], "abstract" : "The POSSIBLE WINNER problem asks whether some distinguished candidate may become the winner of an election when the given incomplete votes are extended into complete ones in a favorable way. POSSIBLE WINNER is NP-complete for common voting rules such as Borda, many other positional scoring rules, Bucklin, Copeland etc. We investigate how three different parameterizations influence the computational complexity of POSSIBLE WINNER for a number of voting rules. We show fixed-parameter tractability results with respect to the parameter \"number of candidates\" but intractability results with respect to the parameter \"number of votes\". Finally, we derive fixed-parameter tractability results with respect to the parameter \"total number of undetermined candidate pairs\" and identify an interesting polynomial-time solvable special case for Borda.", "citation" : "Citations (88)", "departments" : ["University of Jena", "University of Jena", "University of Jena"], "authors" : ["Nadja Betzler.....http://dblp.org/pers/hd/b/Betzler:Nadja", "Susanne Hemmann.....http://dblp.org/pers/hd/h/Hemmann:Susanne", "Rolf Niedermeier.....http://dblp.org/pers/hd/n/Niedermeier:Rolf"], "conf" : "ijcai", "year" : "2009", "pages" : 6}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "region": {"type": "string"}, "source_ami": {"type": "string"}, "instance_type": {"type": "string"}, "ssh_username": {"type": "string"}, "ssh_timeout": {"type": "string"}, "ami_name": {"type": "string"}}, "required": ["type", "region", "source_ami", "instance_type", "ssh_username", "ssh_timeout", "ami_name"]}}, "provisioners": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "script": {"type": "string"}, "remote_path": {"type": "string"}}, "required": ["type", "script", "remote_path"]}}}, "required": ["builders", "provisioners"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builders" : [{"type" : "amazon-ebs", "region" : "ap-northeast-1", "source_ami" : "ami-3561fe34", "instance_type" : "m1.medium", "ssh_username" : "ec2-user", "ssh_timeout" : "5m", "ami_name" : "amznlinux-{{timestamp}}"}], "provisioners" : [{"type" : "shell", "script" : "script.sh", "remote_path" : "/tmp/script.sh"}]}
json_instruct
{"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "region": {"type": "string"}, "source_ami": {"type": "string"}, "instance_type": {"type": "string"}, "ssh_username": {"type": "string"}, "ssh_timeout": {"type": "string"}, "ami_name": {"type": "string"}}, "required": ["type", "region", "source_ami", "instance_type", "ssh_username", "ssh_timeout", "ami_name"]}}, "provisioners": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "script": {"type": "string"}, "remote_path": {"type": "string"}}, "required": ["type", "script", "remote_path"]}}}, "required": ["builders", "provisioners"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authors" : [{"author" : "Angelika Bezan"}, {"author" : "Florian Hohla"}, {"author" : "Thomas Meissnitzer"}, {"author" : "Richard Greil"}], "doi" : "10.1186/1471-2407-13-618", "publication_date" : "2014-01-02", "id" : "EN116196", "url" : "https://pubmed.ncbi.nlm.nih.gov/24380380", "source" : "BMC cancer", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "We describe the case of a 78 year old patient initially diagnosed with locally advanced colon cancer and one synchronous liver metastasis in September 2010 who was treated by hemicolectomy and simultaneous atypical liver resection. During adjuvant chemotherapy the patient developed a peritoneal carcinomatosis with ascites in March 2011. Palliative chemotherapy was not well tolerated and therefore refused by the patient. Because of disease progression in June 2011 with one pulmonary metastasis and clinically predominant ascites an immunotherapy with intraperitoneal catumaxomab was started in December 2011. After treatment with catumaxomab a puncture free survival of 12 months as well as a regression of the pulmonary lesion was achieved until January 2013."}
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"android": {"type": "string"}, "codename": {"type": "string"}, "device": {"type": "string"}, "download": {"type": "string"}, "filename": {"type": "string"}, "md5": {"type": "string"}, "size": {"type": "string"}, "version": {"type": "string"}}, "required": ["android", "codename", "device", "download", "filename", "md5", "size", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"android" : "8.1", "codename" : "cereus", "device" : "Redmi 6 China", "download" : "http://bigota.d.miui.com/V10.3.4.0.OCGCNXM/cereus_images_V10.3.4.0.OCGCNXM_20190610.0000.00_8.1_cn_87db4dab73.tgz", "filename" : "cereus_images_V10.3.4.0.OCGCNXM_20190610.0000.00_8.1_cn_87db4dab73.tgz", "md5" : "87db4dab735d5cb47668460c761028c3", "size" : "1.7G", "version" : "V10.3.4.0.OCGCNXM"}
json_instruct
{"type": "object", "properties": {"android": {"type": "string"}, "codename": {"type": "string"}, "device": {"type": "string"}, "download": {"type": "string"}, "filename": {"type": "string"}, "md5": {"type": "string"}, "size": {"type": "string"}, "version": {"type": "string"}}, "required": ["android", "codename", "device", "download", "filename", "md5", "size", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 375 degrees F (190 degrees C).", "Arrange monkfish fillets in a rectangular glass baking dish without overlapping. Season with lemon-pepper seasoning and sea salt on both sides.", "Melt butter in a small saucepan over low heat, 3 to 5 minutes. Stir in lemon juice. Pour over monkfish.", "Combine bread crumbs and Parmesan cheese in the same saucepan. Spoon bread crumb mixture over the fish, coating evenly.", "Bake uncovered in the preheated oven until monkfish is flaky and tender, 30 to 40 minutes."], "ingredients" : ["1 pound monkfish fillets, membranes removed", "1 pinch salt-free lemon-pepper seasoning", "1 teaspoon sea salt", "1/2 cup unsalted butter", "2 tablespoons lemon juice", "1/2 cup bread crumbs, or more as needed", "1 tablespoon grated Parmesan cheese"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Lemon Pepper Butter-Baked Fish", "url" : "http://allrecipes.com/recipe/247433/lemon-pepper-butter-baked-fish/"}
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"zhengjunchao": {"type": "string"}}, "required": ["zhengjunchao"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "source_files", "platforms", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "LBKit", "version" : "1.0.0", "summary" : "short messages.", "homepage" : "https://github.com/zhjch80/LBKit", "license" : "MIT", "authors" : {"zhengjunchao" : "zhjch80@163.com"}, "source" : {"git" : "https://github.com/zhjch80/LBKit.git", "tag" : "1.0.0"}, "source_files" : "LBKits", "platforms" : {"ios" : "6.0"}, "requires_arc" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"zhengjunchao": {"type": "string"}}, "required": ["zhengjunchao"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "source_files", "platforms", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-9fm6-mf67-vpm5", "modified" : "2022-04-30T18:22:52Z", "published" : "2022-04-30T18:22:52Z", "aliases" : ["CVE-2002-2289"], "details" : "soinfo.php in BadBlue 1.7.1 calls the phpinfo function, which allows remote attackers to gain sensitive information including ODBC passwords.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2002-2289"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/10690"}, {"type" : "WEB", "url" : "http://online.securityfocus.com/archive/1/300992"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/3243"}, {"type" : "WEB", "url" : "http://www.derkeiler.com/Mailing-Lists/Full-Disclosure/2002-11/0329.html"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/6243"}], "database_specific" : {"cwe_ids" : ["CWE-200"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"-3": {"type": "object", "properties": {}, "required": []}, "-2": {"type": "object", "properties": {}, "required": []}, "-1": {"type": "object", "properties": {"DAT": {"type": "array", "items": {"type": "string"}}, "NOM": {"type": "array", "items": {"type": "string"}}}, "required": ["DAT", "NOM"]}, "0": {"type": "object", "properties": {}, "required": []}, "1": {"type": "object", "properties": {"DAT": {"type": "array", "items": {"type": "string"}}, "GEN": {"type": "array", "items": {"type": "string"}}, "\u0432/\u0432\u043e + LOC": {"type": "array", "items": {"type": "string"}}, "\u043a + DAT": {"type": "array", "items": {"type": "string"}}}, "required": ["DAT", "GEN", "\u0432/\u0432\u043e + LOC", "\u043a + DAT"]}, "2": {"type": "object", "properties": {"\u043d\u0430 + LOC": {"type": "array", "items": {"type": "string"}}}, "required": ["\u043d\u0430 + LOC"]}, "3": {"type": "object", "properties": {}, "required": []}}, "required": ["-3", "-2", "-1", "0", "1", "2", "3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"-3" : {}, "-2" : {}, "-1" : {"DAT" : ["\u041a\u0430\u043a \u0431\u0443\u0434\u0442\u043e \u0432\u043e\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0447\u0443\u0436\u043e\u0435 \u0418\u041c \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0415\u0422 \u0443\u0447\u0451\u043d\u043e\u0441\u0442\u0438.", "\u0410 \u0442\u0435 \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440\u044b \u043e \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u0438 \u0437\u0430\u0440\u043f\u043b\u0430\u0442\u044b/ \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0430\u043c \u043f\u0440\u0435\u043f\u043e\u0434\u043d\u043e\u0441\u044f\u0442 \u0441 \u044d\u043a\u0440\u0430\u043d\u043e\u0432 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u043e\u0440\u043e\u0432/ \u044f \u0441\u0430\u043c\u0430 \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u044d\u0442\u0443 \u0437\u0430\u0440\u043f\u043b\u0430\u0442\u0443/ \u044d\u0442\u043e \u0432\u044b\u0445\u043e\u0434\u0438\u0442/ \u0432 \u043b\u0443\u0447\u0448\u0435\u043c \u0441\u043b\u0443\u0447\u0430\u0435 \u041d\u0410\u041c \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u041b\u0418 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 30- 50 \u0440\u0443\u0431\u043b\u0435\u0439/ \u043d\u0435 \u0431\u043e\u043b\u044c\u0448\u0435."], "NOM" : ["\u0420\u0435\u0431\u0451\u043d\u043e\u043a, \u041a\u041e\u0422\u041e\u0420\u042b\u0419 \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0415\u0422 \u043a\u0430\u043a \u043d\u0430 \u0434\u0440\u043e\u0436\u0436\u0430\u0445, \u0438 \u0435\u0441\u0442\u044c \u043f\u0435\u0440\u0432\u044b\u0439 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442 \u043d\u0430 \u0437\u0430\u0431\u043e\u043b\u0435\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0445\u0438\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043d\u0430 \u0442\u0430\u043a\u0443\u044e \u0431\u044b\u0441\u0442\u0440\u0443\u044e \u043f\u0440\u0438\u0431\u0430\u0432\u043a\u0443 \u043c\u0430\u0441\u0441\u044b \u043d\u0435 \u0445\u0432\u0430\u0442\u0430\u0435\u0442 \u0442\u043e\u0433\u043e \u0432\u0438\u0442\u0430\u043c\u0438\u043d\u0430 D, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u043d \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442 \u0441 \u043c\u043e\u043b\u043e\u043a\u043e\u043c.", "\u0422\u0430\u043a \u044d\u0442\u043e \u043d\u0435 \u0432\u0438\u0434\u043d\u043e/ \u043d\u043e \u0433\u0434\u0435-\u0442\u043e \u043a\u043e\u043c\u0443-\u0442\u043e \u041e\u041d\u0418 \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u042e\u0422/ \u0437\u0430\u043a\u043e\u043d\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044e\u0442."]}, "0" : {}, "1" : {"DAT" : ["\u041e\u043d \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0415\u0422 \u0421\u0415\u0411\u0415 \u0434\u0435\u0441\u044f\u0442\u044c \u043b\u0435\u0442 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430 \u0438 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u043e\u0441\u0432\u043e\u0435\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u043f\u0440\u043e\u0444\u0435\u0441\u0441\u0438\u0439."], "GEN" : ["\u041a\u0430\u043a \u0431\u0443\u0434\u0442\u043e \u0432\u043e\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0447\u0443\u0436\u043e\u0435 \u0438\u043c \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0415\u0422 \u0423\u0427\u0401\u041d\u041e\u0421\u0422\u0418.", "\u0421\u043e\u043b\u0434\u0430\u0442\u044b \u043d\u0435\u0432\u043e\u043b\u044c\u043d\u043e \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u042e\u0422 \u0428\u0410\u0413\u0423.", "\u0421\u0442\u0430\u0440\u0438\u043a\u0438 \u0434\u0430\u0432\u043d\u043e \u043d\u0435 \u043c\u043e\u044e\u0442 \u043f\u043e\u043b\u044b, \u043e\u043d\u0438 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432\u0434\u0432\u043e\u0451\u043c \u0438, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0422\u042c \u0413\u0420\u042f\u0417\u0418, \u043f\u0440\u0438\u0431\u0435\u0433\u0430\u044e\u0442 \u043a \u0440\u0430\u0437\u043d\u044b\u043c \u0443\u0445\u0438\u0449\u0440\u0435\u043d\u0438\u044f\u043c \u0432\u0440\u043e\u0434\u0435 \u043f\u043e\u0441\u0442\u0438\u043b\u0430\u043d\u0438\u044f \u043d\u0430 \u043f\u043e\u043b \u0433\u0430\u0437\u0435\u0442 \u0438 \u0433\u0430\u0437\u0435\u0442\u043e\u043a \u0438 \u0435\u0449\u0451 \u043a\u0430\u043a\u0438\u0445-\u0442\u043e \u0441\u0435\u0440\u044b\u0445 \u043e\u0431\u0451\u0440\u0442\u043e\u0447\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0436\u0435\u043a, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0434\u0435\u0434 \u043f\u043e\u0442\u043e\u043c \u0440\u0430\u0441\u0442\u0430\u043f\u043b\u0438\u0432\u0430\u0435\u0442 \u0443\u0436\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u043f\u0435\u0447\u044c."], "\u0432/\u0432\u043e + LOC" : ["\u0414\u0435\u0442\u0438, \u043f\u043e\u043b\u0443\u0447\u0430\u044e\u0449\u0438\u0435 \u0433\u0440\u0443\u0434\u043d\u043e\u0435 \u043c\u043e\u043b\u043e\u043a\u043e, \u0440\u0435\u0436\u0435 \u0431\u043e\u043b\u0435\u044e\u0442 \u0440\u0430\u0445\u0438\u0442\u043e\u043c, \u043e\u043d\u0438, \u043a\u0441\u0442\u0430\u0442\u0438, \u0442\u0430\u043a\u0436\u0435 \u0440\u0435\u0434\u043a\u043e \u0447\u0435\u0440\u0435\u0441\u0447\u0443\u0440 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u042e\u0422 \u0412 \u0412\u0415\u0421\u0415.", "\u0410 \u0442\u0435 \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440\u044b \u043e \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u0438 \u0437\u0430\u0440\u043f\u043b\u0430\u0442\u044b/ \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0430\u043c \u043f\u0440\u0435\u043f\u043e\u0434\u043d\u043e\u0441\u044f\u0442 \u0441 \u044d\u043a\u0440\u0430\u043d\u043e\u0432 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u043e\u0440\u043e\u0432/ \u044f \u0441\u0430\u043c\u0430 \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u044d\u0442\u0443 \u0437\u0430\u0440\u043f\u043b\u0430\u0442\u0443/ \u044d\u0442\u043e \u0432\u044b\u0445\u043e\u0434\u0438\u0442/ \u0432 \u043b\u0443\u0447\u0448\u0435\u043c \u0441\u043b\u0443\u0447\u0430\u0435 \u043d\u0430\u043c \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u041b\u0418 \u0412 \u041f\u0420\u0415\u0414\u0415\u041b\u0410\u0425 30- 50 \u0440\u0443\u0431\u043b\u0435\u0439/ \u043d\u0435 \u0431\u043e\u043b\u044c\u0448\u0435."], "\u043a + DAT" : ["\u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0432\u044b\u0441\u043e\u0442\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u0430 \u043d\u0430 \u0444\u043e\u0442\u043e 1 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 22 \u0441\u043c; \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0415\u041c \u041a \u042d\u0422\u041e\u041c\u0423 \u0434\u0432\u0435 \u0432\u044b\u0441\u043e\u0442\u044b \u0432\u043e\u0440\u043e\u0442\u043d\u0438\u043a\u0430 2&#215; 4= 8 \u0441\u043c \u0438 \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u043c \u0432\u044b\u0441\u043e\u0442\u0443 \u0442\u0443\u0435\u0441\u043a\u0430-- 30 \u0441\u043c. \u0428\u0438\u0440\u0438\u043d\u0430 \u043b\u0438\u0441\u0442\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u0432\u0430\u0448\u0435\u0433\u043e \u0436\u0435\u043b\u0430\u043d\u0438\u044f, \u043d\u043e, \u043d\u0430 \u043c\u043e\u0439 \u0432\u0437\u0433\u043b\u044f\u0434, \u043b\u0443\u0447\u0448\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0433\u0430\u0440\u043c\u043e\u043d\u0438\u0447\u043d\u043e\u0435 \u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0435\" \u0437\u043e\u043b\u043e\u0442\u043e\u0435 \u0441\u0435\u0447\u0435\u043d\u0438\u0435\": \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435, \u043f\u0440\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0448\u0438\u0440\u0438\u043d\u0430 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e 3/ 5 \u0438\u043b\u0438 5/ 8 \u0432\u044b\u0441\u043e\u0442\u044b."]}, "2" : {"\u043d\u0430 + LOC" : ["\u0420\u0435\u0431\u0451\u043d\u043e\u043a, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u041f\u0420\u0418\u0411\u0410\u0412\u041b\u042f\u0415\u0422 \u043a\u0430\u043a \u041d\u0410 \u0414\u0420\u041e\u0416\u0416\u0410\u0425, \u0438 \u0435\u0441\u0442\u044c \u043f\u0435\u0440\u0432\u044b\u0439 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442 \u043d\u0430 \u0437\u0430\u0431\u043e\u043b\u0435\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0445\u0438\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043d\u0430 \u0442\u0430\u043a\u0443\u044e \u0431\u044b\u0441\u0442\u0440\u0443\u044e \u043f\u0440\u0438\u0431\u0430\u0432\u043a\u0443 \u043c\u0430\u0441\u0441\u044b \u043d\u0435 \u0445\u0432\u0430\u0442\u0430\u0435\u0442 \u0442\u043e\u0433\u043e \u0432\u0438\u0442\u0430\u043c\u0438\u043d\u0430 D, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u043d \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442 \u0441 \u043c\u043e\u043b\u043e\u043a\u043e\u043c."]}, "3" : {}}
json_instruct
{"type": "object", "properties": {"-3": {"type": "object", "properties": {}, "required": []}, "-2": {"type": "object", "properties": {}, "required": []}, "-1": {"type": "object", "properties": {"DAT": {"type": "array", "items": {"type": "string"}}, "NOM": {"type": "array", "items": {"type": "string"}}}, "required": ["DAT", "NOM"]}, "0": {"type": "object", "properties": {}, "required": []}, "1": {"type": "object", "properties": {"DAT": {"type": "array", "items": {"type": "string"}}, "GEN": {"type": "array", "items": {"type": "string"}}, "\u0432/\u0432\u043e + LOC": {"type": "array", "items": {"type": "string"}}, "\u043a + DAT": {"type": "array", "items": {"type": "string"}}}, "required": ["DAT", "GEN", "\u0432/\u0432\u043e + LOC", "\u043a + DAT"]}, "2": {"type": "object", "properties": {"\u043d\u0430 + LOC": {"type": "array", "items": {"type": "string"}}}, "required": ["\u043d\u0430 + LOC"]}, "3": {"type": "object", "properties": {}, "required": []}}, "required": ["-3", "-2", "-1", "0", "1", "2", "3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "null"}, "subcategory": {"type": "null"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 118748, "name" : "EKLEN Room Style (Private)", "description" : "By. Bert Seville. For EKLEN Ei PRIMARY Room", "user" : {"id" : 299156, "name" : "Bert Seville (\u0299\u01b8\u0280\u1d1b)", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2015-09-13T21:24:04.000Z", "weekly_install_count" : 0, "total_install_count" : 35, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/118748_after.jpeg?r=1587888283", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2015-09-13T21:24:04.000Z", "category" : "global", "raw_subcategory" : null, "subcategory" : null, "additional_info" : null, "style_tags" : [], "css" : "/*Background*/\r\n.room-background{\r\n background: url(http://i.imgur.com/d3WWdKq.jpg) no-repeat!important;\r\n}\r\n\r\n/*Videoframe-cut*/\r\n.background{\r\n display: none;\r\n}\r\n\r\n/*Nodj-cut*/\r\n#no-dj .message .label{ \r\n display: none;\r\n} \r\n\r\n/*Nodj-cut2*/\r\n#no-dj .message .title{ \r\n display: none;\r\n} \r\n\r\n/*Nodj-img*/\r\n#no-dj{\r\n display: none;\r\n}\r\n\r\n/*Nodj-avatar*/\r\n\r\n#no-dj .avatar{\r\n display: none;\r\n}\r\n \r\n/* i really want this to be global */", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/118748/eklen-room-style-private.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "null"}, "subcategory": {"type": "null"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x168f716e47b5755e224b4734eaff7e2ece112309", "tool" : "osiris", "start" : 1564627702.1302247, "end" : 1564627705.0296412, "duration" : 2.899416446685791, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"/js/translatable-field.js": {"type": "string"}, "/js/locale-select-field.js": {"type": "string"}}, "required": ["/js/translatable-field.js", "/js/locale-select-field.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/translatable-field.js" : "/js/translatable-field.js", "/js/locale-select-field.js" : "/js/locale-select-field.js"}
json_instruct
{"type": "object", "properties": {"/js/translatable-field.js": {"type": "string"}, "/js/locale-select-field.js": {"type": "string"}}, "required": ["/js/translatable-field.js", "/js/locale-select-field.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import slugify from 'slugify';\nexport default function slug(name) {\n return slugify(name, {\n lower: true\n }).replace(/[^\\w\\-]+/g, '');\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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "neutronia:block/red_mangrove_log"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "city": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "region": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["name", "city", "type", "description", "region"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "road routes", "city" : "bangalore", "type" : "geoshapes", "description" : "multilinestrings approximating the roads indiranagar 100ft and old airport port road", "region" : {"type" : "multilinestring", "coordinates" : [[[77.64081001281738, 12.983398626256326], [77.64166831970213, 12.960648472679763]], [[77.64192581176758, 12.960564828571133], [77.66990661621094, 12.958390071883693]], [[77.67016410827637, 12.958055492245812], [77.68106460571289, 12.954626025039444]], [[77.68149375915527, 12.954542378907867], [77.7011489868164, 12.957219041184294]]]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "city": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "region": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["name", "city", "type", "description", "region"], "$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"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "55ee5e44cbbd392accd3ea40", "index" : 334, "guid" : "88cbfe3f-f96f-452a-8cfe-b1529afe8c4d", "isActive" : true, "balance" : "$59,898.45", "picture" : "http://placehold.it/32x32", "age" : 54, "eyeColor" : "brown", "name" : "Lacey Branch", "gender" : "female", "company" : "AUSTEX", "email" : "laceybranch@austex.com", "phone" : "+1 (832) 535-3161", "address" : "770 Ashford Street, Kirk, Mississippi, 7472", "about" : "Laboris ex mollit adipisicing veniam amet cupidatat fugiat Lorem sunt tempor esse laborum qui. Eiusmod est duis enim consectetur. Elit voluptate nulla voluptate fugiat proident do enim enim ipsum. Labore pariatur occaecat velit cillum magna tempor reprehenderit in ipsum sunt. Proident nostrud exercitation velit tempor eu reprehenderit dolor occaecat est incididunt.\r\n", "registered" : "2014-12-16T01:18:06 -07:00", "tags" : ["enim", "nulla", "ut", "dolore", "minim", "voluptate", "adipisicing"], "friends" : [{"id" : 0, "name" : "Joanna Reid"}, {"id" : 1, "name" : "Paulette Russell"}, {"id" : 2, "name" : "Nichole Marshall"}], "greeting" : "Hello, Lacey Branch! You have 2 unread messages.", "favoriteFruit" : "strawberry", "location" : {"latitude" : 27.817155, "longitude" : -88.048873}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-334.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Lacey Branch"}}, {"triple" : {"subject" : "/sample-data/data-334.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-334.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2378.json"}}, {"triple" : {"subject" : "/sample-data/data-334.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-1169.json"}}, {"triple" : {"subject" : "/sample-data/data-334.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-1793.json"}}]}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}