input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "shell-version": {"type": "array", "items": {"type": "string"}}, "settings-schema": {"type": "string"}, "version": {"type": "integer"}}, "required": ["uuid", "name", "description", "url", "shell-version", "settings-schema", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "invert-window-preserving-hue@lucaslugao", "name" : "Invert Window Color Preserving HUE", "description" : "Inverts the color of individual windows preserving HUE\nDefault shortcut is Super+I", "url" : "https://github.com/lucaslugao/gnome-shell-extension-invert-color", "shell-version" : ["3.32"], "settings-schema" : "org.gnome.shell.extensions.invert-window-preserving-hue", "version" : 5} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "shell-version": {"type": "array", "items": {"type": "string"}}, "settings-schema": {"type": "string"}, "version": {"type": "integer"}}, "required": ["uuid", "name", "description", "url", "shell-version", "settings-schema", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"technique": {"type": "object", "properties": {"class": {"type": "string"}, "cache": {"type": "object", "properties": {"class": {"type": "string"}, "sttl": {"type": "integer"}}, "required": ["class", "sttl"]}}, "required": ["class", "cache"]}}, "required": ["technique"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"technique" : {"class" : "GitHubOwlTechnique", "cache" : {"class" : "LoopbackCache", "sttl" : 604800}}} | json_instruct | {"type": "object", "properties": {"technique": {"type": "object", "properties": {"class": {"type": "string"}, "cache": {"type": "object", "properties": {"class": {"type": "string"}, "sttl": {"type": "integer"}}, "required": ["class", "sttl"]}}, "required": ["class", "cache"]}}, "required": ["technique"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"class_name" : "hand", "bbox" : "630 540 880 712", "used" : false}, {"class_name" : "hand", "bbox" : "746 388 876 477", "used" : false}, {"class_name" : "hand", "bbox" : "579 341 708 441", "used" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "A magical sphere that glimmers within."} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$ref" : "../node_modules/@esamarathon/esa-layouts-shared/schemas/restreamData.json"} | json_instruct | {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "conf": {"type": "string"}}, "required": ["chalk", "commander", "conf"]}, "bin": {"type": "object", "properties": {"todos": {"type": "string"}}, "required": ["todos"]}, "type": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "bin", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "todos-cli", "version" : "1.0.0", "description" : "Adapted from a tutorial on [LogRocket](https://blog.logrocket.com/creating-a-cli-tool-with-node-js/).", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jeffreyjgong/todos-cli.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/jeffreyjgong/todos-cli/issues"}, "homepage" : "https://github.com/jeffreyjgong/todos-cli#readme", "dependencies" : {"chalk" : "^5.0.0", "commander" : "^8.3.0", "conf" : "^10.1.1"}, "bin" : {"todos" : "./index.js"}, "type" : "module"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "conf": {"type": "string"}}, "required": ["chalk", "commander", "conf"]}, "bin": {"type": "object", "properties": {"todos": {"type": "string"}}, "required": ["todos"]}, "type": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "bin", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"faker": {"type": "string"}, "strftime": {"type": "string"}}, "required": ["faker", "strftime"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "repository", "dependencies", "main", "keywords", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "genhttplogs", "version" : "0.0.1", "description" : "Generate HTTP access logs", "author" : "Mihail Juganaru <[email protected]>", "repository" : {"type" : "git", "url" : "https://github.com/mihailj/genhttplogs.git"}, "dependencies" : {"faker" : "*", "strftime" : "*"}, "main" : "index.js", "keywords" : ["http", "access", "log"], "scripts" : {"start" : "node index.js"}, "license" : "ISC"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"faker": {"type": "string"}, "strftime": {"type": "string"}}, "required": ["faker", "strftime"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "repository", "dependencies", "main", "keywords", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"EULERIAN SECTION(ELSET)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}, "EULERIAN SECTION(ELSET, ADVECTION, CONTROLS, FLUX LIMIT RATIO)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}}, "required": ["EULERIAN SECTION(ELSET)", "EULERIAN SECTION(ELSET, ADVECTION, CONTROLS, FLUX LIMIT RATIO)"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"EULERIAN SECTION(ELSET)" : {"prefix" : "*EULERIAN SECTION", "body" : ["*EULERIAN SECTION, ELSET=${1}"], "description" : "EULERIAN SECTION with parameter(s) ELSET.", "scope" : "source.inp"}, "EULERIAN SECTION(ELSET, ADVECTION, CONTROLS, FLUX LIMIT RATIO)" : {"prefix" : "*EULERIAN SECTION", "body" : ["*EULERIAN SECTION, ELSET=${1}, ADVECTION=${2}, CONTROLS=${3}, FLUX LIMIT RATIO=${4}"], "description" : "EULERIAN SECTION with parameter(s) ELSET, ADVECTION, CONTROLS, FLUX LIMIT RATIO.", "scope" : "source.inp"}} | json_instruct | {"type": "object", "properties": {"EULERIAN SECTION(ELSET)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}, "EULERIAN SECTION(ELSET, ADVECTION, CONTROLS, FLUX LIMIT RATIO)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}}, "required": ["EULERIAN SECTION(ELSET)", "EULERIAN SECTION(ELSET, ADVECTION, CONTROLS, FLUX LIMIT RATIO)"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1401182001", "nama" : "Muara Jalai"}, {"id" : "1401182002", "nama" : "Sawah"}, {"id" : "1401182003", "nama" : "Kampung Panjang"}, {"id" : "1401182004", "nama" : "Kayu Aro"}, {"id" : "1401182005", "nama" : "Sei Tonang"}, {"id" : "1401182006", "nama" : "Sei Jalau"}, {"id" : "1401182007", "nama" : "Sendayan"}, {"id" : "1401182008", "nama" : "Naga Beralih"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"className": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "id": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "name": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "frameBorder": {"type": "object", "properties": {"desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["desc", "tags"]}, "src": {"type": "object", "properties": {"desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["desc", "tags"]}, "alt": {"type": "object", "properties": {"desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["desc", "tags"]}, "title": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}}, "required": ["className", "id", "name", "frameBorder", "src", "alt", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"className" : {"desc" : "The class attribute specifies one or more classnames for an element."}, "id" : {"desc" : "The id attribute specifies a unique id for an HTML element (the value must be unique within the HTML document)."}, "name" : {"desc" : "The name attribute specifies a name for the element."}, "frameBorder" : {"desc" : "The frameborder attribute specifies whether or not to display a border around an <iframe>.", "tags" : ["iframe"]}, "src" : {"desc" : "The src attribute specifies the location (URL) of the external resource.", "tags" : ["img", "video", "audio", "embed", "source", "input", "script", "track", "iframe"]}, "alt" : {"desc" : "The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).", "tags" : ["area", "img", "input"]}, "title" : {"desc" : "The title attribute specifies extra information about an element."}} | json_instruct | {"type": "object", "properties": {"className": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "id": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "name": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "frameBorder": {"type": "object", "properties": {"desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["desc", "tags"]}, "src": {"type": "object", "properties": {"desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["desc", "tags"]}, "alt": {"type": "object", "properties": {"desc": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["desc", "tags"]}, "title": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}}, "required": ["className", "id", "name", "frameBorder", "src", "alt", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 4, "pts" : 767, "connections" : 44977, "capacity" : 5616439, "investments" : 14014767}, {"tech" : 1, "pts" : 297, "connections" : 154868, "capacity" : 17288379, "investments" : 103045757}, {"tech" : 3, "pts" : 74, "connections" : 586, "capacity" : 103546, "investments" : 569522}, {"tech" : 2, "pts" : 82, "connections" : 784, "capacity" : 98408, "investments" : 135067}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "name": {"type": "string"}}, "required": ["type", "features", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {}, "geometry" : {"type" : "Polygon", "coordinates" : [[[0.0991069387705, 51.3772783119, 0.0], [0.0991780900194, 51.3772959947, 0.0], [0.0997912874825, 51.3767959839, 0.0], [0.0998063096077, 51.3767099695, 0.0], [0.0997728291939, 51.3766781653, 0.0], [0.0991748338221, 51.3765869126, 0.0], [0.0991069387705, 51.3772783119, 0.0]]]}}], "name" : "BR6 1"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "name": {"type": "string"}}, "required": ["type", "features", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"a51c31d1da91197057596d26b8dd106042f96b8451d423a1caa43e6945aa2366\"", "Last-Modified" : "Tue, 17 Nov 2020 00:17:34 GMT", "base" : {"repo" : {"name" : "jarvis-tools-feedstock"}}, "closed_at" : "2020-11-17T00:17:34Z", "created_at" : "2020-11-11T13:11:31Z", "draft" : false, "head" : {"ref" : "2020.11.9_h710535"}, "html_url" : "https://github.com/conda-forge/jarvis-tools-feedstock/pull/2", "id" : 519188679, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2020-11-17T00:17:33Z", "number" : 2, "state" : "closed", "updated_at" : "2020-11-17T00:17:34Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"api.AbortController": {"type": "object", "properties": {}, "required": []}, "api.AbortController.signal": {"type": "object", "properties": {}, "required": []}, "css.properties.font-family": {"type": "object", "properties": {}, "required": []}, "javascript.builtins.Array": {"type": "object", "properties": {}, "required": []}, "javascript.builtins.Error": {"type": "object", "properties": {}, "required": []}}, "required": ["api.AbortController", "api.AbortController.signal", "css.properties.font-family", "javascript.builtins.Array", "javascript.builtins.Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"api.AbortController" : {}, "api.AbortController.signal" : {}, "css.properties.font-family" : {}, "javascript.builtins.Array" : {}, "javascript.builtins.Error" : {}} | json_instruct | {"type": "object", "properties": {"api.AbortController": {"type": "object", "properties": {}, "required": []}, "api.AbortController.signal": {"type": "object", "properties": {}, "required": []}, "css.properties.font-family": {"type": "object", "properties": {}, "required": []}, "javascript.builtins.Array": {"type": "object", "properties": {}, "required": []}, "javascript.builtins.Error": {"type": "object", "properties": {}, "required": []}}, "required": ["api.AbortController", "api.AbortController.signal", "css.properties.font-family", "javascript.builtins.Array", "javascript.builtins.Error"], "$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"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "display", "background_color", "theme_color", "description", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "A Web App", "short_name" : "Example app", "start_url" : "index.html", "display" : "standalone", "background_color" : "#000000", "theme_color" : "#000000", "description" : "A simply progressive web app example.", "icons" : [{"src" : "icon_512.png", "sizes" : "512x512", "type" : "image/png"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "display", "background_color", "theme_color", "description", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"id": {"type": "string"}, "siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "w3l_dom_key": {"type": "string"}}, "required": ["title", "description", "w3l_dom_key"]}}, "required": ["id", "siteMetadata"]}, "allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": {"type": "string"}, "excerpt": {"type": "string"}, "frontmatter": {"type": "object", "properties": {"date": {"type": "string"}, "path": {"type": "string"}, "title": {"type": "string"}}, "required": ["date", "path", "title"]}}, "required": ["id", "excerpt", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["site", "allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-pages-index-js", "path" : "/", "result" : {"data" : {"site" : {"id" : "Site", "siteMetadata" : {"title" : "C\u00e9im Eile Productions", "description" : "A starter blog demonstrating what Gatsby can do.", "w3l_dom_key" : "5e92588552c33CF_Domain_verify"}}, "allMarkdownRemark" : {"edges" : [{"node" : {"id" : "5b41057a-1486-5681-80b4-def091bd12ce", "excerpt" : "Welcome to C\u00e9im Eile.", "frontmatter" : {"date" : "April 12, 2020", "path" : "/intro", "title" : "Welcome to C\u00e9im Eile."}}}]}}, "pageContext" : {}}} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"id": {"type": "string"}, "siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "w3l_dom_key": {"type": "string"}}, "required": ["title", "description", "w3l_dom_key"]}}, "required": ["id", "siteMetadata"]}, "allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": {"type": "string"}, "excerpt": {"type": "string"}, "frontmatter": {"type": "object", "properties": {"date": {"type": "string"}, "path": {"type": "string"}, "title": {"type": "string"}}, "required": ["date", "path", "title"]}}, "required": ["id", "excerpt", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["site", "allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "7.3.1": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "array", "items": {"type": "string"}}, "pre-install": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "code"]}}, "post-install": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "code"]}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist", "pre-install", "post-install"]}}, "required": ["display-name", "package-name", "latest-version", "7.3.1"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"display-name" : "", "package-name" : "rtss", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "rtss", "latest-version" : "7.3.1", "7.3.1" : {"url" : "https://download-eu2.guru3d.com/rtss/%5BGuru3D.com%5D-RTSSSetup731Build24485.zip#/sourceforge.net.zip", "file-type" : ".zip", "bin" : ["RTSS.exe"], "shortcuts" : [{"shortcut-name" : "RivaTuner Statistics Server", "file-name" : "RTSS.exe"}], "persist" : ["Plugins\\Client\\Overlays", "Profiles"], "pre-install" : [{"type" : "powershell", "code" : ["Expand-7zipArchive \"$dir\\RTSSSetup*.exe\" -Removal", "Remove-Item \"$dir\\`$*\", \"$dir\\Guru3D.com\", \"$dir\\Uninstall*\" -Recurse", "Move-Item \"$dir\\RTSSHooks.dll.copy\" \"$dir\\RTSSHooks.dll\"", "Move-Item \"$dir\\RTSSHooks64.dll.copy\" \"$dir\\RTSSHooks64.dll\""]}], "post-install" : [{"type" : "powershell", "code" : ["$rtssProfiles = \"$persist_dir\\..\\msiafterburner\\RTSS_Profiles\"", "if (Test-Path \"$rtssProfiles\") {", " warn 'Migrating RTSS profiles...'", " Move-Item -Path \"$rtssProfiles\\*\" -Destination \"$persist_dir\\Profiles\"", " Remove-Item \"$rtssProfiles\" -Recurse", "}"]}]}}} | json_instruct | {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "7.3.1": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "array", "items": {"type": "string"}}, "pre-install": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "code"]}}, "post-install": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "code"]}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist", "pre-install", "post-install"]}}, "required": ["display-name", "package-name", "latest-version", "7.3.1"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "650105005001", "text" : "\u65b0\u6c11\u897f\u8857\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005002", "text" : "\u7ea2\u5854\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005003", "text" : "\u91d1\u6d77\u5cb8\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005004", "text" : "\u65b0\u5e0c\u671b\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005005", "text" : "\u7231\u5fc3\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005006", "text" : "\u7ea2\u5c71\u8def\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005007", "text" : "\u65b0\u57ce\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005008", "text" : "\u8363\u60e0\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005009", "text" : "\u94f6\u6cb3\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005010", "text" : "\u6210\u529f\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005011", "text" : "\u65b0\u6c11\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005012", "text" : "\u65b0\u5927\u5730\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005013", "text" : "\u5357\u5927\u6e56\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005015", "text" : "\u6210\u529f\u4e1c\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005016", "text" : "\u7965\u6cf0\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "650105005017", "text" : "\u5174\u60e0\u793e\u533a\u5c45\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": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ps" : 5420, "xbox" : 3223} | json_instruct | {"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"tpu_name": {"type": "string"}, "tpu_zone": {"type": "string"}, "use_tpu": {"type": "boolean"}, "num_tpu_cores": {"type": "integer"}, "vocab_size": {"type": "integer"}, "num_train_steps": {"type": "integer"}, "save_checkpoints_steps": {"type": "integer"}, "train_batch_size": {"type": "integer"}, "learning_rate": {"type": "number"}, "max_seq_length": {"type": "integer"}, "do_lower_case": {"type": "boolean"}, "generator_hidden_size": {"type": "number"}}, "required": ["tpu_name", "tpu_zone", "use_tpu", "num_tpu_cores", "vocab_size", "num_train_steps", "save_checkpoints_steps", "train_batch_size", "learning_rate", "max_seq_length", "do_lower_case", "generator_hidden_size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tpu_name" : "electra-small", "tpu_zone" : "europe-west4-a", "use_tpu" : true, "num_tpu_cores" : 8, "vocab_size" : 32200, "num_train_steps" : 375000, "save_checkpoints_steps" : 18750, "train_batch_size" : 512, "learning_rate" : 0.0005, "max_seq_length" : 512, "do_lower_case" : false, "generator_hidden_size" : 1.0} | json_instruct | {"type": "object", "properties": {"tpu_name": {"type": "string"}, "tpu_zone": {"type": "string"}, "use_tpu": {"type": "boolean"}, "num_tpu_cores": {"type": "integer"}, "vocab_size": {"type": "integer"}, "num_train_steps": {"type": "integer"}, "save_checkpoints_steps": {"type": "integer"}, "train_batch_size": {"type": "integer"}, "learning_rate": {"type": "number"}, "max_seq_length": {"type": "integer"}, "do_lower_case": {"type": "boolean"}, "generator_hidden_size": {"type": "number"}}, "required": ["tpu_name", "tpu_zone", "use_tpu", "num_tpu_cores", "vocab_size", "num_train_steps", "save_checkpoints_steps", "train_batch_size", "learning_rate", "max_seq_length", "do_lower_case", "generator_hidden_size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"changed_states": {"type": "string"}}, "required": ["changed_states"]}}, "required": ["trigger_type"]}, "state": {"type": "object", "properties": {"_": {"type": "object", "properties": {"idle": {"type": "string"}, "off": {"type": "string"}, "on": {"type": "string"}, "paused": {"type": "string"}, "playing": {"type": "string"}, "standby": {"type": "string"}}, "required": ["idle", "off", "on", "paused", "playing", "standby"]}}, "required": ["_"]}, "title": {"type": "string"}}, "required": ["device_automation", "state", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"device_automation" : {"trigger_type" : {"changed_states" : "{entity_name} ligado ou desligado"}}, "state" : {"_" : {"idle" : "Ocioso", "off" : "Desligado", "on" : "Ligado", "paused" : "Pausado", "playing" : "Tocando", "standby" : "Em espera"}}, "title" : "Media player"} | json_instruct | {"type": "object", "properties": {"device_automation": {"type": "object", "properties": {"trigger_type": {"type": "object", "properties": {"changed_states": {"type": "string"}}, "required": ["changed_states"]}}, "required": ["trigger_type"]}, "state": {"type": "object", "properties": {"_": {"type": "object", "properties": {"idle": {"type": "string"}, "off": {"type": "string"}, "on": {"type": "string"}, "paused": {"type": "string"}, "playing": {"type": "string"}, "standby": {"type": "string"}}, "required": ["idle", "off", "on", "paused", "playing", "standby"]}}, "required": ["_"]}, "title": {"type": "string"}}, "required": ["device_automation", "state", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 11407, "cartId" : "cffc146c-b6c0-4ba4-af20-c2553a9565c5", "preferredProducts" : [], "productReviews" : [{"productId" : 2173, "reviewText" : "talk about hatred!!!", "reviewDate" : "2016-05-15T12:02:45.4515828+03:00"}, {"productId" : 1758, "reviewText" : "i use it never again when i'm in my station.", "reviewDate" : "2018-04-30T00:58:50.0933122+03:00"}, {"productId" : 1606, "reviewText" : "I tried to decapitate it but got coconut all over it.", "reviewDate" : "2018-10-02T11:47:23.5340862+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "path": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "name", "path", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1000000000, "name" : "LoginUI", "path" : "Prefabs/UI/LoginUI", "type" : "ui"}, {"id" : 1000000001, "name" : "LobbyUI", "path" : "Prefabs/UI/LobbyUI", "type" : "ui"}, {"id" : 1000000002, "name" : "HeroListUI", "path" : "Prefabs/UI/HeroListUI", "type" : "ui"}, {"id" : 1000010000, "name" : "hero_100", "path" : "Textures/HeroBodyPic", "type" : "png"}, {"id" : 1000020000, "name" : "click", "path" : "Audio", "type" : "mp3"}, {"id" : 1000030000, "name" : "BuffEffect", "path" : "Effects", "type" : "effect"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "path": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "name", "path", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"CF-Cache-Status": {"type": "string"}, "CF-RAY": {"type": "string"}, "Cache-Control": {"type": "string"}, "Connection": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Expect-CT": {"type": "string"}, "Expires": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "Transfer-Encoding": {"type": "string"}, "Vary": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-XSS-Protection": {"type": "string"}, "cf-request-id": {"type": "string"}}, "required": ["CF-Cache-Status", "CF-RAY", "Cache-Control", "Connection", "Content-Encoding", "Content-Type", "Date", "Expect-CT", "Expires", "Server", "Set-Cookie", "Strict-Transport-Security", "Transfer-Encoding", "Vary", "X-Content-Type-Options", "X-Frame-Options", "X-XSS-Protection", "cf-request-id"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "0.591", "endpoint-url" : "https://www.darlington.gov.uk/media/2285/brownfield_land_register.csv", "entry-date" : "2020-12-04T00:10:28.176285", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "User-Agent" : "Digital Land data collector"}, "response-headers" : {"CF-Cache-Status" : "MISS", "CF-RAY" : "5fc159eda94c2ad4-IAD", "Cache-Control" : "public, max-age=14400", "Connection" : "keep-alive", "Content-Encoding" : "gzip", "Content-Type" : "text/html; charset=utf-8", "Date" : "Fri, 04 Dec 2020 00:18:38 GMT", "Expect-CT" : "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"", "Expires" : "Fri, 04 Dec 2020 04:18:38 GMT", "Server" : "cloudflare", "Set-Cookie" : "__cfduid=daca8c12d6018fcecd50590c50b5e1f881607041118; expires=Sun, 03-Jan-21 00:18:38 GMT; path=/; domain=.darlington.gov.uk; HttpOnly; SameSite=Lax", "Strict-Transport-Security" : "max-age=10886400; preload", "Transfer-Encoding" : "chunked", "Vary" : "Accept-Encoding", "X-Content-Type-Options" : "nosniff", "X-Frame-Options" : "sameorigin", "X-XSS-Protection" : "1; mode=block", "cf-request-id" : "06ccb6888a00002ad41f0bd000000001"}, "ssl-verify" : true, "status" : "200"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"CF-Cache-Status": {"type": "string"}, "CF-RAY": {"type": "string"}, "Cache-Control": {"type": "string"}, "Connection": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Expect-CT": {"type": "string"}, "Expires": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "Transfer-Encoding": {"type": "string"}, "Vary": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-XSS-Protection": {"type": "string"}, "cf-request-id": {"type": "string"}}, "required": ["CF-Cache-Status", "CF-RAY", "Cache-Control", "Connection", "Content-Encoding", "Content-Type", "Date", "Expect-CT", "Expires", "Server", "Set-Cookie", "Strict-Transport-Security", "Transfer-Encoding", "Vary", "X-Content-Type-Options", "X-Frame-Options", "X-XSS-Protection", "cf-request-id"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "dev", "build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "html-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-hot-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "babel-preset-react", "css-loader", "eslint", "eslint-loader", "html-loader", "html-webpack-plugin", "node-sass", "react", "react-dom", "react-hot-loader", "sass-loader", "style-loader", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-webpack2-startkit", "version" : "1.0.0", "description" : "A startkit build by Webpack2 using React", "main" : "webpack.config.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "dev" : "webpack-dev-server --progress --colors --profile --port 8080", "build" : "webpack --progress --colors --profile"}, "keywords" : ["react", "webpack"], "author" : "Fullstop000", "license" : "MIT", "devDependencies" : {"babel-core" : "^6.22.1", "babel-eslint" : "^7.1.1", "babel-loader" : "^6.2.10", "babel-preset-es2015" : "^6.22.0", "babel-preset-react" : "^6.22.0", "css-loader" : "^0.26.1", "eslint" : "^3.14.1", "eslint-loader" : "^1.6.1", "html-loader" : "^0.4.4", "html-webpack-plugin" : "^2.26.0", "node-sass" : "^4.4.0", "react" : "^15.4.2", "react-dom" : "^15.4.2", "react-hot-loader" : "^3.0.0-beta.6", "sass-loader" : "^4.1.1", "style-loader" : "^0.13.1", "webpack" : "^2.2.1", "webpack-dev-server" : "^2.4.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "dev", "build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "html-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-hot-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "babel-preset-react", "css-loader", "eslint", "eslint-loader", "html-loader", "html-webpack-plugin", "node-sass", "react", "react-dom", "react-hot-loader", "sass-loader", "style-loader", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"js/genome.js": {"type": "array", "items": {"type": "string"}}}, "required": ["js/genome.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"js/genome.js" : ["public/html/lab_test_dashboard.html"]} | json_instruct | {"type": "object", "properties": {"js/genome.js": {"type": "array", "items": {"type": "string"}}}, "required": ["js/genome.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "bodyFileName": {"type": "string"}, "headers": {"type": "object", "properties": {"Date": {"type": "string"}, "FIL-MW-ID": {"type": "string"}, "X-Powered-By": {"type": "string"}, "Vary": {"type": "string"}, "Cache-Control": {"type": "string"}, "Expires": {"type": "string"}, "Keep-Alive": {"type": "string"}, "Connection": {"type": "string"}, "Content-Type": {"type": "string"}, "Content-Language": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Transfer-Encoding": {"type": "string"}}, "required": ["Date", "FIL-MW-ID", "X-Powered-By", "Vary", "Cache-Control", "Expires", "Keep-Alive", "Connection", "Content-Type", "Content-Language", "Set-Cookie", "Transfer-Encoding"]}}, "required": ["status", "bodyFileName", "headers"]}, "uuid": {"type": "string"}}, "required": ["id", "request", "response", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "25d7de0f-5c2f-3ab0-968e-4d3ba377963b", "request" : {"url" : "/de/mobile/account/performance.page", "method" : "GET"}, "response" : {"status" : 200, "bodyFileName" : "body-account-performance.page-qy7fL.txt", "headers" : {"Date" : "Tue, 30 Jan 2018 11:39:12 GMT", "FIL-MW-ID" : "E-03147", "X-Powered-By" : "Servlet/3.0", "Vary" : "Accept-Encoding", "Cache-Control" : "max-age=0", "Expires" : "Tue, 30 Jan 2018 11:39:12 GMT", "Keep-Alive" : "timeout=10, max=97", "Connection" : "Keep-Alive", "Content-Type" : "text/html; charset=UTF-8", "Content-Language" : "en-GB", "Set-Cookie" : "TS01b2ea2a=0126dfb55c84ab135a4e507ea52f84ebe7b6171c8e68e912eddd1dbfbbd8573ec10e7fb1625ed308842b433e5c05e2ff5af348bdcda01fe4e06c3e85a7d9e091c2256e16fc; Path=/", "Transfer-Encoding" : "chunked"}}, "uuid" : "25d7de0f-5c2f-3ab0-968e-4d3ba377963b"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "bodyFileName": {"type": "string"}, "headers": {"type": "object", "properties": {"Date": {"type": "string"}, "FIL-MW-ID": {"type": "string"}, "X-Powered-By": {"type": "string"}, "Vary": {"type": "string"}, "Cache-Control": {"type": "string"}, "Expires": {"type": "string"}, "Keep-Alive": {"type": "string"}, "Connection": {"type": "string"}, "Content-Type": {"type": "string"}, "Content-Language": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Transfer-Encoding": {"type": "string"}}, "required": ["Date", "FIL-MW-ID", "X-Powered-By", "Vary", "Cache-Control", "Expires", "Keep-Alive", "Connection", "Content-Type", "Content-Language", "Set-Cookie", "Transfer-Encoding"]}}, "required": ["status", "bodyFileName", "headers"]}, "uuid": {"type": "string"}}, "required": ["id", "request", "response", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "1MORE Triple Driver Over Ear", "id" : "4ad722bf52bfef97b8fe40d3126a33210422824a", "isDefault" : false, "gains" : {"global" : -3.4, "bands" : [-2.4, -3.3, -4.4, 2.1, 0.8, -2.9, 3.8, -1.2, 1.3, 0.6]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"reject": {"type": "array", "items": {"type": "string"}}}, "required": ["reject"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"reject" : ["os-locale"]} | json_instruct | {"type": "object", "properties": {"reject": {"type": "array", "items": {"type": "string"}}}, "required": ["reject"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "repo": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "component": {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"touchaction-property/index.js": {"type": "string"}}, "required": ["touchaction-property/index.js"]}}, "required": ["scripts"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "_id": {"type": "string"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "repo", "description", "version", "keywords", "dependencies", "license", "component", "repository", "readme", "readmeFilename", "bugs", "_id", "dist", "_from", "_npmVersion", "_npmUser", "maintainers", "directories", "_shasum", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "touchaction-property", "repo" : "component/touchaction-property", "description" : "Returns \"touchAction\", \"msTouchAction\", or null", "version" : "0.0.1", "keywords" : ["touch", "action", "ms", "microsoft", "pointer", "events"], "dependencies" : {}, "license" : "MIT", "component" : {"scripts" : {"touchaction-property/index.js" : "index.js"}}, "repository" : {"type" : "git", "url" : "https://github.com/component/touchaction-property.git"}, "readme" : "\n# touchaction-property\n\n Returns "touchAction", "msTouchAction", or null.\n See: http://msdn.microsoft.com/en-us/library/windows/apps/hh767313.aspx\n\n## Installation\n\n Install with [component(1)](http://component.io):\n\n $ component install component/touchaction-property\n\n## API\n\n\n\n## License\n\n MIT\n", "readmeFilename" : "Readme.md", "bugs" : {"url" : "https://github.com/component/touchaction-property/issues"}, "_id" : "[email protected]", "dist" : {"shasum" : "f046a46224776091cacdc63c20ffc737b751f6c6", "tarball" : "http://registry.npmjs.org/touchaction-property/-/touchaction-property-0.0.1.tgz"}, "_from" : "[email protected]", "_npmVersion" : "1.3.11", "_npmUser" : {"name" : "tootallnate", "email" : "[email protected]"}, "maintainers" : [{"name" : "tootallnate", "email" : "[email protected]"}], "directories" : {}, "_shasum" : "f046a46224776091cacdc63c20ffc737b751f6c6", "_resolved" : "https://registry.npmjs.org/touchaction-property/-/touchaction-property-0.0.1.tgz"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "repo": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "component": {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"touchaction-property/index.js": {"type": "string"}}, "required": ["touchaction-property/index.js"]}}, "required": ["scripts"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "_id": {"type": "string"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "repo", "description", "version", "keywords", "dependencies", "license", "component", "repository", "readme", "readmeFilename", "bugs", "_id", "dist", "_from", "_npmVersion", "_npmUser", "maintainers", "directories", "_shasum", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 61267, "info" : {"name" : "punktorrents.com", "description" : "punktorrents.com", "additionalInfo" : null, "format" : "uso", "category" : "punktorrents", "createdAt" : "2012-02-21T14:18:24.000Z", "updatedAt" : "2012-02-21T14:18:24.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 110646, "name" : "milimetr"}}, "stats" : {"installs" : {"total" : 90, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "61267_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"www.punktorrents.com\") {\r\n\r\n\r\n.middle_panel, .board_message,\r\n#shoutbox_data, #shoutbox_e,\r\ntd[class=\"thead\"],\r\n#boardstats_e,\r\ndiv#copyright\r\n\r\n {\r\n display: none !important;\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"author": {"type": "array", "items": {"type": "string"}}, "install_msg": {"type": "string"}, "name": {"type": "string"}, "disabled": {"type": "boolean"}, "short": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {}}, "hidden": {"type": "boolean"}}, "required": ["author", "install_msg", "name", "disabled", "short", "description", "tags", "hidden"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : ["Deihim007"], "install_msg" : "Users can now use !mod or !mods to request your attention. Don't forget to configure the feed setting!", "name" : "modreq", "disabled" : false, "short" : "Request for mod attention", "description" : "Request for mod attention, sending messages to the feed channel", "tags" : [], "hidden" : false} | json_instruct | {"type": "object", "properties": {"author": {"type": "array", "items": {"type": "string"}}, "install_msg": {"type": "string"}, "name": {"type": "string"}, "disabled": {"type": "boolean"}, "short": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {}}, "hidden": {"type": "boolean"}}, "required": ["author", "install_msg", "name", "disabled", "short", "description", "tags", "hidden"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "authorOrCommitter": {"type": "boolean"}, "branch": {"type": "object", "properties": {"branch": {"type": "string"}}, "required": ["branch"]}, "browser": {"type": "object", "properties": {"stapler-class": {"type": "string"}, "url": {"type": "string"}}, "required": ["stapler-class", "url"]}, "buildChooser": {"type": "object", "properties": {"stapler-class": {"type": "string"}}, "required": ["stapler-class"]}, "clean": {"type": "boolean"}, "excludedRegions": {"type": "string"}, "excludedUsers": {"type": "string"}, "gitTool": {"type": "string"}, "localBranch": {"type": "string"}, "pruneBranches": {"type": "boolean"}, "recursiveSubmodules": {"type": "boolean"}, "relativeTargetDir": {"type": "string"}, "repo": {"type": "object", "properties": {"name": {"type": "string"}, "refspec": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "refspec", "url"]}, "value": {"type": "string"}, "wipeOutWorkspace": {"type": "boolean"}}, "required": ["", "authorOrCommitter", "branch", "browser", "buildChooser", "clean", "excludedRegions", "excludedUsers", "gitTool", "localBranch", "pruneBranches", "recursiveSubmodules", "relativeTargetDir", "repo", "value", "wipeOutWorkspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"" : ["hudson.plugins.git.util.DefaultBuildChooser", "1"], "authorOrCommitter" : false, "branch" : {"branch" : "master"}, "browser" : {"stapler-class" : "this.is.not.a.valid.BrowserClass", "url" : "https://github.com/hudson/Hudson-GIT-plugin"}, "buildChooser" : {"stapler-class" : "hudson.plugins.git.util.DefaultBuildChooser"}, "clean" : false, "excludedRegions" : "", "excludedUsers" : "", "gitTool" : "Default", "localBranch" : "", "pruneBranches" : false, "recursiveSubmodules" : false, "relativeTargetDir" : "", "repo" : {"name" : "origin", "refspec" : "+refs/heads/*:refs/remotes/origin/*", "url" : "[email protected]:hudson/Hudson-GIT-plugin.git"}, "value" : "2", "wipeOutWorkspace" : false} | json_instruct | {"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "authorOrCommitter": {"type": "boolean"}, "branch": {"type": "object", "properties": {"branch": {"type": "string"}}, "required": ["branch"]}, "browser": {"type": "object", "properties": {"stapler-class": {"type": "string"}, "url": {"type": "string"}}, "required": ["stapler-class", "url"]}, "buildChooser": {"type": "object", "properties": {"stapler-class": {"type": "string"}}, "required": ["stapler-class"]}, "clean": {"type": "boolean"}, "excludedRegions": {"type": "string"}, "excludedUsers": {"type": "string"}, "gitTool": {"type": "string"}, "localBranch": {"type": "string"}, "pruneBranches": {"type": "boolean"}, "recursiveSubmodules": {"type": "boolean"}, "relativeTargetDir": {"type": "string"}, "repo": {"type": "object", "properties": {"name": {"type": "string"}, "refspec": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "refspec", "url"]}, "value": {"type": "string"}, "wipeOutWorkspace": {"type": "boolean"}}, "required": ["", "authorOrCommitter", "branch", "browser", "buildChooser", "clean", "excludedRegions", "excludedUsers", "gitTool", "localBranch", "pruneBranches", "recursiveSubmodules", "relativeTargetDir", "repo", "value", "wipeOutWorkspace"], "$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" : 404395887, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "e50cbec4452dd04628af8d3858825d6c", "wof:id" : 404395887, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.27380065348446, 49.72904547512363, 3.29618357100559, 49.75661480822908], "geometry" : {"coordinates" : [[[3.29618350838213, 49.72904547512363], [3.27524196354973, 49.72953486363217], [3.27380065348446, 49.75549567259279], [3.2795066381255, 49.75661480822908], [3.28409133548197, 49.74308194860935], [3.29618357100559, 49.73624252256801], [3.29618350838213, 49.72904547512363]]], "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": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"content" : "<p>It times out too quickly for the game I am trying to run it on. I am not expecting much from Lean here, but I want to get a sense how long it takes it to run even a single iteration. In addition to removing timeout is there a way to do <code>#eval</code> with timing included?</p>", "id" : 179162357, "sender_full_name" : "Marko Grdini\u0107", "timestamp" : 1572167042}, {"content" : "<p>If it's a deterministic timeout then you can change the timeout parameter. I think it's -T if you're running Lean from the command line, and in VS Code just search in settings->preferences for lean timeout</p>", "id" : 179163087, "sender_full_name" : "Kevin Buzzard", "timestamp" : 1572168325}, {"content" : "<p>And there's always <code>#reduce</code> which is either far quicker or far slower, I can never remember which is which</p>", "id" : 179163115, "sender_full_name" : "Kevin Buzzard", "timestamp" : 1572168362}, {"content" : "<p>I remember reading that <code>#eval</code> is faster. Also, thanks I'll give it a shot.</p>", "id" : 179163301, "sender_full_name" : "Marko Grdini\u0107", "timestamp" : 1572168614}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}, "dependencies": {"type": "object", "properties": {"aws-sdk": {"type": "string"}, "md5": {"type": "string"}, "simple-level-log": {"type": "string"}}, "required": ["aws-sdk", "md5", "simple-level-log"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gpdc-dynamodb", "version" : "1.0.6", "description" : "This package provides a General-Purpose Durable Key-Value Caching solution. DynamoDB table is used to persist cached data.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/NuITTake/gpdc-dynamodb.git"}, "keywords" : ["Simple", "General", "Purpose", "Durable", "Key", "Value", "Cache", "DynamoDB"], "author" : "NuITTake ([email protected])", "license" : "ISC", "bugs" : {"url" : "https://github.com/NuITTake/gpdc-dynamodb/issues"}, "homepage" : "https://github.com/NuITTake/gpdc-dynamodb#readme", "devDependencies" : {"eslint" : "^5.16.0", "eslint-config-airbnb-base" : "^13.1.0", "eslint-plugin-import" : "^2.17.3"}, "dependencies" : {"aws-sdk" : "^2.487.0", "md5" : "^2.2.1", "simple-level-log" : "^2.0.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}, "dependencies": {"type": "object", "properties": {"aws-sdk": {"type": "string"}, "md5": {"type": "string"}, "simple-level-log": {"type": "string"}}, "required": ["aws-sdk", "md5", "simple-level-log"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 3604110007, "parent" : 3604110, "name" : "NYOMPOK", "latitude" : null, "longitude" : null, "postal" : [42178], "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"identityId": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "payload": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"devicePushToken": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["description", "type", "pattern"]}, "deviceIdentifier": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "deviceType": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "enum"]}}, "required": ["devicePushToken", "deviceIdentifier", "deviceType"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "properties", "required", "additionalProperties"]}, "headers": {"type": "object", "properties": {"Accept": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "X-Whim-User-Agent": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["Accept", "X-Whim-User-Agent"]}}, "required": ["identityId", "payload", "headers"]}, "additionalProperties": {"type": "boolean"}}, "required": ["$schema", "id", "description", "type", "properties", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema#", "id" : "https://api.maas.global/maas-backend/profile/profile-devices-put/request", "description" : "Request schema for profile-active-plan-put", "type" : "object", "properties" : {"identityId" : {"$ref" : "../../../core/components/units.json#/definitions/identityId"}, "payload" : {"type" : "object", "properties" : {"devicePushToken" : {"description" : "Push token - 32 chars in iOS, up to 255 in Android", "type" : "string", "pattern" : "^.{32,255}$"}, "deviceIdentifier" : {"$ref" : "../../../core/components/units.json#/definitions/uuid"}, "deviceType" : {"type" : "string", "enum" : ["iOS", "Android"]}}, "required" : ["devicePushToken", "deviceIdentifier", "deviceType"], "additionalProperties" : false}, "headers" : {"Accept" : {"$ref" : "../../../core/components/api-common.json#/definitions/acceptHeader"}, "X-Whim-User-Agent" : {"$ref" : "../../../core/components/api-common.json#/definitions/userAgentHeader"}}}, "additionalProperties" : false} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"identityId": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "payload": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"devicePushToken": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["description", "type", "pattern"]}, "deviceIdentifier": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "deviceType": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "enum"]}}, "required": ["devicePushToken", "deviceIdentifier", "deviceType"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "properties", "required", "additionalProperties"]}, "headers": {"type": "object", "properties": {"Accept": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "X-Whim-User-Agent": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["Accept", "X-Whim-User-Agent"]}}, "required": ["identityId", "payload", "headers"]}, "additionalProperties": {"type": "boolean"}}, "required": ["$schema", "id", "description", "type", "properties", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"iPOE_B1.neopixelbitrobit_colors|block": {"type": "string"}, "iPOE_B1.bitbot_neo_set_color|block": {"type": "string"}, "iPOE_B1.bitbot_neo_set_pixel_color|block": {"type": "string"}, "iPOE_B1.bitbot_neo_show|block": {"type": "string"}, "iPOE_B1.bitbot_neo_clear|block": {"type": "string"}, "iPOE_B1.bitbot_neo_rainbow|block": {"type": "string"}, "iPOE_B1.bitbot_neo_shift|block": {"type": "string"}, "iPOE_B1.bitbot_neo_rotate|block": {"type": "string"}, "iPOE_B1.bitbot_neo_brightness|block": {"type": "string"}, "iPOE_B1.bitbot_motor|block": {"type": "string"}, "iPOE_B1.bitbot_buzz|block": {"type": "string"}, "iPOE_B1.bitbot_read_line|block": {"type": "string"}, "iPOE_B1.bitbot_read_light|block": {"type": "string"}, "iPOE_B1.bitbot_sonar|block": {"type": "string"}}, "required": ["iPOE_B1.neopixelbitrobit_colors|block", "iPOE_B1.bitbot_neo_set_color|block", "iPOE_B1.bitbot_neo_set_pixel_color|block", "iPOE_B1.bitbot_neo_show|block", "iPOE_B1.bitbot_neo_clear|block", "iPOE_B1.bitbot_neo_rainbow|block", "iPOE_B1.bitbot_neo_shift|block", "iPOE_B1.bitbot_neo_rotate|block", "iPOE_B1.bitbot_neo_brightness|block", "iPOE_B1.bitbot_motor|block", "iPOE_B1.bitbot_buzz|block", "iPOE_B1.bitbot_read_line|block", "iPOE_B1.bitbot_read_light|block", "iPOE_B1.bitbot_sonar|block"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"iPOE_B1.neopixelbitrobit_colors|block" : "\u8f49\u70ba\u984f\u8272\u503c %color", "iPOE_B1.bitbot_neo_set_color|block" : "\u8a2d\u7f6eLED\u70ba %color |\u8272", "iPOE_B1.bitbot_neo_set_pixel_color|block" : "\u8a2d\u5b9a %offset|\u865fLED\u7684\u984f\u8272\u70ba %color|\u8272", "iPOE_B1.bitbot_neo_show|block" : "\u91cd\u756bLED", "iPOE_B1.bitbot_neo_clear|block" : "\u7184\u6ec5LED", "iPOE_B1.bitbot_neo_rainbow|block" : "\u8a2d\u70ba\u5f69\u8679\u71c8\u689d\u6a21\u5f0f", "iPOE_B1.bitbot_neo_shift|block" : "LED\u8dd1\u99ac\u71c8", "iPOE_B1.bitbot_neo_rotate|block" : "LED\u984f\u8272\u8f2a\u8f49", "iPOE_B1.bitbot_neo_brightness|block" : "\u8a2d\u5b9aLED\u4eae\u5ea6 |%value", "iPOE_B1.bitbot_motor|block" : "\u99ac\u9054 %motor|\u901f\u5ea6 %speed", "iPOE_B1.bitbot_buzz|block" : "\u8702\u9cf4\u5668 %flag", "iPOE_B1.bitbot_read_line|block" : "\u9ed1\u767d\u611f\u61c9\u5668 %sensor", "iPOE_B1.bitbot_read_light|block" : "\u7070\u5ea6\u611f\u61c9\u5668 %sensor", "iPOE_B1.bitbot_sonar|block" : "\u8d85\u97f3\u6ce2\u8ddd\u96e2 %unit"} | json_instruct | {"type": "object", "properties": {"iPOE_B1.neopixelbitrobit_colors|block": {"type": "string"}, "iPOE_B1.bitbot_neo_set_color|block": {"type": "string"}, "iPOE_B1.bitbot_neo_set_pixel_color|block": {"type": "string"}, "iPOE_B1.bitbot_neo_show|block": {"type": "string"}, "iPOE_B1.bitbot_neo_clear|block": {"type": "string"}, "iPOE_B1.bitbot_neo_rainbow|block": {"type": "string"}, "iPOE_B1.bitbot_neo_shift|block": {"type": "string"}, "iPOE_B1.bitbot_neo_rotate|block": {"type": "string"}, "iPOE_B1.bitbot_neo_brightness|block": {"type": "string"}, "iPOE_B1.bitbot_motor|block": {"type": "string"}, "iPOE_B1.bitbot_buzz|block": {"type": "string"}, "iPOE_B1.bitbot_read_line|block": {"type": "string"}, "iPOE_B1.bitbot_read_light|block": {"type": "string"}, "iPOE_B1.bitbot_sonar|block": {"type": "string"}}, "required": ["iPOE_B1.neopixelbitrobit_colors|block", "iPOE_B1.bitbot_neo_set_color|block", "iPOE_B1.bitbot_neo_set_pixel_color|block", "iPOE_B1.bitbot_neo_show|block", "iPOE_B1.bitbot_neo_clear|block", "iPOE_B1.bitbot_neo_rainbow|block", "iPOE_B1.bitbot_neo_shift|block", "iPOE_B1.bitbot_neo_rotate|block", "iPOE_B1.bitbot_neo_brightness|block", "iPOE_B1.bitbot_motor|block", "iPOE_B1.bitbot_buzz|block", "iPOE_B1.bitbot_read_line|block", "iPOE_B1.bitbot_read_light|block", "iPOE_B1.bitbot_sonar|block"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "fields": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["type", "name", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "listform", "name" : "Tabular", "fields" : {"count" : 9}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "fields": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["type", "name", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "director": {"type": "array", "items": {"type": "string"}}, "country": {"type": "string"}, "language": {"type": "array", "items": {"type": "string"}}, "poster_image_url": {"type": "string"}, "bio": {"type": "string"}, "runtime": {"type": "integer"}, "genre": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "director", "country", "language", "poster_image_url", "bio", "runtime", "genre"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Hungama", "director" : ["Priyadarshan"], "country" : "India", "language" : ["Hindi"], "poster_image_url" : "https://m.media-amazon.com/images/M/MV5BMGIxNDlkNTUtODdmNi00YzMzLTlhNjAtNTdjOTM5YjlkNmNmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY268_CR2,0,182,268_AL__QL50.jpg", "bio" : "The story of a bunch of misfits whose misconception about each others backgrounds end up in a series of chaotic, yet comic outcomes.", "runtime" : 153, "genre" : ["Comedy", "Drama", "Romance"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "director": {"type": "array", "items": {"type": "string"}}, "country": {"type": "string"}, "language": {"type": "array", "items": {"type": "string"}}, "poster_image_url": {"type": "string"}, "bio": {"type": "string"}, "runtime": {"type": "integer"}, "genre": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "director", "country", "language", "poster_image_url", "bio", "runtime", "genre"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["clean", "lint", "build", "prepublish"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"hoist-non-react-statics": {"type": "string"}}, "required": ["hoist-non-react-statics"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "rimraf": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "rimraf", "tslint", "typescript"]}}, "required": ["name", "version", "description", "main", "typings", "scripts", "author", "license", "repository", "files", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-monitor-promise", "version" : "0.1.3", "description" : "React HoC for monitor promise state", "main" : "lib/index.js", "typings" : "lib/index.d.ts", "scripts" : {"clean" : "rimraf lib", "lint" : "tslint -c tslint.json \"src/**/*.ts\"", "build" : "tsc", "prepublish" : "npm run clean && npm run build"}, "author" : "Giff Song <[email protected]>", "license" : "MIT", "repository" : "pawsong/react-monitor-promise", "files" : ["src", "lib"], "dependencies" : {"hoist-non-react-statics" : "^2.2.2"}, "devDependencies" : {"@types/react" : "^16.0.2", "rimraf" : "^2.6.1", "tslint" : "^5.6.0", "typescript" : "^2.4.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "lint": {"type": "string"}, "build": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["clean", "lint", "build", "prepublish"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"hoist-non-react-statics": {"type": "string"}}, "required": ["hoist-non-react-statics"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "rimraf": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "rimraf", "tslint", "typescript"]}}, "required": ["name", "version", "description", "main", "typings", "scripts", "author", "license", "repository", "files", "dependencies", "devDependencies"], "$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": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : {"type" : "Feature", "properties" : {"name" : "\u8001\u6cb3\u53e3\u5e02", "id" : "420682"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[111.627843046875, 32.6107204414063], [111.642345, 32.6078542304688], [111.693651152344, 32.617993390625], [111.733170195313, 32.5896681953126], [111.756761503906, 32.5567507148438], [111.772965117188, 32.5599538398438], [111.781519804688, 32.5480178046875], [111.853170195313, 32.5296681953125], [111.874671660156, 32.4996681953125], [111.913170195313, 32.5080178046875], [111.94310671875, 32.5270241523438], [111.975355253906, 32.4714015937501], [112.007345, 32.453843], [111.971219511719, 32.3999684882813], [111.928922148438, 32.3891139960938], [111.934354277344, 32.3648830390625], [111.911917753906, 32.3255763984375], [111.883814726563, 32.3318752265626], [111.83687625, 32.31431175], [111.823260527344, 32.2779274726562], [111.811429472656, 32.2697585273438], [111.803260527344, 32.2579274726563], [111.797345, 32.253843], [111.742908964844, 32.2441432929688], [111.773834257813, 32.218452375], [111.77150515625, 32.1956056953125], [111.751883574219, 32.1793044257812], [111.747345, 32.173843], [111.704425078125, 32.1820363593751], [111.692535429688, 32.2690334296876], [111.680511503906, 32.3033425117188], [111.632154570313, 32.3186525703126], [111.622535429688, 32.346489484375], [111.667860136719, 32.4055959296876], [111.632154570313, 32.4286525703126], [111.605108671875, 32.4578420234375], [111.527345, 32.493843], [111.550704375, 32.540483625], [111.573985625, 32.5672023750001], [111.577345, 32.593843], [111.582323027344, 32.6002907539063], [111.62170046875, 32.62948753125], [111.637345, 32.633843], [111.627843046875, 32.6107204414063]]]]}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"point": {"type": "array", "items": {"type": "number"}}}, "required": ["point"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"point" : [0.875, 0, 0.875]}, {"point" : [0.625, 0, 0.875]}, {"point" : [0.375, 0, 0.875]}, {"point" : [0.125, 0, 0.875]}, {"point" : [-0.125, 0, 0.875]}, {"point" : [-0.375, 0, 0.875]}, {"point" : [-0.625, 0, 0.875]}, {"point" : [-0.875, 0, 0.875]}, {"point" : [0.875, 0, 0.625]}, {"point" : [0.625, 0, 0.625]}, {"point" : [0.375, 0, 0.625]}, {"point" : [0.125, 0, 0.625]}, {"point" : [-0.125, 0, 0.625]}, {"point" : [-0.375, 0, 0.625]}, {"point" : [-0.625, 0, 0.625]}, {"point" : [-0.875, 0, 0.625]}, {"point" : [0.875, 0, 0.375]}, {"point" : [0.625, 0, 0.375]}, {"point" : [0.375, 0, 0.375]}, {"point" : [0.125, 0, 0.375]}, {"point" : [-0.125, 0, 0.375]}, {"point" : [-0.375, 0, 0.375]}, {"point" : [-0.625, 0, 0.375]}, {"point" : [-0.875, 0, 0.375]}, {"point" : [0.875, 0, 0.125]}, {"point" : [0.625, 0, 0.125]}, {"point" : [0.375, 0, 0.125]}, {"point" : [0.125, 0, 0.125]}, {"point" : [-0.125, 0, 0.125]}, {"point" : [-0.375, 0, 0.125]}, {"point" : [-0.625, 0, 0.125]}, {"point" : [-0.875, 0, 0.125]}, {"point" : [0.875, 0, -0.125]}, {"point" : [0.625, 0, -0.125]}, {"point" : [0.375, 0, -0.125]}, {"point" : [0.125, 0, -0.125]}, {"point" : [-0.125, 0, -0.125]}, {"point" : [-0.375, 0, -0.125]}, {"point" : [-0.625, 0, -0.125]}, {"point" : [-0.875, 0, -0.125]}, {"point" : [0.875, 0, -0.375]}, {"point" : [0.625, 0, -0.375]}, {"point" : [0.375, 0, -0.375]}, {"point" : [0.125, 0, -0.375]}, {"point" : [-0.125, 0, -0.375]}, {"point" : [-0.375, 0, -0.375]}, {"point" : [-0.625, 0, -0.375]}, {"point" : [-0.875, 0, -0.375]}, {"point" : [0.875, 0, -0.625]}, {"point" : [0.625, 0, -0.625]}, {"point" : [0.375, 0, -0.625]}, {"point" : [0.125, 0, -0.625]}, {"point" : [-0.125, 0, -0.625]}, {"point" : [-0.375, 0, -0.625]}, {"point" : [-0.625, 0, -0.625]}, {"point" : [-0.875, 0, -0.625]}, {"point" : [0.875, 0, -0.875]}, {"point" : [0.625, 0, -0.875]}, {"point" : [0.375, 0, -0.875]}, {"point" : [0.125, 0, -0.875]}, {"point" : [-0.125, 0, -0.875]}, {"point" : [-0.375, 0, -0.875]}, {"point" : [-0.625, 0, -0.875]}, {"point" : [-0.875, 0, -0.875]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"point": {"type": "array", "items": {"type": "number"}}}, "required": ["point"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"devtools_port": {"type": "integer"}, "licenseKey": {"type": "string"}, "startup_app": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}, "uuid": {"type": "string"}, "autoShow": {"type": "boolean"}, "saveWindowState": {"type": "boolean"}, "defaultWidth": {"type": "integer"}, "defaultHeight": {"type": "integer"}}, "required": ["name", "description", "url", "icon", "uuid", "autoShow", "saveWindowState", "defaultWidth", "defaultHeight"]}, "services": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "manifestUrl": {"type": "string"}}, "required": ["name", "manifestUrl"]}}, "runtime": {"type": "object", "properties": {"arguments": {"type": "string"}, "version": {"type": "string"}}, "required": ["arguments", "version"]}}, "required": ["devtools_port", "licenseKey", "startup_app", "services", "runtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devtools_port" : 9090, "licenseKey" : "64605fac-add3-48a0-8710-64b38e96a2dd", "startup_app" : {"name" : "FDC3 Launcher POC", "description" : "OpenFin FDC3 Sample Application", "url" : "http://localhost:3923/demo/index.html", "icon" : "http://localhost:3923/demo/img/app-icons/launcher.ico", "uuid" : "fdc3-launcher", "autoShow" : true, "saveWindowState" : false, "defaultWidth" : 906, "defaultHeight" : 357}, "services" : [{"name" : "fdc3", "manifestUrl" : "http://localhost:3923/app.json"}], "runtime" : {"arguments" : "", "version" : "10.66.39.43"}} | json_instruct | {"type": "object", "properties": {"devtools_port": {"type": "integer"}, "licenseKey": {"type": "string"}, "startup_app": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "icon": {"type": "string"}, "uuid": {"type": "string"}, "autoShow": {"type": "boolean"}, "saveWindowState": {"type": "boolean"}, "defaultWidth": {"type": "integer"}, "defaultHeight": {"type": "integer"}}, "required": ["name", "description", "url", "icon", "uuid", "autoShow", "saveWindowState", "defaultWidth", "defaultHeight"]}, "services": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "manifestUrl": {"type": "string"}}, "required": ["name", "manifestUrl"]}}, "runtime": {"type": "object", "properties": {"arguments": {"type": "string"}, "version": {"type": "string"}}, "required": ["arguments", "version"]}}, "required": ["devtools_port", "licenseKey", "startup_app", "services", "runtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"excludedFiles": {"type": "array", "items": {"type": "string"}}, "hideFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["excludedFiles", "hideFiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"excludedFiles" : ["!node_modules", "!dist", "!www"], "hideFiles" : ["!node_modules", "!dist", "!www"]} | json_instruct | {"type": "object", "properties": {"excludedFiles": {"type": "array", "items": {"type": "string"}}, "hideFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["excludedFiles", "hideFiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "iconUrl": {"type": "string"}, "orgUrl": {"type": "string"}}, "required": ["id", "name", "iconUrl", "orgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "MAGNETIS", "name" : "Magnetis", "iconUrl" : "https://s3.eu-west-3.amazonaws.com/googledatastudio/magnetis-ico.png", "orgUrl" : "https://www.magnetis.fr/"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "iconUrl": {"type": "string"}, "orgUrl": {"type": "string"}}, "required": ["id", "name", "iconUrl", "orgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "image", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Anime-Styled Boy", "image" : "image.jpg", "url" : "https://cdn.tivolicloud.com/defaultAvatars/AnimeBoy2/AnimeBoy2.fst"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "image", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"HeartbeatInterval": {"type": "string"}, "Endpoint": {"type": "string"}, "EndpointInternal": {"type": "string"}, "MaxCores": {"type": "integer"}, "MaxAppMem": {"type": "integer"}, "AppImageDir": {"type": "string"}, "AppStartTimeout": {"type": "string"}, "AppStopTimeout": {"type": "string"}, "AppRestartTimeout": {"type": "string"}, "CertsDirectory": {"type": "string"}, "KubernetesMode": {"type": "boolean"}, "VhostSocket": {"type": "string"}, "DownloadTimeout": {"type": "string"}}, "required": ["HeartbeatInterval", "Endpoint", "EndpointInternal", "MaxCores", "MaxAppMem", "AppImageDir", "AppStartTimeout", "AppStopTimeout", "AppRestartTimeout", "CertsDirectory", "KubernetesMode", "VhostSocket", "DownloadTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HeartbeatInterval" : "60s", "Endpoint" : "localhost:52102", "EndpointInternal" : "localhost:52103", "MaxCores" : 8, "MaxAppMem" : 2147483647, "AppImageDir" : "/var/lib/appliance/applications", "AppStartTimeout" : "10s", "AppStopTimeout" : "10s", "AppRestartTimeout" : "20s", "CertsDirectory" : "testdata/certs", "KubernetesMode" : true, "VhostSocket" : "/var/lib/appliance/nts/qemu/usvhost-1", "DownloadTimeout" : "10m"} | json_instruct | {"type": "object", "properties": {"HeartbeatInterval": {"type": "string"}, "Endpoint": {"type": "string"}, "EndpointInternal": {"type": "string"}, "MaxCores": {"type": "integer"}, "MaxAppMem": {"type": "integer"}, "AppImageDir": {"type": "string"}, "AppStartTimeout": {"type": "string"}, "AppStopTimeout": {"type": "string"}, "AppRestartTimeout": {"type": "string"}, "CertsDirectory": {"type": "string"}, "KubernetesMode": {"type": "boolean"}, "VhostSocket": {"type": "string"}, "DownloadTimeout": {"type": "string"}}, "required": ["HeartbeatInterval", "Endpoint", "EndpointInternal", "MaxCores", "MaxAppMem", "AppImageDir", "AppStartTimeout", "AppStopTimeout", "AppRestartTimeout", "CertsDirectory", "KubernetesMode", "VhostSocket", "DownloadTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u3010\u30b5\u30c6\u30f3\u30d5\u30a7\u30c1\u3011Sweet Devil\u3010MMD \u5f31\u97f3\u30cf\u30af\u3011", "author" : "men-and-alcohol", "description" : "\u975e\u30a8\u30ed\u3067\u3059\u3002\u5149\u6ca2\u8863\u88c5\u304c\u597d\u304d\u3059\u304e\u3066\u4f5c\u3063\u305f\u52d5\u753b\u3067\u3059\u3002<br>\u305f\u3060\u306e\u81ea\u5df1\u6e80\u30ea\u30e1\u30a4\u30af\u52d5\u753b\u3067\u3059\u3002<br>\u81ea\u5206\u306f\u3053\u308c\u3060\u3051\u3067\u8208\u596e\u3057\u307e\u3059\u3001\u306f\u3044\u3002", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/623669/thumbnail-623669_0005.jpg?itok=wkf5aEnj", "download" : "https://www.iwara.tv/api/video/42qwotlggytypy7bd", "origin" : "https://www.iwara.tv/videos/42qwotlggytypy7bd"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [326.771, 235.48, 0.90156, 355.521, 274.598, 0.695469, 338.531, 270.654, 0.552572, 0, 0, 0, 0, 0, 0, 371.19, 275.926, 0.761846, 363.317, 348.929, 0.781336, 299.42, 337.205, 0.809124, 372.47, 381.651, 0.462857, 403.815, 459.933, 0.434481, 0, 0, 0, 386.853, 382.913, 0.589282, 384.227, 467.763, 0.527798, 0, 0, 0, 321.579, 228.928, 0.682423, 335.893, 230.192, 0.844662, 0, 0, 0, 354.212, 232.833, 0.763237], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}, {"pose_keypoints_2d" : [354.225, 188.43, 0.768086, 304.594, 222.338, 0.474047, 299.413, 223.624, 0.806543, 298.056, 298.091, 0.912452, 362.039, 312.432, 0.740994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287.668, 360.753, 0.497595, 288.939, 456.019, 0.263371, 0, 0, 0, 282.413, 358.127, 0.316717, 287.632, 458.62, 0.0817955, 0, 0, 0, 351.582, 180.625, 0.898295, 0, 0, 0, 330.758, 180.627, 0.893873, 0, 0, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["http://nautil.us/issue/54/the-unspoken/physics-has-demoted-mass", "http://www.nextavenue.org/older-americans-nomadland/", "http://meshedsociety.com/the-jobs-of-the-future-are-already-here-and-some-are-really-weird/", "https://blackthen.com/poet-claude-mckays-must-die/", "https://blackthen.com/gallatin-county-race-riot-1866/", "https://www.newyorker.com/humor/daily-shouts/actual-reasons-id-like-to-add-you-to-my-professional-network-on-linkedin", "http://www.openculture.com/2017/11/filmmaker-creates-a-luxury-style-car-commercial-to-sell-a-21-year-old-used-honda-accord.html"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "cdn": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "UseStubProviderRelationships": {"type": "boolean"}}, "required": ["Logging", "AllowedHosts", "cdn", "UseStubProviderRelationships"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Warning"}}, "AllowedHosts" : "*", "cdn" : {"url" : "https://das-prd-frnt-end.azureedge.net"}, "UseStubProviderRelationships" : false} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "cdn": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "UseStubProviderRelationships": {"type": "boolean"}}, "required": ["Logging", "AllowedHosts", "cdn", "UseStubProviderRelationships"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "airnotifier", "description" : "Easy to use push notifications for iOS, Android and Windows", "license" : {"key" : "bsd-3-clause", "name" : "BSD 3-clause \"New\" or \"Revised\" License", "spdx_id" : "BSD-3-Clause", "url" : "https://api.github.com/licenses/bsd-3-clause"}, "starNum" : 357, "folkNum" : 119, "watchNum" : 357, "topic" : ["android", "gcm", "notifications", "protocol", "python", "sms", "wns-protocol"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type": "number"}, "orbital_eccentricity": {"type": "integer"}, "star_temp": {"type": "integer"}, "star_radius": {"type": "number"}, "planet_temp": {"type": "integer"}, "radius": {"type": "number"}, "discovery_year": {"type": "integer"}, "light_years": {"type": "number"}}, "required": ["FIELD1", "key", "star_name", "planet_letter", "discovery_method", "pl_pnum", "orbital_period", "semi_major", "orbital_eccentricity", "star_temp", "star_radius", "planet_temp", "radius", "discovery_year", "light_years"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"FIELD1" : 240, "key" : "HATS-2_b", "star_name" : "HATS-2", "planet_letter" : "b", "discovery_method" : "Transit", "pl_pnum" : 1, "orbital_period" : 1.354133, "semi_major" : 0.023, "orbital_eccentricity" : 0, "star_temp" : 5227, "star_radius" : 0.9, "planet_temp" : 1577, "radius" : 13.092, "discovery_year" : 2013, "light_years" : 1174.1616}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"FIELD1": {"type": "integer"}, "key": {"type": "string"}, "star_name": {"type": "string"}, "planet_letter": {"type": "string"}, "discovery_method": {"type": "string"}, "pl_pnum": {"type": "integer"}, "orbital_period": {"type": "number"}, "semi_major": {"type": "number"}, "orbital_eccentricity": {"type": "integer"}, "star_temp": {"type": "integer"}, "star_radius": {"type": "number"}, "planet_temp": {"type": "integer"}, "radius": {"type": "number"}, "discovery_year": {"type": "integer"}, "light_years": {"type": "number"}}, "required": ["FIELD1", "key", "star_name", "planet_letter", "discovery_method", "pl_pnum", "orbital_period", "semi_major", "orbital_eccentricity", "star_temp", "star_radius", "planet_temp", "radius", "discovery_year", "light_years"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vv22:1.1": {"type": "string"}, "vv22:2.1": {"type": "string"}, "vv22:3.1": {"type": "string"}, "vv22:4.1": {"type": "string"}, "vv22:5.1": {"type": "string"}, "vv22:6.1": {"type": "string"}, "vv22:7.1": {"type": "string"}, "vv22:8.1": {"type": "string"}, "vv22:9.1": {"type": "string"}, "vv22:10.1": {"type": "string"}, "vv22:11.1": {"type": "string"}, "vv22:12.1": {"type": "string"}}, "required": ["vv22:1.1", "vv22:2.1", "vv22:3.1", "vv22:4.1", "vv22:5.1", "vv22:6.1", "vv22:7.1", "vv22:8.1", "vv22:9.1", "vv22:10.1", "vv22:11.1", "vv22:12.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vv22:1.1" : "ms19Vv_231, msdiv206, vns204", "vv22:2.1" : "ms19Vv_232, msdiv207, vns205", "vv22:3.1" : "csp1ed19.27, csp2ed19.27, ms19Vv_233, msdiv208, pts-vp-pli2ed27, vns206", "vv22:4.1" : "ms19Vv_234, msdiv209, vns207", "vv22:5.1" : "ms19Vv_235, msdiv210, ndp21.29, vns208", "vv22:6.1" : "ms19Vv_236, msdiv211, sya26.33, vns209", "vv22:7.1" : "dr26.36, ms19Vv_237, msdiv212, vns210", "vv22:8.1" : "bj26.46, ms19Vv_238, msdiv213, vns211", "vv22:9.1" : "ms19Vv_239, msdiv214, vns212, vri56.21", "vv22:10.1" : "ms19Vv_240, msdiv215, vns213", "vv22:11.1" : "ms19Vv_241, msdiv216, vns214", "vv22:12.1" : "ms19Vv_242"} | json_instruct | {"type": "object", "properties": {"vv22:1.1": {"type": "string"}, "vv22:2.1": {"type": "string"}, "vv22:3.1": {"type": "string"}, "vv22:4.1": {"type": "string"}, "vv22:5.1": {"type": "string"}, "vv22:6.1": {"type": "string"}, "vv22:7.1": {"type": "string"}, "vv22:8.1": {"type": "string"}, "vv22:9.1": {"type": "string"}, "vv22:10.1": {"type": "string"}, "vv22:11.1": {"type": "string"}, "vv22:12.1": {"type": "string"}}, "required": ["vv22:1.1", "vv22:2.1", "vv22:3.1", "vv22:4.1", "vv22:5.1", "vv22:6.1", "vv22:7.1", "vv22:8.1", "vv22:9.1", "vv22:10.1", "vv22:11.1", "vv22:12.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"auth": {"type": "object", "properties": {"bearer": {"type": "object", "properties": {"active": {"type": "boolean"}}, "required": ["active"]}, "basic": {"type": "object", "properties": {"active": {"type": "boolean"}}, "required": ["active"]}}, "required": ["bearer", "basic"]}}, "required": ["auth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"auth" : {"bearer" : {"active" : false}, "basic" : {"active" : false}}} | json_instruct | {"type": "object", "properties": {"auth": {"type": "object", "properties": {"bearer": {"type": "object", "properties": {"active": {"type": "boolean"}}, "required": ["active"]}, "basic": {"type": "object", "properties": {"active": {"type": "boolean"}}, "required": ["active"]}}, "required": ["bearer", "basic"]}}, "required": ["auth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[9, 22], [14, 9], [22, 9], [13, 29], [9, 0], [9, 11], [9, 0], [9, 25], [9, 6], [23, 9], [9, 14], [9, 18], [9, 15], [5, 26], [9, 0], [9, 17], [9, 12], [24, 9], [2, 9], [21, 9], [9, 30], [22, 9], [3, 9], [4, 9], [19, 9], [0, 9], [9, 0], [0, 9], [16, 28], [9, 14], [9, 27], [16, 9], [20, 9], [9, 28], [18, 0], [10, 8], [9, 19], [7, 9], [1, 9], [9, 14]], "features" : {"0" : "7", "1" : "1", "2" : "1", "3" : "1", "4" : "1", "5" : "1", "6" : "1", "7" : "1", "8" : "1", "9" : "35", "10" : "1", "11" : "1", "12" : "1", "13" : "1", "14" : "4", "15" : "1", "16" : "2", "17" : "1", "18" : "2", "19" : "2", "20" : "1", "21" : "1", "22" : "3", "23" : "1", "24" : "1", "25" : "1", "26" : "1", "27" : "1", "28" : "2", "29" : "1", "30" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Pacoyoy, Villareal, Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.samar.villareal.pacoyoy", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "66", "province_reference" : "66", "province_name" : "Samar", "city_id" : "1411", "city_reference" : "1389", "city_name" : "Villareal", "barangay_id" : "41359", "barangay_reference" : "36034", "barangay_name" : "Pacoyoy"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.910248, 11.55254], [124.913147, 11.55154], [124.914597, 11.55055], [124.916634, 11.55005], [124.919067, 11.54922], [124.913109, 11.54205], [124.905792, 11.54811], [124.910248, 11.55254]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "version": {"type": "array", "items": {"type": "string"}}}, "required": ["toc_title", "href", "version"]}}, "version": {"type": "array", "items": {"type": "string"}}, "pdf_name": {"type": "string"}}, "required": ["toc_title", "href", "children", "version", "pdf_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"toc_title" : "System.Activities.Core.Presentation.Factories", "href" : "../../system.activities.core.presentation.factories", "children" : [{"toc_title" : "ForEachWithBodyFactory<T>", "href" : "../../system.activities.core.presentation.factories.foreachwithbodyfactory-1", "version" : ["netframework-4.0-client", "netframework-4.0", "netframework-4.5.1", "netframework-4.5.2", "netframework-4.5", "netframework-4.6.1", "netframework-4.6.2", "netframework-4.6"]}, {"toc_title" : "ParallelForEachWithBodyFactory<T>", "href" : "../../system.activities.core.presentation.factories.parallelforeachwithbodyfactory-1", "version" : ["netframework-4.0-client", "netframework-4.0", "netframework-4.5.1", "netframework-4.5.2", "netframework-4.5", "netframework-4.6.1", "netframework-4.6.2", "netframework-4.6"]}, {"toc_title" : "PickWithTwoBranchesFactory", "href" : "../../system.activities.core.presentation.factories.pickwithtwobranchesfactory", "version" : ["netframework-4.0-client", "netframework-4.0", "netframework-4.5.1", "netframework-4.5.2", "netframework-4.5", "netframework-4.6.1", "netframework-4.6.2", "netframework-4.6"]}, {"toc_title" : "StateMachineWithInitialStateFactory", "href" : "../../system.activities.core.presentation.factories.statemachinewithinitialstatefactory", "version" : ["netframework-4.5.1", "netframework-4.5.2", "netframework-4.5", "netframework-4.6.1", "netframework-4.6.2", "netframework-4.6"]}], "version" : ["netframework-4.0-client", "netframework-4.0", "netframework-4.5.1", "netframework-4.5.2", "netframework-4.5", "netframework-4.6.1", "netframework-4.6.2", "netframework-4.6"], "pdf_name" : "/api/_splitted/System.Activities.Core.Presentation.Factories.pdf"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "version": {"type": "array", "items": {"type": "string"}}}, "required": ["toc_title", "href", "version"]}}, "version": {"type": "array", "items": {"type": "string"}}, "pdf_name": {"type": "string"}}, "required": ["toc_title", "href", "children", "version", "pdf_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"~#set": {"type": "array", "items": {"type": "integer"}}}, "required": ["~#set"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"~#set" : [1, 3, 2]} | json_instruct | {"type": "object", "properties": {"~#set": {"type": "array", "items": {"type": "integer"}}}, "required": ["~#set"], "$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" : "510822221001", "text" : "\u9752\u5cf0\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221002", "text" : "\u5efa\u5cf0\u4e61\u9f99\u5cf0\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221200", "text" : "\u5efa\u5cf0\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221202", "text" : "\u9752\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221203", "text" : "\u78be\u5b50\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221204", "text" : "\u845b\u5e95\u6751\u793e\u533a\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221205", "text" : "\u9752\u5cf0\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221206", "text" : "\u9f99\u5cf0\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221207", "text" : "\u5f00\u5cf0\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221208", "text" : "\u9752\u5c71\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510822221209", "text" : "\u9752\u6625\u6751\u6c11\u59d4\u5458\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"botname": {"type": "string"}, "DefaultLanguage": {"type": "string"}, "DefaultDistance": {"type": "string"}, "DefaultSort": {"type": "string"}, "DefaultListlenth": {"type": "string"}, "DefaultListmode": {"type": "string"}, "botversion": {"type": "string"}, "LogChat": {"type": "string"}, "isSuperAdmin": {"type": "string"}, "isSuperAdminUsername": {"type": "string"}, "dbreaduserhost": {"type": "string"}, "dbreaduser": {"type": "string"}, "database": {"type": "string"}, "WTdelmsgshort": {"type": "string"}, "WTdelmsglong": {"type": "string"}}, "required": ["botname", "DefaultLanguage", "DefaultDistance", "DefaultSort", "DefaultListlenth", "DefaultListmode", "botversion", "LogChat", "isSuperAdmin", "isSuperAdminUsername", "dbreaduserhost", "dbreaduser", "database", "WTdelmsgshort", "WTdelmsglong"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"botname" : "VGN_Infobot", "DefaultLanguage" : "DE", "DefaultDistance" : "500", "DefaultSort" : "Distance", "DefaultListlenth" : "3", "DefaultListmode" : "list", "botversion" : "0.1", "LogChat" : "-1001211106939", "isSuperAdmin" : "206921999", "isSuperAdminUsername" : "BolverBlitz", "dbreaduserhost" : "localhost", "dbreaduser" : "root", "database" : "VAGInfo", "WTdelmsgshort" : "5400", "WTdelmsglong" : "15400"} | json_instruct | {"type": "object", "properties": {"botname": {"type": "string"}, "DefaultLanguage": {"type": "string"}, "DefaultDistance": {"type": "string"}, "DefaultSort": {"type": "string"}, "DefaultListlenth": {"type": "string"}, "DefaultListmode": {"type": "string"}, "botversion": {"type": "string"}, "LogChat": {"type": "string"}, "isSuperAdmin": {"type": "string"}, "isSuperAdminUsername": {"type": "string"}, "dbreaduserhost": {"type": "string"}, "dbreaduser": {"type": "string"}, "database": {"type": "string"}, "WTdelmsgshort": {"type": "string"}, "WTdelmsglong": {"type": "string"}}, "required": ["botname", "DefaultLanguage", "DefaultDistance", "DefaultSort", "DefaultListlenth", "DefaultListmode", "botversion", "LogChat", "isSuperAdmin", "isSuperAdminUsername", "dbreaduserhost", "dbreaduser", "database", "WTdelmsgshort", "WTdelmsglong"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "sinkdweller": {"type": "string"}}, "required": ["chalk", "sinkdweller"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fuzz-me-maybe", "version" : "1.0.3", "description" : "Easily create controllable, radamsa-backed fuzzers using third-party packages and environment variables.", "main" : "fuzzer.js", "scripts" : {"test" : "jest"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rarecoil/fuzz-me-maybe.git"}, "keywords" : ["security", "fuzzing", "radamsa"], "author" : "rarecoil", "license" : "MIT", "bugs" : {"url" : "https://github.com/rarecoil/fuzz-me-maybe/issues"}, "homepage" : "https://github.com/rarecoil/fuzz-me-maybe#readme", "dependencies" : {"chalk" : "^2.4.2", "sinkdweller" : "^1.0.5"}, "devDependencies" : {"jest" : "^24.8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "sinkdweller": {"type": "string"}}, "required": ["chalk", "sinkdweller"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-angular-templatecache": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-cachebust": {"type": "string"}, "gulp-cached": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-minify-html": {"type": "string"}, "gulp-ng-annotate": {"type": "string"}, "gulp-remember": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-webserver": {"type": "string"}, "jasmine-core": {"type": "string"}, "jshint-stylish": {"type": "string"}, "karma": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "merge-stream": {"type": "string"}}, "required": ["del", "gulp", "gulp-angular-templatecache", "gulp-babel", "gulp-cachebust", "gulp-cached", "gulp-concat", "gulp-csso", "gulp-jshint", "gulp-minify-html", "gulp-ng-annotate", "gulp-remember", "gulp-sass", "gulp-sourcemaps", "gulp-uglify", "gulp-webserver", "jasmine-core", "jshint-stylish", "karma", "karma-jasmine", "karma-phantomjs-launcher", "merge-stream"]}}, "required": ["name", "private", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kayak-handicap", "private" : true, "version" : "0.0.0", "devDependencies" : {"del" : "^1.1.1", "gulp" : "^3.8.11", "gulp-angular-templatecache" : "^1.7.0", "gulp-babel" : "^5.2.0", "gulp-cachebust" : "0.0.5", "gulp-cached" : "^1.1.0", "gulp-concat" : "^2.5.2", "gulp-csso" : "^1.0.0", "gulp-jshint" : "^1.10.0", "gulp-minify-html" : "^1.0.4", "gulp-ng-annotate" : "^1.1.0", "gulp-remember" : "^0.3.0", "gulp-sass" : "^1.3.3", "gulp-sourcemaps" : "^1.5.1", "gulp-uglify" : "^1.1.0", "gulp-webserver" : "^0.9.0", "jasmine-core" : "^2.2.0", "jshint-stylish" : "^2.0.1", "karma" : "^0.13.9", "karma-jasmine" : "^0.3.5", "karma-phantomjs-launcher" : "^0.1.4", "merge-stream" : "^1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-angular-templatecache": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-cachebust": {"type": "string"}, "gulp-cached": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-jshint": {"type": "string"}, "gulp-minify-html": {"type": "string"}, "gulp-ng-annotate": {"type": "string"}, "gulp-remember": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-webserver": {"type": "string"}, "jasmine-core": {"type": "string"}, "jshint-stylish": {"type": "string"}, "karma": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-phantomjs-launcher": {"type": "string"}, "merge-stream": {"type": "string"}}, "required": ["del", "gulp", "gulp-angular-templatecache", "gulp-babel", "gulp-cachebust", "gulp-cached", "gulp-concat", "gulp-csso", "gulp-jshint", "gulp-minify-html", "gulp-ng-annotate", "gulp-remember", "gulp-sass", "gulp-sourcemaps", "gulp-uglify", "gulp-webserver", "jasmine-core", "jshint-stylish", "karma", "karma-jasmine", "karma-phantomjs-launcher", "merge-stream"]}}, "required": ["name", "private", "version", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "bc11f34a039f47e320919654afef6290980b6f46"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"extensions": {"type": "object", "properties": {"%2FUsers%2Fkurage%2Ftest%2Fhtml": {"type": "array", "items": {"type": "string"}}}, "required": ["%2FUsers%2Fkurage%2Ftest%2Fhtml"]}}, "required": ["extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extensions" : {"%2FUsers%2Fkurage%2Ftest%2Fhtml" : [" "]}} | json_instruct | {"type": "object", "properties": {"extensions": {"type": "object", "properties": {"%2FUsers%2Fkurage%2Ftest%2Fhtml": {"type": "array", "items": {"type": "string"}}}, "required": ["%2FUsers%2Fkurage%2Ftest%2Fhtml"]}}, "required": ["extensions"], "$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"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "null"}, "lastversion": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "croppic", "assets" : [{"files" : ["croppic.js", "croppic.min.js"], "version" : "1.0.1", "mainfile" : "croppic.min.js"}, {"files" : ["croppic.js", "croppic.min.js"], "version" : "1.0.2", "mainfile" : "croppic.min.js"}, {"files" : ["croppic.js", "croppic.min.js"], "version" : "1.0.3", "mainfile" : "croppic.min.js"}], "versions" : ["1.0.3", "1.0.2", "1.0.1"], "zip" : "croppic.zip", "mainfile" : "croppic.min.js", "author" : null, "lastversion" : "1.0.3", "homepage" : "http://www.croppic.net", "description" : "The image cropping jquery plugin that will satisfy your needs and much more"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type": "array", "items": {"type": "string"}}, "zip": {"type": "string"}, "mainfile": {"type": "string"}, "author": {"type": "null"}, "lastversion": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "assets", "versions", "zip", "mainfile", "author", "lastversion", "homepage", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "build", "prepublishOnly"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "ts-node": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "chai", "mocha", "rollup", "rollup-plugin-commonjs", "rollup-plugin-terser", "rollup-plugin-typescript2", "ts-node", "tslib", "typescript"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "module", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@dking/event-proxy", "version" : "1.0.1", "description" : "event proxy plug-in implemented with TS", "main" : "./dist/eventproxy.js", "module" : "./dist/eventproxy.esm.js", "types" : "./dist/index.d.ts", "scripts" : {"test" : "mocha --require ts-node/register 'test/**/*.test.{ts,tsx}'", "build" : "rollup -c", "prepublishOnly" : "npm run test && npm run build"}, "repository" : {"type" : "git", "url" : "git+https://github.com/JohnApache/event-proxy.git"}, "keywords" : ["\u8f7b\u91cf\u81ea\u5b9a\u4e49\u4e8b\u4ef6\u4ee3\u7406\u63d2\u4ef6", "\u89e3\u9664\u56de\u8c03\u5730\u72f1\u95ee\u9898", "\u591a\u5f02\u6b65\u4e32\u884c\u6267\u884c", "\u5168\u5c40\u8ba2\u9605\u6a21\u5f0f", "UMD\u89c4\u8303", "async await\u4e8b\u4ef6\u517c\u5bb9"], "author" : "JohnApache", "license" : "MIT", "bugs" : {"url" : "https://github.com/JohnApache/event-proxy/issues"}, "homepage" : "https://github.com/JohnApache/event-proxy#readme", "devDependencies" : {"@types/chai" : "^4.2.3", "@types/mocha" : "^5.2.7", "chai" : "^4.2.0", "mocha" : "^6.2.0", "rollup" : "^1.21.4", "rollup-plugin-commonjs" : "^10.1.0", "rollup-plugin-terser" : "^5.1.2", "rollup-plugin-typescript2" : "^0.24.2", "ts-node" : "^8.4.1", "tslib" : "^1.10.0", "typescript" : "^3.6.3"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "build", "prepublishOnly"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "ts-node": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "chai", "mocha", "rollup", "rollup-plugin-commonjs", "rollup-plugin-terser", "rollup-plugin-typescript2", "ts-node", "tslib", "typescript"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "module", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [97.007874015748, 33.0472727272727, 0.853548124432564, 100.283464566929, 97.9781818181818, 0.661761589348316, 54.6771653543307, 96.8145454545455, 0.543683476746082, 20.1574803149606, 144.756363636364, 0.758440986275673, 53.4173228346457, 204.334545454545, 0.465580299496651, 144.88188976378, 101.003636363636, 0.639449439942837, 144.377952755906, 137.076363636364, 0.674359261989594, 137.322834645669, 174.778181818182, 0.649681977927685, 75.3385826771653, 230.865454545455, 0.22124682192225, 0, 0, 0, 0, 0, 0, 130.267716535433, 223.883636363636, 0.175816425209632, 0, 0, 0, 0, 0, 0, 88.4409448818898, 27.9272727272727, 0.924363568425179, 108.59842519685, 25.6, 0.939624637365341, 81.8897637795276, 43.52, 0.600883908569813, 125.48031496063, 38.6327272727273, 0.894409194588661], "hand_right_keypoints" : [], "hand_left_keypoints" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}}, "required": ["face_keypoints", "pose_keypoints", "hand_right_keypoints", "hand_left_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "module": {"type": "string"}}, "required": ["type", "module"]}}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"G": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "H": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "P": {"type": "object", "properties": {"type": {"type": "string"}, "item": {"type": "string"}, "nbt": {"type": "string"}}, "required": ["type", "item", "nbt"]}, "E": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["G", "H", "P", "E"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "conditions", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shaped", "conditions" : [{"type" : "apotheosis:module", "module" : "enchantment"}], "group" : "wooden_door", "pattern" : ["GHG", "PEP", "GHG"], "key" : {"G" : {"item" : "minecraft:emerald_block"}, "H" : {"tag" : "forge:ingots/netherite"}, "P" : {"type" : "forge:nbt", "item" : "minecraft:potion", "nbt" : "{\"Potion\": \"minecraft:long_night_vision\"}"}, "E" : {"item" : "apotheosis:sightshelf"}}, "result" : {"item" : "apotheosis:sightshelf_t2", "count" : 1}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "module": {"type": "string"}}, "required": ["type", "module"]}}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"G": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "H": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "P": {"type": "object", "properties": {"type": {"type": "string"}, "item": {"type": "string"}, "nbt": {"type": "string"}}, "required": ["type", "item", "nbt"]}, "E": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["G", "H", "P", "E"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "conditions", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"inst_name": {"type": "string"}, "time_searched": {"type": "number"}, "average_primal": {"type": "string"}, "average_nb_iters": {"type": "string"}, "primal_list": {"type": "array", "items": {"type": "integer"}}}, "required": ["inst_name", "time_searched", "average_primal", "average_nb_iters", "primal_list"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inst_name" : "/home/decrypt/dogs/dogs-pfsp/insts/Taillard/tai100_20_9.txt", "time_searched" : 90.0, "average_primal" : "6465.100000", "average_nb_iters" : "142209.900000", "primal_list" : [6467, 6467, 6466, 6464, 6472, 6474, 6445, 6472, 6449, 6475]} | json_instruct | {"type": "object", "properties": {"inst_name": {"type": "string"}, "time_searched": {"type": "number"}, "average_primal": {"type": "string"}, "average_nb_iters": {"type": "string"}, "primal_list": {"type": "array", "items": {"type": "integer"}}}, "required": ["inst_name", "time_searched", "average_primal", "average_nb_iters", "primal_list"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"verbose": {"type": "boolean"}, "rootDir": {"type": "string"}, "roots": {"type": "array", "items": {"type": "string"}}, "setupFiles": {"type": "array", "items": {"type": "string"}}, "testEnvironment": {"type": "string"}}, "required": ["verbose", "rootDir", "roots", "setupFiles", "testEnvironment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"verbose" : false, "rootDir" : "..", "roots" : ["<rootDir>/server", "<rootDir>/shared"], "setupFiles" : ["<rootDir>/__mocks__/console.js", "./server/test/setup.js"], "testEnvironment" : "node"} | json_instruct | {"type": "object", "properties": {"verbose": {"type": "boolean"}, "rootDir": {"type": "string"}, "roots": {"type": "array", "items": {"type": "string"}}, "setupFiles": {"type": "array", "items": {"type": "string"}}, "testEnvironment": {"type": "string"}}, "required": ["verbose", "rootDir", "roots", "setupFiles", "testEnvironment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "252e20c281ad0e93f957", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"69367\"": {"type": "string"}, "\"69324\"": {"type": "string"}, "\"69255\"": {"type": "string"}, "\"69232\"": {"type": "string"}, "\"69191\"": {"type": "string"}, "\"69155\"": {"type": "string"}, "\"69153\"": {"type": "string"}, "\"69126\"": {"type": "string"}, "\"69119\"": {"type": "string"}, "\"69091\"": {"type": "string"}, "\"69038\"": {"type": "string"}, "\"68946\"": {"type": "string"}, "\"68919\"": {"type": "string"}, "\"68916\"": {"type": "string"}, "\"68915\"": {"type": "string"}, "\"68914\"": {"type": "string"}, "\"68913\"": {"type": "string"}}, "required": ["\"69367\"", "\"69324\"", "\"69255\"", "\"69232\"", "\"69191\"", "\"69155\"", "\"69153\"", "\"69126\"", "\"69119\"", "\"69091\"", "\"69038\"", "\"68946\"", "\"68919\"", "\"68916\"", "\"68915\"", "\"68914\"", "\"68913\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"69367\"" : "Becsehely", "\"69324\"" : "Cserszegtomaj", "\"69255\"" : "Gyenesdias", "\"69232\"" : "Heviz", "\"69191\"" : "Keszthely", "\"69155\"" : "Lenti", "\"69153\"" : "Letenye", "\"69126\"" : "Murakeresztur", "\"69119\"" : "Nagykanizsa", "\"69091\"" : "Pacsa", "\"69038\"" : "Sarmellek", "\"68946\"" : "Turje", "\"68919\"" : "Vonyarcvashegy", "\"68916\"" : "Zalaegerszeg", "\"68915\"" : "Zalakomar", "\"68914\"" : "Zalalovo", "\"68913\"" : "Zalaszentgrot"}, "hits" : "2870"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"69367\"": {"type": "string"}, "\"69324\"": {"type": "string"}, "\"69255\"": {"type": "string"}, "\"69232\"": {"type": "string"}, "\"69191\"": {"type": "string"}, "\"69155\"": {"type": "string"}, "\"69153\"": {"type": "string"}, "\"69126\"": {"type": "string"}, "\"69119\"": {"type": "string"}, "\"69091\"": {"type": "string"}, "\"69038\"": {"type": "string"}, "\"68946\"": {"type": "string"}, "\"68919\"": {"type": "string"}, "\"68916\"": {"type": "string"}, "\"68915\"": {"type": "string"}, "\"68914\"": {"type": "string"}, "\"68913\"": {"type": "string"}}, "required": ["\"69367\"", "\"69324\"", "\"69255\"", "\"69232\"", "\"69191\"", "\"69155\"", "\"69153\"", "\"69126\"", "\"69119\"", "\"69091\"", "\"69038\"", "\"68946\"", "\"68919\"", "\"68916\"", "\"68915\"", "\"68914\"", "\"68913\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1990, 6], [1991, 7], [1992, 8], [1993, 7], [1994, 6], [1995, 7], [1996, 9], [1997, 7], [1998, 12], [1999, 7], [2000, 5], [2001, 5], [2002, 12], [2004, 6], [2005, 9], [2006, 7], [2007, 8], [2008, 7], [2009, 5], [2010, 5], [2012, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"CIDADE" : "Rio Piracicaba", "IBGE" : "3155702", "ESTADO" : "Minas Gerais", "ID" : "31"} | json_instruct | {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "achievementgroup": {"type": "string"}, "ishidden": {"type": "boolean"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "ishidden", "sortorder", "stages", "stage1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "\"S\u00e1ch C\u1ee7a Taliesin\"", "achievementgroup" : "Th\u1ebf gi\u1edbi mu\u00f4n m\u00e0u", "ishidden" : true, "sortorder" : 1207, "stages" : 1, "stage1" : {"title" : "\"S\u00e1ch C\u1ee7a Taliesin\"", "description" : "Nh\u1eadn \u0111\u01b0\u1ee3c qu\u00e0 t\u1eb7ng t\u1eeb Taliesin.", "progress" : 1, "reward" : {"name" : "Nguy\u00ean Th\u1ea1ch", "count" : 5}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "achievementgroup": {"type": "string"}, "ishidden": {"type": "boolean"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "ishidden", "sortorder", "stages", "stage1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Danez Smith", "classification" : "Free Verse", "keywords" : ["Love", "Desire", "Romantic Love"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/250152", "region" : "", "text" : ["I did not come here to sing a blues.", "Lately, I open my mouth", "& out comes marigolds, yellow plums.", "I came to make the sky a garden.", "Give me rain or give me honey, dear lord.", "The sky has given us no water this year.", "I ride my bike to a boy, when I get there", "what we make will not be beautiful", "or love at all, but it will be deserved.", "I\u2019ve started seeking men to wet the harvest.", "Come, tonight I declare we must move", "instead of pray. Tonight, east of here,", "two boys, one dressed in what could be blood", "& one dressed in what could be blood", "before the wound, meet & mean mug", "& God, tonight, let them dance! Tonight,", "the bullet does not exist. Tonight, the police", "have turned to their God for forgiveness.", "Tonight, we bury nothing, we serve a God", "with no need for shovels, we serve a God", "with a bad hip & a brother in prison.", "Tonight, let every man be his own lord.", "Let wherever two people stand be a reunion", "of ancient lights. Let\u2019s waste the moon\u2019s marble glow", "shouting our names to the stars until we are", "the stars. O, precious God! O, sweet black town!", "I am drunk & I thirst. When I get to the boy", "who lets me practice hunger with him", "I will not give him the name of your newest ghost", "I will give him my body & what he does with it", "is none of my business, but I will say", "& he will say", "& tonight, when we dream, we dream of dancing", "in a city slowly becoming ash."], "title" : "Tonight, in Oakland", "year" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Prinias (Patela)", "id" : "589981", "bbox" : [25.000922, 35.168633, 25.000922, 35.168633], "description" : "An Iron Age settlement on the Patela plateau north of the modern village of Prinias; its ancient name is uncertain. The site is notable for its occupation from the end of the Bronze Age through to the Archaic period, as well as for the monumental architecture and Orientalizing sculpture of its Buildings ('Temples') A and B. ", "connectsWith" : ["589748"], "names" : ["Patela", "Prinias", "Rhizenia"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [25.000922, 35.168633]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [25.000922, 35.168633]}, "id" : "darmc-location-14147", "type" : "Feature", "properties" : {"description" : "500K scale point location", "location_precision" : "precise", "title" : "DARMC location 14147", "link" : "http://pleiades.stoa.org/places/589981/darmc-location-14147"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"tof_type": {"type": "string"}, "rate": {"type": "number"}, "tof": {"type": "number"}, "potential": {"type": "number"}, "current": {"type": "number"}, "e_id": {"type": "integer"}, "tspan": {"type": "array", "items": {"type": "integer"}}, "r_id": {"type": "null"}, "rate_calc_kwargs": {"type": "object", "properties": {}, "required": []}, "description": {"type": "null"}, "t_id": {"type": "integer"}, "amount": {"type": "null"}, "sample_name": {"type": "null"}}, "required": ["tof_type", "rate", "tof", "potential", "current", "e_id", "tspan", "r_id", "rate_calc_kwargs", "description", "t_id", "amount", "sample_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tof_type" : "activity", "rate" : 1.628344174937911e-13, "tof" : 1.1652584228363029e-05, "potential" : 1.319475288244898, "current" : -2.6862261201259763e-07, "e_id" : 56, "tspan" : [2775, 2825], "r_id" : null, "rate_calc_kwargs" : {}, "description" : null, "t_id" : 411, "amount" : null, "sample_name" : null} | json_instruct | {"type": "object", "properties": {"tof_type": {"type": "string"}, "rate": {"type": "number"}, "tof": {"type": "number"}, "potential": {"type": "number"}, "current": {"type": "number"}, "e_id": {"type": "integer"}, "tspan": {"type": "array", "items": {"type": "integer"}}, "r_id": {"type": "null"}, "rate_calc_kwargs": {"type": "object", "properties": {}, "required": []}, "description": {"type": "null"}, "t_id": {"type": "integer"}, "amount": {"type": "null"}, "sample_name": {"type": "null"}}, "required": ["tof_type", "rate", "tof", "potential", "current", "e_id", "tspan", "r_id", "rate_calc_kwargs", "description", "t_id", "amount", "sample_name"], "$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": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"abort-controller": {"type": "string"}, "global-agent": {"type": "string"}, "node-fetch": {"type": "string"}, "saucelabs": {"type": "string"}, "axe-core": {"type": "string"}}, "required": ["abort-controller", "global-agent", "node-fetch", "saucelabs", "axe-core"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jsonfile": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["jsonfile", "mkdirp"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "workspaces", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "saucelabs-npm-webdriverio", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "node index.mjs"}, "repository" : {"type" : "git", "url" : "git+https://github.com/carlosmarte/saucelabs-npm-webdriverio.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/carlosmarte/saucelabs-npm-webdriverio/issues"}, "homepage" : "https://github.com/carlosmarte/saucelabs-npm-webdriverio#readme", "devDependencies" : {"abort-controller" : "^3.0.0", "global-agent" : "^3.0.0", "node-fetch" : "^3.2.0", "saucelabs" : "^7.1.3", "axe-core" : "^4.4.1"}, "workspaces" : ["packages/axe-report", "packages/puppeteer-report"], "dependencies" : {"jsonfile" : "^6.1.0", "mkdirp" : "^1.0.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"abort-controller": {"type": "string"}, "global-agent": {"type": "string"}, "node-fetch": {"type": "string"}, "saucelabs": {"type": "string"}, "axe-core": {"type": "string"}}, "required": ["abort-controller", "global-agent", "node-fetch", "saucelabs", "axe-core"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jsonfile": {"type": "string"}, "mkdirp": {"type": "string"}}, "required": ["jsonfile", "mkdirp"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "workspaces", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"modules/fade-and-scale.css": {"type": "string"}, "modules/fade-and-scale.min.css": {"type": "string"}, "modules/fade-and-slide.css": {"type": "string"}, "modules/fade-and-slide.min.css": {"type": "string"}, "modules/fade.css": {"type": "string"}, "modules/fade.min.css": {"type": "string"}, "modules/flip.css": {"type": "string"}, "modules/flip.min.css": {"type": "string"}, "modules/slide.css": {"type": "string"}, "modules/slide.min.css": {"type": "string"}, "angular-motion.css": {"type": "string"}, "angular-motion.min.css": {"type": "string"}}, "required": ["modules/fade-and-scale.css", "modules/fade-and-scale.min.css", "modules/fade-and-slide.css", "modules/fade-and-slide.min.css", "modules/fade.css", "modules/fade.min.css", "modules/flip.css", "modules/flip.min.css", "modules/slide.css", "modules/slide.min.css", "angular-motion.css", "angular-motion.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"modules/fade-and-scale.css" : "sha256-/nJeeyfMOTLf2KPXncC8j7aDJo53kijPSvrKqTvCWpM=", "modules/fade-and-scale.min.css" : "sha256-VlXpo1FLLgXekf9YZ5smTKuaAJiWbE4sevBLVVjwrWc=", "modules/fade-and-slide.css" : "sha256-azUoZxzVH0JZwrv9dFqACu5WtJLoKtRoS8MM9y/wqzQ=", "modules/fade-and-slide.min.css" : "sha256-Gm/i/MUO2Co/McQ66smH9yQK3BEiU+gD/iXeaV2HCyQ=", "modules/fade.css" : "sha256-mekBBse0dCdp4d7dclAUQmTGY94TVTte06MkIzI98PE=", "modules/fade.min.css" : "sha256-CJb4g9QsDZFkEqoEOpWY8RbzQQjioC9sZOadV8ncuG4=", "modules/flip.css" : "sha256-TsdK/Wi57higaIQ7WNPkVuOubwnt4u5t8BjviZ+JltE=", "modules/flip.min.css" : "sha256-QcpT24UX3VFKqzHccQfKZnIPqecTiofHF0z8E8KbT0Q=", "modules/slide.css" : "sha256-U4eRF1vxoK0nfQgyh7I6fYgRlxwOw1WlMzpYkndJMso=", "modules/slide.min.css" : "sha256-+CTyL2yukqyNqOQlOWSd6IZs9VflfGoFafmgU0YRjp0=", "angular-motion.css" : "sha256-Y7ysUmoo4hr8RTlvZ0Ryg3Jm5/ElbWqjsPvjA0K3m1A=", "angular-motion.min.css" : "sha256-G7mAwg6G42EdHPtPUtTY/N+TTlIMbC49mW08gvDjL8k="} | json_instruct | {"type": "object", "properties": {"modules/fade-and-scale.css": {"type": "string"}, "modules/fade-and-scale.min.css": {"type": "string"}, "modules/fade-and-slide.css": {"type": "string"}, "modules/fade-and-slide.min.css": {"type": "string"}, "modules/fade.css": {"type": "string"}, "modules/fade.min.css": {"type": "string"}, "modules/flip.css": {"type": "string"}, "modules/flip.min.css": {"type": "string"}, "modules/slide.css": {"type": "string"}, "modules/slide.min.css": {"type": "string"}, "angular-motion.css": {"type": "string"}, "angular-motion.min.css": {"type": "string"}}, "required": ["modules/fade-and-scale.css", "modules/fade-and-scale.min.css", "modules/fade-and-slide.css", "modules/fade-and-slide.min.css", "modules/fade.css", "modules/fade.min.css", "modules/flip.css", "modules/flip.min.css", "modules/slide.css", "modules/slide.min.css", "angular-motion.css", "angular-motion.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : [[[130.75, 42.083333333333336], [130.75, 42.166666666666664], [130.875, 42.166666666666664], [130.875, 42.083333333333336], [130.75, 42.083333333333336]]]}, "properties" : {"code" : 633016, "url" : "http://madefor.github.io/0410/api/v1/633016.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/633016.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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x191217777cb44c000700fbf76696a098f74c566c", "tool" : "mythril", "start" : 1563554087.0706663, "end" : 1563554095.697898, "duration" : 8.62723159790039, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 43, "line_cd" : 11903, "line_name" : "JR\u9e7f\u5150\u5cf6\u672c\u7dda(\u535a\u591a\uff5e\u516b\u4ee3)", "station_cd" : 1190331, "station_g_cd" : 1190331, "station_name" : "\u9577\u6d32", "lon" : 130.455652, "lat" : 32.935205}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"logging_in": {"type": "string"}, "logged_in_as": {"type": "string"}, "loading_ext": {"type": "string"}, "loading_ext_failed": {"type": "string"}, "err_uncaught": {"type": "string"}, "err_exec": {"type": "string"}, "err_disabled": {"type": "string"}, "err_missing_perm": {"type": "string"}, "err_pm": {"type": "string"}, "err_pm_only": {"type": "string"}, "err_cd": {"type": "string"}, "err_nsfw": {"type": "string"}}, "required": ["logging_in", "logged_in_as", "loading_ext", "loading_ext_failed", "err_uncaught", "err_exec", "err_disabled", "err_missing_perm", "err_pm", "err_pm_only", "err_cd", "err_nsfw"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"logging_in" : "Logging in with token {0}...", "logged_in_as" : "Logged in as {0}.", "loading_ext" : "Loading extension {0}", "loading_ext_failed" : "Extension already loaded. This could be due to a disconnection.", "err_uncaught" : "An uncaught error has occurred. This error has been displayed in the console.", "err_exec" : "An error occurred while executing this command. Error: `{0}`", "err_disabled" : "This command has been temporarily disabled.", "err_missing_perm" : "An error occurred while checking permissions. Ensure that the bot has all the necessary permissions.", "err_pm" : "This command cannot be used in DM.", "err_pm_only" : "This command cannot be used in a server.", "err_cd" : "This command cannot be used yet. Try again in {0:.0f} seconds.", "err_nsfw" : "This command requires a NSFW channel."} | json_instruct | {"type": "object", "properties": {"logging_in": {"type": "string"}, "logged_in_as": {"type": "string"}, "loading_ext": {"type": "string"}, "loading_ext_failed": {"type": "string"}, "err_uncaught": {"type": "string"}, "err_exec": {"type": "string"}, "err_disabled": {"type": "string"}, "err_missing_perm": {"type": "string"}, "err_pm": {"type": "string"}, "err_pm_only": {"type": "string"}, "err_cd": {"type": "string"}, "err_nsfw": {"type": "string"}}, "required": ["logging_in", "logged_in_as", "loading_ext", "loading_ext_failed", "err_uncaught", "err_exec", "err_disabled", "err_missing_perm", "err_pm", "err_pm_only", "err_cd", "err_nsfw"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xc049e9ca2980b586ccfca7f4f2d87ea62f4a73ed", "tool" : "solhint", "start" : 1563282924.834477, "end" : 1563282932.1359656, "duration" : 7.301488637924194, "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": {"Title": {"type": "string"}, "FullTitle": {"type": "string"}, "Slug": {"type": "string"}, "Type": {"type": "string"}, "Year": {"type": "integer"}, "ImageUrl": {"type": "string"}, "ExternalIds": {"type": "object", "properties": {"Tmdb": {"type": "string"}, "Imdb": {"type": "string"}, "Tvdb": {"type": "null"}}, "required": ["Tmdb", "Imdb", "Tvdb"]}, "Plot": {"type": "string"}, "Tagline": {"type": "string"}, "Directors": {"type": "string"}, "Writers": {"type": "string"}, "Stars": {"type": "string"}, "Genres": {"type": "string"}, "RuntimeMinutes": {"type": "integer"}, "Runtime": {"type": "string"}, "ContentRating": {"type": "string"}}, "required": ["Title", "FullTitle", "Slug", "Type", "Year", "ImageUrl", "ExternalIds", "Plot", "Tagline", "Directors", "Writers", "Stars", "Genres", "RuntimeMinutes", "Runtime", "ContentRating"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Title" : "Snatched", "FullTitle" : "Snatched (2017)", "Slug" : "snatched-2017", "Type" : "Movie", "Year" : 2017, "ImageUrl" : "Movie/snatched-2017/cover.jpg", "ExternalIds" : {"Tmdb" : "373569", "Imdb" : "tt2334871", "Tvdb" : null}, "Plot" : "Freshly dumped by her musician boyfriend and fired from her job, all on the same day, suddenly, the rudderless thirtysomething, Emily Middleton, finds herself with two non-refundable tickets to Ecuador. Finding hard to swallow that she is about to lose the trip of a lifetime, Emily turns to the only person left to come with her: her idiosyncratic, phobic, and cat-loving mother, Linda. But, there, the dream holiday soon turns into an Equatorial nightmare when the mother-and-daughter duo ends up conned and abducted in broad daylight. Now, to stay alive, scaredy-cat Linda and impulsive Emily will need to set aside their differences, and like a fish out of water, navigate through dense jungle thickets. But, can they make it happen?", "Tagline" : "Mess with me, mess with my mother.", "Directors" : "Jonathan Levine", "Writers" : "Katie Dippold", "Stars" : "Amy Schumer, Goldie Hawn, Kim Caramele, Raven Goodwin", "Genres" : "Action, Adventure, Comedy", "RuntimeMinutes" : 90, "Runtime" : "1h 30mins", "ContentRating" : "R"} | json_instruct | {"type": "object", "properties": {"Title": {"type": "string"}, "FullTitle": {"type": "string"}, "Slug": {"type": "string"}, "Type": {"type": "string"}, "Year": {"type": "integer"}, "ImageUrl": {"type": "string"}, "ExternalIds": {"type": "object", "properties": {"Tmdb": {"type": "string"}, "Imdb": {"type": "string"}, "Tvdb": {"type": "null"}}, "required": ["Tmdb", "Imdb", "Tvdb"]}, "Plot": {"type": "string"}, "Tagline": {"type": "string"}, "Directors": {"type": "string"}, "Writers": {"type": "string"}, "Stars": {"type": "string"}, "Genres": {"type": "string"}, "RuntimeMinutes": {"type": "integer"}, "Runtime": {"type": "string"}, "ContentRating": {"type": "string"}}, "required": ["Title", "FullTitle", "Slug", "Type", "Year", "ImageUrl", "ExternalIds", "Plot", "Tagline", "Directors", "Writers", "Stars", "Genres", "RuntimeMinutes", "Runtime", "ContentRating"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"SerialEscalation": {"type": "array", "items": {"type": "string"}}}, "required": ["SerialEscalation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SerialEscalation" : ["UpToEleven", "BeyondTheImpossible", "SequelEscalation", "Troperiffic", "ExaggeratedTrope", "LogicalExtreme", "LensmanArmsRace", "SortingAlgorithmOfEvil", "PowerCreep", "MidSeasonUpgrade", "NextTierPowerUp", "FanWorks", "RandomEventsPlot", "RandomEventsPlot", "BringMyBrownPants"]} | json_instruct | {"type": "object", "properties": {"SerialEscalation": {"type": "array", "items": {"type": "string"}}}, "required": ["SerialEscalation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "value": {"type": "string"}, "op": {"type": "string"}}, "required": ["path", "value", "op"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"path" : "/state", "value" : "disabled", "op" : "replace"}, {"path" : "/transport", "value" : "TCP", "op" : "replace"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "value": {"type": "string"}, "op": {"type": "string"}}, "required": ["path", "value", "op"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"awesome-typescript-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "source-map-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-react": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["awesome-typescript-loader", "html-webpack-plugin", "source-map-loader", "tslint", "tslint-react", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-analytics-tracker", "version" : "1.0.0", "description" : "Experiment with react HOCs for tracking events for analytics endpoints", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "webpack-dev-server --mode development --open --hot"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rickyrattlesnake/react-analytics-tracker.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/rickyrattlesnake/react-analytics-tracker/issues"}, "homepage" : "https://github.com/rickyrattlesnake/react-analytics-tracker#readme", "dependencies" : {"@types/react" : "^16.7.22", "@types/react-dom" : "^16.0.11", "react" : "^16.7.0", "react-dom" : "^16.7.0"}, "devDependencies" : {"awesome-typescript-loader" : "^5.2.1", "html-webpack-plugin" : "^3.2.0", "source-map-loader" : "^0.2.4", "tslint" : "^5.12.1", "tslint-react" : "^3.6.0", "typescript" : "^3.2.4", "webpack" : "^4.29.0", "webpack-cli" : "^3.2.1", "webpack-dev-server" : "^3.1.14"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"awesome-typescript-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "source-map-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-react": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["awesome-typescript-loader", "html-webpack-plugin", "source-map-loader", "tslint", "tslint-react", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Fairfield University", "alt_name" : null, "country" : "United States", "state" : "Connecticut", "address" : {"street" : "1073 North Benson Road", "city" : "Fairfield", "province" : "Connecticut", "postal_code" : "06824-5195"}, "contact" : {"telephone" : "+1(203) 254-4000", "website" : "http://www.fairfield.edu", "email" : "[email protected]", "fax" : "+1(203) 254-4199"}, "funding" : "Private", "languages" : null, "academic_year" : "September to May. Also Summer Session (May-August)", "accrediting_agency" : "New England Association of Schools and Colleges. Professional Accreditation"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"mean": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "median": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "median_abs_dev": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "slope": {"type": "null"}, "std_dev": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}}, "required": ["mean", "median", "median_abs_dev", "slope", "std_dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mean" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : 111076457.2375, "upper_bound" : 116268798.31625}, "point_estimate" : 113481982.47, "standard_error" : 1327849.1388116933}, "median" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : 108902046.0, "upper_bound" : 112440454.0}, "point_estimate" : 110333247.5, "standard_error" : 924859.1807261879}, "median_abs_dev" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : 5262335.898774862, "upper_bound" : 8540783.275070786}, "point_estimate" : 6876417.285919189, "standard_error" : 836981.5641529752}, "slope" : null, "std_dev" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : 8469809.434568632, "upper_bound" : 17912316.141677134}, "point_estimate" : 13295250.775470367, "standard_error" : 2459718.132070517}} | json_instruct | {"type": "object", "properties": {"mean": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "median": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "median_abs_dev": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "slope": {"type": "null"}, "std_dev": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}}, "required": ["mean", "median", "median_abs_dev", "slope", "std_dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1989, 5], [1992, 5], [1993, 7], [1994, 15], [1995, 8], [1996, 7], [1997, 14], [1998, 16], [1999, 27], [2000, 19], [2001, 19], [2002, 31], [2003, 24], [2004, 22], [2005, 22], [2006, 30], [2007, 32], [2008, 36], [2009, 37], [2010, 34], [2011, 30], [2012, 41], [2013, 32], [2014, 47]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "result": {"type": "object", "properties": {"rating": {"type": "number"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"author_name": {"type": "string"}, "author_url": {"type": "string"}, "language": {"type": "string"}, "profile_photo_url": {"type": "string"}, "rating": {"type": "integer"}, "relative_time_description": {"type": "string"}, "text": {"type": "string"}, "time": {"type": "integer"}}, "required": ["author_name", "author_url", "language", "profile_photo_url", "rating", "relative_time_description", "text", "time"]}}}, "required": ["rating", "reviews"]}, "status": {"type": "string"}}, "required": ["html_attributions", "result", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"html_attributions" : [], "result" : {"rating" : 4.5, "reviews" : [{"author_name" : "Rebecca M", "author_url" : "https://www.google.com/maps/contrib/112448747715036023789/reviews", "language" : "en", "profile_photo_url" : "https://lh4.ggpht.com/-PZ29dxhY0fs/AAAAAAAAAAI/AAAAAAAAAAA/RMV-Tgz-yEY/s128-c0x00000000-cc-rp-mo-ba6/photo.jpg", "rating" : 5, "relative_time_description" : "11 months ago", "text" : "Pretty station. Convenient for getting into Newark and Nottingham", "time" : 1541954963}, {"author_name" : "Fabe's Railway Adventures", "author_url" : "https://www.google.com/maps/contrib/113315383188508449758/reviews", "language" : "en", "profile_photo_url" : "https://lh6.ggpht.com/-QSTTrnIEjHY/AAAAAAAAAAI/AAAAAAAAAAA/8uVuuB_7tnY/s128-c0x00000000-cc-rp-mo-ba5/photo.jpg", "rating" : 4, "relative_time_description" : "a year ago", "text" : "A station in the countryside between Newark and Nottingham with an infrequent Rail service (stopping approx every 2 hrs)", "time" : 1535297453}]}, "status" : "OK"} | json_instruct | {"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "result": {"type": "object", "properties": {"rating": {"type": "number"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"author_name": {"type": "string"}, "author_url": {"type": "string"}, "language": {"type": "string"}, "profile_photo_url": {"type": "string"}, "rating": {"type": "integer"}, "relative_time_description": {"type": "string"}, "text": {"type": "string"}, "time": {"type": "integer"}}, "required": ["author_name", "author_url", "language", "profile_photo_url", "rating", "relative_time_description", "text", "time"]}}}, "required": ["rating", "reviews"]}, "status": {"type": "string"}}, "required": ["html_attributions", "result", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "string"}}}, "required": ["errors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"errors" : ["Line: 1 Col: 59 Unexpected end tag (script)."]} | json_instruct | {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "string"}}}, "required": ["errors"], "$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" : [[[-80.737069, 35.507163], [-80.645902, 35.505913], [-80.646712, 35.501593], [-80.650838, 35.494744], [-80.653913, 35.486132], [-80.655654, 35.475651], [-80.652829, 35.465706], [-80.652552, 35.46117], [-80.65107, 35.457803], [-80.64682, 35.451136], [-80.64483, 35.449922], [-80.643827, 35.446096], [-80.639964, 35.444263], [-80.638363, 35.439117], [-80.650273, 35.438263], [-80.659169, 35.434556], [-80.66634, 35.429143], [-80.675473, 35.415817], [-80.679528, 35.412952], [-80.68069, 35.414043], [-80.68287, 35.413014], [-80.683487, 35.413972], [-80.682984, 35.41654], [-80.684802, 35.417483], [-80.688549, 35.421559], [-80.686592, 35.424807], [-80.687626, 35.42719], [-80.690817, 35.429049], [-80.697394, 35.437063], [-80.704407, 35.44292], [-80.708967, 35.450308], [-80.713736, 35.461987], [-80.711956, 35.465574], [-80.711914, 35.467335], [-80.712871, 35.475887], [-80.715367, 35.48112], [-80.718326, 35.483432], [-80.72251, 35.483466], [-80.725772, 35.488289], [-80.728268, 35.489689], [-80.728006, 35.492145], [-80.730159, 35.491273], [-80.731129, 35.493721], [-80.733248, 35.495296], [-80.733165, 35.498912], [-80.734903, 35.500827], [-80.735577, 35.503604], [-80.736857, 35.504537], [-80.737069, 35.507163]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 48609}}]} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["@myhr"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"gap_size": {"type": "number"}, "needle_radius": {"type": "number"}, "needle_voltage": {"type": "string"}, "liquid_name": {"type": "string"}, "liquid_alphamax": {"type": "number"}, "liquid_Ealpha": {"type": "number"}, "streamer_head_radius": {"type": "number"}, "streamer_U_grad": {"type": "integer"}, "streamer_d_merge": {"type": "number"}, "streamer_scale_tvl": {"type": "number"}, "rc_tau0": {"type": "array", "items": {"type": "number"}}, "rc_resistance": {"type": "string"}, "rc_capacitance": {"type": "string"}, "rc_breakdown": {"type": "array", "items": {"type": "integer"}}, "random_seed": {"type": "null"}, "save_specs_enabled": {"type": "object", "properties": {"streamer": {"type": "boolean"}, "stat": {"type": "boolean"}}, "required": ["streamer", "stat"]}}, "required": ["gap_size", "needle_radius", "needle_voltage", "liquid_name", "liquid_alphamax", "liquid_Ealpha", "streamer_head_radius", "streamer_U_grad", "streamer_d_merge", "streamer_scale_tvl", "rc_tau0", "rc_resistance", "rc_capacitance", "rc_breakdown", "random_seed", "save_specs_enabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gap_size" : 0.003, "needle_radius" : 6e-06, "needle_voltage" : "linspace(30e3, 120e3, 10)", "liquid_name" : "cyclohexane", "liquid_alphamax" : 130000000.0, "liquid_Ealpha" : 1900000000.0, "streamer_head_radius" : 6e-06, "streamer_U_grad" : 0, "streamer_d_merge" : 5e-05, "streamer_scale_tvl" : 0.1, "rc_tau0" : [1e-08, 0.0001], "rc_resistance" : "linear", "rc_capacitance" : "hyperbole", "rc_breakdown" : [0, 4000000.0, 8000000.0, 16000000.0, 64000000.0], "random_seed" : null, "save_specs_enabled" : {"streamer" : true, "stat" : false}} | json_instruct | {"type": "object", "properties": {"gap_size": {"type": "number"}, "needle_radius": {"type": "number"}, "needle_voltage": {"type": "string"}, "liquid_name": {"type": "string"}, "liquid_alphamax": {"type": "number"}, "liquid_Ealpha": {"type": "number"}, "streamer_head_radius": {"type": "number"}, "streamer_U_grad": {"type": "integer"}, "streamer_d_merge": {"type": "number"}, "streamer_scale_tvl": {"type": "number"}, "rc_tau0": {"type": "array", "items": {"type": "number"}}, "rc_resistance": {"type": "string"}, "rc_capacitance": {"type": "string"}, "rc_breakdown": {"type": "array", "items": {"type": "integer"}}, "random_seed": {"type": "null"}, "save_specs_enabled": {"type": "object", "properties": {"streamer": {"type": "boolean"}, "stat": {"type": "boolean"}}, "required": ["streamer", "stat"]}}, "required": ["gap_size", "needle_radius", "needle_voltage", "liquid_name", "liquid_alphamax", "liquid_Ealpha", "streamer_head_radius", "streamer_U_grad", "streamer_d_merge", "streamer_scale_tvl", "rc_tau0", "rc_resistance", "rc_capacitance", "rc_breakdown", "random_seed", "save_specs_enabled"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.