input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@patternfly/react-core": {"type": "string"}, "next": {"type": "string"}, "next-transpile-modules": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@patternfly/react-core", "next", "next-transpile-modules", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@zeit/next-css": {"type": "string"}, "file-loader": {"type": "string"}, "svg-url-loader": {"type": "string"}, "url-loader": {"type": "string"}}, "required": ["@zeit/next-css", "file-loader", "svg-url-loader", "url-loader"]}, "license": {"type": "string"}}, "required": ["name", "author", "version", "scripts", "dependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "with-patternfly", "author" : "Daniel Reinoso <[email protected]>", "version" : "1.0.0", "scripts" : {"dev" : "next", "build" : "next build", "start" : "next start"}, "dependencies" : {"@patternfly/react-core" : "^4.50.2", "next" : "latest", "next-transpile-modules" : "^4.1.0", "react" : "^16.13.1", "react-dom" : "^16.13.1"}, "devDependencies" : {"@zeit/next-css" : "^1.0.1", "file-loader" : "^6.1.0", "svg-url-loader" : "^6.0.0", "url-loader" : "^4.1.0"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@patternfly/react-core": {"type": "string"}, "next": {"type": "string"}, "next-transpile-modules": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@patternfly/react-core", "next", "next-transpile-modules", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"@zeit/next-css": {"type": "string"}, "file-loader": {"type": "string"}, "svg-url-loader": {"type": "string"}, "url-loader": {"type": "string"}}, "required": ["@zeit/next-css", "file-loader", "svg-url-loader", "url-loader"]}, "license": {"type": "string"}}, "required": ["name", "author", "version", "scripts", "dependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"chinese": {"type": "string"}, "chines": {"type": "string"}, "veggie": {"type": "string"}, "vegg": {"type": "string"}, "italian": {"type": "string"}, "italan": {"type": "string"}, "itlian": {"type": "string"}}, "required": ["chinese", "chines", "veggie", "vegg", "italian", "italan", "itlian"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"chinese" : "chinese", "chines" : "chinese", "veggie" : "vegetarian", "vegg" : "vegetarian", "italian" : "italian", "italan" : "italian", "itlian" : "italian"} | json_instruct | {"type": "object", "properties": {"chinese": {"type": "string"}, "chines": {"type": "string"}, "veggie": {"type": "string"}, "vegg": {"type": "string"}, "italian": {"type": "string"}, "italan": {"type": "string"}, "itlian": {"type": "string"}}, "required": ["chinese", "chines", "veggie", "vegg", "italian", "italan", "itlian"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "adorn:block/byg/holly_kitchen_sink"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"MinTranslationOffset": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "MaxTranslationOffset": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "MinScale": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "MaxScale": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["MinTranslationOffset", "MaxTranslationOffset", "MinScale", "MaxScale"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"MinTranslationOffset" : {"description" : "An unknown type (likely an Unreal Engine or plugin type)."}, "MaxTranslationOffset" : {"description" : "An unknown type (likely an Unreal Engine or plugin type)."}, "MinScale" : {"description" : "A floating point number.", "type" : "number"}, "MaxScale" : {"description" : "A floating point number.", "type" : "number"}}, "required" : ["MaxScale", "MaxTranslationOffset", "MinScale", "MinTranslationOffset"]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"MinTranslationOffset": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "MaxTranslationOffset": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "MinScale": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "MaxScale": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["MinTranslationOffset", "MaxTranslationOffset", "MinScale", "MaxScale"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"baseFontSize": {"type": "integer"}, "theme": {"type": "string"}, "translucency": {"type": "boolean"}, "cssTheme": {"type": "string"}, "enabledCssSnippets": {"type": "array", "items": {"type": "string"}}}, "required": ["baseFontSize", "theme", "translucency", "cssTheme", "enabledCssSnippets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseFontSize" : 19, "theme" : "obsidian", "translucency" : false, "cssTheme" : "Things", "enabledCssSnippets" : ["\u5f69\u8272\u6807\u9898", "\u9a6c\u514b\u7b14\u9ad8\u4eae", "\u5c0f\u6eda\u52a8\u6761", "collapsing-sidebar", "nicer-checkboxes", "outliner-for-the-outline-and-file-explorer", "\u6587\u4ef6\u6d4f\u89c8\u5668\u886c\u7ebf", "\u6298\u53e0\u4fa7\u8fb9\u680f", "\u8d85\u5927\u9884\u89c8"]} | json_instruct | {"type": "object", "properties": {"baseFontSize": {"type": "integer"}, "theme": {"type": "string"}, "translucency": {"type": "boolean"}, "cssTheme": {"type": "string"}, "enabledCssSnippets": {"type": "array", "items": {"type": "string"}}}, "required": ["baseFontSize", "theme", "translucency", "cssTheme", "enabledCssSnippets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "electronVersion": {"type": "string"}, "dependencies": {"type": "object", "properties": {"escape-html": {"type": "string"}, "ptyw.js": {"type": "string"}, "strip-ansi": {"type": "string"}}, "required": ["escape-html", "ptyw.js", "strip-ansi"]}, "devDependencies": {"type": "object", "properties": {"electron-packager": {"type": "string"}, "electron-prebuilt": {"type": "string"}, "electron-rebuild": {"type": "string"}, "jscs": {"type": "string"}, "jshint": {"type": "string"}, "polylint": {"type": "string"}}, "required": ["electron-packager", "electron-prebuilt", "electron-rebuild", "jscs", "jshint", "polylint"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}, "build:win32": {"type": "string"}, "build:linux": {"type": "string"}, "build:darwin": {"type": "string"}}, "required": ["postinstall", "start", "test", "build:win32", "build:linux", "build:darwin"]}, "private": {"type": "boolean"}}, "required": ["name", "productName", "version", "description", "main", "author", "license", "electronVersion", "dependencies", "devDependencies", "scripts", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cmd", "productName" : "cmd", "version" : "0.0.2", "description" : "A modern shell built on top of electron", "main" : "browser.js", "author" : "Iegor Azuaga <[email protected]>", "license" : "MIT", "electronVersion" : "1.3.1", "dependencies" : {"escape-html" : "^1.0.3", "ptyw.js" : "^0.3.7", "strip-ansi" : "^3.0.0"}, "devDependencies" : {"electron-packager" : "^5.2.0", "electron-prebuilt" : "1.3.1", "electron-rebuild" : "^1.1.3", "jscs" : "^2.8.0", "jshint" : "^2.9.1", "polylint" : "^2.9.0"}, "scripts" : {"postinstall" : "electron-rebuild", "start" : "electron . --dev --remote-debugging-port=9222", "test" : "jshint elements && jscs elements", "build:win32" : "node scripts/build.js --win32", "build:linux" : "node scripts/build.js --linux", "build:darwin" : "node scripts/build.js --darwin"}, "private" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "electronVersion": {"type": "string"}, "dependencies": {"type": "object", "properties": {"escape-html": {"type": "string"}, "ptyw.js": {"type": "string"}, "strip-ansi": {"type": "string"}}, "required": ["escape-html", "ptyw.js", "strip-ansi"]}, "devDependencies": {"type": "object", "properties": {"electron-packager": {"type": "string"}, "electron-prebuilt": {"type": "string"}, "electron-rebuild": {"type": "string"}, "jscs": {"type": "string"}, "jshint": {"type": "string"}, "polylint": {"type": "string"}}, "required": ["electron-packager", "electron-prebuilt", "electron-rebuild", "jscs", "jshint", "polylint"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}, "build:win32": {"type": "string"}, "build:linux": {"type": "string"}, "build:darwin": {"type": "string"}}, "required": ["postinstall", "start", "test", "build:win32", "build:linux", "build:darwin"]}, "private": {"type": "boolean"}}, "required": ["name", "productName", "version", "description", "main", "author", "license", "electronVersion", "dependencies", "devDependencies", "scripts", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "In #26450 we proposed to replace our GitHub Action for documentation testing with testing directly in ReadTheDocs. This PR ensures that warnings get translated to errors and our docs remain strictly tested.\r\n\r\nWe'll probably wait until the next time we add or rename tests to make the new RTD test required and remove the old GitHub Action test.", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/26580", "updated_at" : "2021-10-08 15:11:36", "created_at" : "2021-10-07 18:04:46", "closed_at" : "2021-10-08 07:27:18", "state" : "closed", "title" : "More strict ReadTheDocs tests", "number" : 26580, "milestone" : null, "labels" : ["documentation", "tests"], "id" : 1020317973, "html_url" : "https://github.com/spack/spack/pull/26580", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "long": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}}, "required": ["code", "long"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "2615876", "long" : {"default" : "Odense"}}, {"code" : "2618425", "long" : {"default" : "Copenhague"}}, {"code" : "2624652", "long" : {"default" : "\u00c5rhus"}}, {"code" : "2624886", "long" : {"default" : "Aalborg"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "long": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}}, "required": ["code", "long"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"punctuation_marks": {"type": "array", "items": {"type": "string"}}}, "required": ["punctuation_marks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"punctuation_marks" : ["!", ".", ":", "?", ";", "-", "\u2013", "\u2020", "\u2013", ",", "\"", "\u00b4", "`", "\u2019", "\u2026", "\u201e", "\u201c", "\u00bb", "\u00ab", "\u00ab", "\u00bb", "\u201a", "\u2018", "/", "\\", "[", "]", "(", ")", "{", "<", ">"]} | json_instruct | {"type": "object", "properties": {"punctuation_marks": {"type": "array", "items": {"type": "string"}}}, "required": ["punctuation_marks"], "$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" : 3403010006, "parent" : 3403010, "name" : "GIRIHARJO", "latitude" : null, "longitude" : null, "postal" : [55872], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "string"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount", "userCount", "popularity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slug" : "amp", "title" : "Amp", "parent_slug" : "flexa", "path" : "ethereum/flexa/amp", "repoCount" : 1, "userCount" : 1, "popularity" : 64} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "string"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount", "userCount", "popularity"], "$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"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "neo4jDesktop": {"type": "object", "properties": {"apiVersion": {"type": "string"}}, "required": ["apiVersion"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "release": {"type": "string"}}, "required": ["start", "build", "deploy", "release"]}, "files": {"type": "array", "items": {"type": "string"}}, "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"]}, "devDependencies": {"type": "object", "properties": {"np": {"type": "string"}}, "required": ["np"]}, "np": {"type": "object", "properties": {"yarn": {"type": "boolean"}, "contents": {"type": "string"}}, "required": ["yarn", "contents"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "description", "homepage", "main", "neo4jDesktop", "scripts", "files", "repository", "keywords", "author", "license", "bugs", "devDependencies", "np", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@neo4j-apps/awesome-graph-apps", "version" : "1.0.0", "description" : "Curated list of Graph-Apps that work with Neo4j Desktop.", "homepage" : "https://github.com/neo4j-apps/awesome-graph-apps", "main" : "dist/index.html", "neo4jDesktop" : {"apiVersion" : "^1.2.0"}, "scripts" : {"start" : "node index.js", "build" : "rm -rf dist && cp -r public dist", "deploy" : "git subtree push --prefix public origin gh-pages", "release" : "np patch"}, "files" : ["dist"], "repository" : {"type" : "git", "url" : "git+https://github.com/neo4j-apps/awesome-graph-apps.git"}, "keywords" : ["graph-app", "neo4j"], "author" : "Neo4j Labs", "license" : "ISC", "bugs" : {"url" : "https://github.com/neo4j-apps/awesome-graph-apps/issues"}, "devDependencies" : {"np" : "*"}, "np" : {"yarn" : false, "contents" : "dist"}, "publishConfig" : {"access" : "public"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "neo4jDesktop": {"type": "object", "properties": {"apiVersion": {"type": "string"}}, "required": ["apiVersion"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "release": {"type": "string"}}, "required": ["start", "build", "deploy", "release"]}, "files": {"type": "array", "items": {"type": "string"}}, "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"]}, "devDependencies": {"type": "object", "properties": {"np": {"type": "string"}}, "required": ["np"]}, "np": {"type": "object", "properties": {"yarn": {"type": "boolean"}, "contents": {"type": "string"}}, "required": ["yarn", "contents"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "description", "homepage", "main", "neo4jDesktop", "scripts", "files", "repository", "keywords", "author", "license", "bugs", "devDependencies", "np", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"template_react adapter settings": {"type": "string"}, "option1": {"type": "string"}, "option2": {"type": "string"}}, "required": ["template_react adapter settings", "option1", "option2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template_react adapter settings" : "template_react\u7684\u9002\u914d\u5668\u8bbe\u7f6e", "option1" : "\u9009\u98791", "option2" : "\u9009\u98792"} | json_instruct | {"type": "object", "properties": {"template_react adapter settings": {"type": "string"}, "option1": {"type": "string"}, "option2": {"type": "string"}}, "required": ["template_react adapter settings", "option1", "option2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "spdx_license_key": {"type": "string"}, "other_urls": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "spdx_license_key", "other_urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "eurosym", "short_name" : "Eurosym License", "name" : "Eurosym License", "category" : "Copyleft Limited", "owner" : "Henrik Theiling", "homepage_url" : "https://fedoraproject.org/wiki/Licensing:Eurosym?rd=Licensing/Eurosym", "spdx_license_key" : "Eurosym", "other_urls" : ["https://fedoraproject.org/wiki/Licensing/Eurosym"]} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "spdx_license_key": {"type": "string"}, "other_urls": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "spdx_license_key", "other_urls"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Racine", "state_name" : "Wisconsin", "state_abbrv" : "WI", "lat" : "42.7272", "long" : "-87.676"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"ext-mysqli": {"type": "string"}}, "required": ["ext-mysqli"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Skeleton\\Database\\": {"type": "string"}}, "required": ["Skeleton\\Database\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "type", "require", "license", "authors", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tigron/skeleton-database", "description" : "Tigron Skeleton Mysql database layer", "type" : "library", "require" : {"ext-mysqli" : "*"}, "license" : "MIT", "authors" : [{"name" : "Tigron BVBA", "email" : "[email protected]"}], "autoload" : {"psr-4" : {"Skeleton\\Database\\" : "lib/Skeleton/Database/"}}, "extra" : {"branch-alias" : {"dev-master" : "0.2.x-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"ext-mysqli": {"type": "string"}}, "required": ["ext-mysqli"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Skeleton\\Database\\": {"type": "string"}}, "required": ["Skeleton\\Database\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "type", "require", "license", "authors", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-12-20T10:59:35Z", "data" : [{"data_type" : "pm10", "value" : "20.87", "max" : "24.00", "min" : "18.00", "sd" : "1.27"}, {"data_type" : "pm2.5", "value" : "20.67", "max" : "23.00", "min" : "18.00", "sd" : "1.33"}, {"data_type" : "pm1", "value" : "14.82", "max" : "17.00", "min" : "12.00", "sd" : "1.31"}, {"data_type" : "pm10", "value" : "20.87", "max" : "25.00", "min" : "18.00", "sd" : "1.41", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "19.23", "max" : "24.00", "min" : "16.00", "sd" : "1.44", "sensor" : 2}, {"data_type" : "pm1", "value" : "14.73", "max" : "17.00", "min" : "13.00", "sd" : "1.07", "sensor" : 2}, {"data_type" : "pm10", "value" : "2714.00", "max" : "2898.00", "min" : "2448.00", "sd" : "12.53", "sensor" : 3}, {"data_type" : "pm2.5", "value" : "753.47", "max" : "803.00", "min" : "683.00", "sd" : "11.35", "sensor" : 3}, {"data_type" : "pm1", "value" : "119.63", "max" : "135.00", "min" : "93.00", "sd" : "6.07", "sensor" : 3}, {"data_type" : "pm10", "value" : "5.70", "max" : "12.00", "min" : "3.00", "sd" : "1.36", "sensor" : 4}, {"data_type" : "pm2.5", "value" : "1.07", "max" : "4.00", "min" : "0.00", "sd" : "1.10", "sensor" : 4}, {"data_type" : "pm1", "value" : "0.13", "max" : "1.00", "min" : "0.00", "sd" : "0.35", "sensor" : 4}, {"data_type" : "pm10", "value" : "1350.10", "max" : "2955.00", "min" : "0.00", "sd" : "1348.92", "sensor" : 5}, {"data_type" : "pm2.5", "value" : "733.73", "max" : "805.00", "min" : "694.00", "sd" : "29.81", "sensor" : 5}, {"data_type" : "pm1", "value" : "123.47", "max" : "148.00", "min" : "94.00", "sd" : "17.18", "sensor" : 5}, {"data_type" : "pm10", "value" : "5.07", "max" : "7.00", "min" : "3.00", "sd" : "1.33", "sensor" : 6}, {"data_type" : "pm2.5", "value" : "2.20", "max" : "4.00", "min" : "1.00", "sd" : "1.08", "sensor" : 6}, {"data_type" : "noise", "value" : "35.18", "max" : "49.22", "min" : "31.82", "sd" : "1.56"}, {"data_type" : "rain", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "precipitation", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "voltage", "value" : "4.25", "max" : "4.27", "min" : "4.23", "sd" : "0.10"}, {"data_type" : "batery", "value" : "4.23", "max" : "4.24", "min" : "4.22", "sd" : "0.06"}, {"data_type" : "panel", "value" : "4.27", "max" : "4.40", "min" : "0.15", "sd" : "0.70"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"database": {"type": "string"}, "pageType": {"type": "string"}, "projectRootPath": {"type": "string"}}, "required": ["database", "pageType", "projectRootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"database" : "mongodb", "pageType" : "tailwindcss", "projectRootPath" : "customPath/"} | json_instruct | {"type": "object", "properties": {"database": {"type": "string"}, "pageType": {"type": "string"}, "projectRootPath": {"type": "string"}}, "required": ["database", "pageType", "projectRootPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "build:deploy": {"type": "string"}}, "required": ["dev", "build", "deploy", "build:deploy"]}, "dependencies": {"type": "object", "properties": {"baseui": {"type": "string"}, "ghpages": {"type": "string"}, "parcel-bundler": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "styletron-engine-atomic": {"type": "string"}, "styletron-react": {"type": "string"}}, "required": ["baseui", "ghpages", "parcel-bundler", "react", "react-dom", "styletron-engine-atomic", "styletron-react"]}}, "required": ["name", "version", "main", "repository", "author", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "baseui-simple-ui", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/gebeto/baseui-simple-ui", "author" : "gebeto <[email protected]>", "license" : "MIT", "scripts" : {"dev" : "parcel index.html", "build" : "parcel build --public-url '.' index.html", "deploy" : "node deploy.js", "build:deploy" : "npm run build && npm run deploy"}, "dependencies" : {"baseui" : "^9.91.0", "ghpages" : "^0.0.10", "parcel-bundler" : "^1.12.4", "react" : "^16.13.1", "react-dom" : "^16.13.1", "styletron-engine-atomic" : "^1.4.6", "styletron-react" : "^5.2.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "build:deploy": {"type": "string"}}, "required": ["dev", "build", "deploy", "build:deploy"]}, "dependencies": {"type": "object", "properties": {"baseui": {"type": "string"}, "ghpages": {"type": "string"}, "parcel-bundler": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "styletron-engine-atomic": {"type": "string"}, "styletron-react": {"type": "string"}}, "required": ["baseui", "ghpages", "parcel-bundler", "react", "react-dom", "styletron-engine-atomic", "styletron-react"]}}, "required": ["name", "version", "main", "repository", "author", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "ENF006", "lang" : "de", "description" : null, "name" : "Einfuhr von G\u00fctern", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "bme280-sensor": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"i2c-bus": {"type": "string"}}, "required": ["i2c-bus"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "i2c-bus": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"bindings": {"type": "string"}, "nan": {"type": "string"}}, "required": ["bindings", "nan"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "nan": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["bindings", "bme280-sensor", "i2c-bus", "nan"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "signalk-raspberry-pi-bme280", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"bindings" : {"version" : "1.3.1", "resolved" : "https://registry.npmjs.org/bindings/-/bindings-1.3.1.tgz", "integrity" : "sha512-i47mqjF9UbjxJhxGf+pZ6kSxrnI3wBLlnGI2ArWJ4r0VrvDS7ZYXkprq/pLaBWYq4GM0r4zdHY+NNRqEMU7uew=="}, "bme280-sensor" : {"version" : "0.1.6", "resolved" : "https://registry.npmjs.org/bme280-sensor/-/bme280-sensor-0.1.6.tgz", "integrity" : "sha1-CmEKxm2ozmi8lxm55tH/GrFxJ1I=", "requires" : {"i2c-bus" : "^1.2.0"}}, "i2c-bus" : {"version" : "1.2.5", "resolved" : "https://registry.npmjs.org/i2c-bus/-/i2c-bus-1.2.5.tgz", "integrity" : "sha512-cwa0p/wg2bNx7IaCWT1aTK3Aptq3Ul2nTHHHwj8+ACfmPXsbWet5Werkzja80ZlC5sRkhIr/C0zKMmr5wJ8Z/w==", "requires" : {"bindings" : "~1.3.0", "nan" : "~2.8.0"}}, "nan" : {"version" : "2.8.0", "resolved" : "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", "integrity" : "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "bme280-sensor": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"i2c-bus": {"type": "string"}}, "required": ["i2c-bus"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "i2c-bus": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"bindings": {"type": "string"}, "nan": {"type": "string"}}, "required": ["bindings", "nan"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "nan": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["bindings", "bme280-sensor", "i2c-bus", "nan"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Zeta", "definitions" : ["The sixth letter of the Greek alphabet (\u0396, \u03b6), transliterated as \u2018z\u2019.", "The sixth star in a constellation."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"p" : "1f7c6088-20cb-48a1-9b1c-defb323feac2", "d" : 611}, {"p" : "db957eae-0ddf-442c-b9f5-c244ae113d14", "d" : 85}, {"p" : "742ba369-8a96-4671-86a1-969b2e118792", "d" : 84}, {"p" : "98c69e26-4bb2-43ab-92aa-829a75ba0e1e", "d" : 76}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : "0xc0c12755512b02dc425e5f401d490e3d4bbbfded", "tool" : "mythril", "start" : 1563577832.845931, "end" : 1563577836.9220548, "duration" : 4.0761237144470215, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"discrete_mig": {"type": "number"}, "elapsed_time": {"type": "number"}, "uuid": {"type": "string"}}, "required": ["discrete_mig", "elapsed_time", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"discrete_mig" : 0.0535426928088351, "elapsed_time" : 0.5964815616607666, "uuid" : "13fbf44a-aea3-404a-b283-81d0e9a752b1"} | json_instruct | {"type": "object", "properties": {"discrete_mig": {"type": "number"}, "elapsed_time": {"type": "number"}, "uuid": {"type": "string"}}, "required": ["discrete_mig", "elapsed_time", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-79.81, 39.74]}, "type" : "Feature", "id" : "15439", "properties" : {"other_cities" : "Lake Lynn", "city" : "Gans", "state" : "PA", "county" : "Monongalia County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$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"}, "directory": {"type": "string"}, "queue": {"type": "array", "items": {"type": "string"}}, "max_instances": {"type": "integer"}, "ofile": {"type": "string"}}, "required": ["name", "directory", "queue", "max_instances", "ofile"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "int_char_link", "directory" : "/home/chetan/Documents/Unikernel-Serverless/Kernels/pop_int_push_char/build", "queue" : ["int"], "max_instances" : 1, "ofile" : "int_char_link.output"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "directory": {"type": "string"}, "queue": {"type": "array", "items": {"type": "string"}}, "max_instances": {"type": "integer"}, "ofile": {"type": "string"}}, "required": ["name", "directory", "queue", "max_instances", "ofile"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [328.4804689884186] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"npmClient": {"type": "string"}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "ignoreChanges": {"type": "array", "items": {"type": "string"}}, "command": {"type": "object", "properties": {"publish": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["publish"]}}, "required": ["npmClient", "packages", "version", "ignoreChanges", "command"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"npmClient" : "npm", "packages" : ["packages/*", "shared/**"], "version" : "independent", "ignoreChanges" : ["**/__tests__/**", "**/*.md", "**/*.stories.{js,mdx}", "**/package-lock.json", ".npmignore"], "command" : {"publish" : {"message" : "chore(publish): update packages [ci skip]"}}} | json_instruct | {"type": "object", "properties": {"npmClient": {"type": "string"}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "ignoreChanges": {"type": "array", "items": {"type": "string"}}, "command": {"type": "object", "properties": {"publish": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["publish"]}}, "required": ["npmClient", "packages", "version", "ignoreChanges", "command"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["code-comb", "code-part", "liferay-ddmtool"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"icao": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["icao", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "EGTC0", "name" : {"en" : "Cranfield"}, "country" : "GB", "region" : "ENG", "identifiers" : {"icao" : "EGTC", "usaf" : "035573"}, "location" : {"latitude" : 52.0667, "longitude" : -0.6167, "elevation" : 111}, "timezone" : "Europe/London"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"icao": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["icao", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6104121004", "district_id" : "6104121", "name" : "AMAWANG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "barres", "capo"]}}}, "required": ["key", "suffix", "positions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "A#", "suffix" : "7sus2/D", "positions" : [{"frets" : "x56566", "fingers" : "012134", "barres" : "5", "capo" : "true"}, {"frets" : "a88a98", "fingers" : "311421", "barres" : "8", "capo" : "true"}, {"frets" : "abaabd", "fingers" : "121134", "barres" : "10", "capo" : "true"}, {"frets" : "ab8x98", "fingers" : "341021", "barres" : "8", "capo" : "true"}, {"frets" : "ab8xb8", "fingers" : "231041", "barres" : "8", "capo" : "true"}, {"frets" : "ab8ax8", "fingers" : "241301", "barres" : "8", "capo" : "true"}, {"frets" : "adaddx", "fingers" : "121340", "barres" : "10", "capo" : "true"}, {"frets" : "abadbx", "fingers" : "121430", "barres" : "10", "capo" : "true"}, {"frets" : "adadxd", "fingers" : "121304", "barres" : "10", "capo" : "true"}, {"frets" : "axadbd", "fingers" : "101324", "barres" : "10", "capo" : "true"}, {"frets" : "xhihii", "fingers" : "012134", "barres" : "17", "capo" : "true"}, {"frets" : "adadbx", "fingers" : "131420", "barres" : "10", "capo" : "true"}, {"frets" : "mkkmlk", "fingers" : "311421", "barres" : "20", "capo" : "true"}]} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "barres", "capo"]}}}, "required": ["key", "suffix", "positions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "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" : 82839, "info" : {"name" : "Nunnally in Wonderland dash icons (male version)", "description" : "The men of Nunnally in Wonderland!", "additionalInfo" : "Dash icons made by me for tumblr: http://roloko-karlstein.tumblr.com/\r\n\r\nupdate 1/24/2014 replaced code", "format" : "uso", "category" : "tumblr", "createdAt" : "2013-02-09T19:41:58.000Z", "updatedAt" : "2014-01-25T01:23:35.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 171039, "name" : "Aria_Minase"}}, "stats" : {"installs" : {"total" : 75, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "82839_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"tumblr.com\") {\r\n\r\n.new_post_label{ font-size: 0 !important }\r\n.new_post_label > I:before { content: none !important }\r\n#new_post{ background: url('http://i.imgur.com/JUAP8wG.jpg') center no-repeat white !important }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 3400217, "stations" : ["3400217"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/pom.xml": {"type": "integer"}}, "required": ["/pom.xml"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"project_name" : "amuniz/bitbucket-branch-source-plugin", "files" : {"/pom.xml" : 2}, "pull_request" : "https://github.com/amuniz/bitbucket-branch-source-plugin/pull/22", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 2}} | json_instruct | {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/pom.xml": {"type": "integer"}}, "required": ["/pom.xml"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`mi~`faterik~"], "e" : ["\ufff9`Faterik~ `han~ `noya~ `kapah~ `koya~ `posi~.\ufffa\ufffb\u90a3\u5e74\u8f15\u4eba\u5c07\u90a3\u96bb\u8c93\u7529\u51fa\u53bb\u3002"], "f" : "(\u6454\u8de4\u6642)\u7529\u51fa\u5708\u5916\u3002"}]}], "t" : "faterik"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "array", "items": {"type": "string"}}, "email": {"type": "string"}}, "required": ["name", "email"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"LiveScript": {"type": "string"}, "optimist": {"type": "string"}, "csv": {"type": "string"}, "mkdirp": {"type": "string"}, "moment": {"type": "string"}}, "required": ["LiveScript", "optimist", "csv", "mkdirp", "moment"]}, "optionalDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["author", "name", "description", "version", "repository", "scripts", "engines", "dependencies", "devDependencies", "optionalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"name" : ["Chia-liang Kao"], "email" : "[email protected]"}, "name" : "twhgis", "description" : "historical geographic information data for Taiwan", "version" : "0.0.1", "repository" : {"type" : "git", "url" : "git://github.com/g0v/twhgis.git"}, "scripts" : {"prepublish" : "./node_modules/.bin/lsc -cj package.ls"}, "engines" : {"node" : "*"}, "dependencies" : {}, "devDependencies" : {"LiveScript" : "1.1.x", "optimist" : "*", "csv" : "*", "mkdirp" : "*", "moment" : "*"}, "optionalDependencies" : {}} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "array", "items": {"type": "string"}}, "email": {"type": "string"}}, "required": ["name", "email"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"LiveScript": {"type": "string"}, "optimist": {"type": "string"}, "csv": {"type": "string"}, "mkdirp": {"type": "string"}, "moment": {"type": "string"}}, "required": ["LiveScript", "optimist", "csv", "mkdirp", "moment"]}, "optionalDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["author", "name", "description", "version", "repository", "scripts", "engines", "dependencies", "devDependencies", "optionalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u6c5f\u82cf\u7701", "city" : "\u5357\u4eac\u5e02", "area" : "\u9ad8\u6df3\u533a", "name" : "\u9ad8\u6df3\u901a\u8d24\u8def\u90ae\u653f\u652f\u5c40", "code" : "211300", "address" : "\u6c5f\u82cf\u7701\u5357\u4eac\u5e02\u9ad8\u6df3\u533a\u6df3\u6eaa\u9547\u901a\u8d24\u8def6\u53f7", "phone" : "025-68613006"}, {"province" : "\u6c5f\u82cf\u7701", "city" : "\u5357\u4eac\u5e02", "area" : "\u9ad8\u6df3\u533a", "name" : "\u9ad8\u6df3\u540d\u4ed5\u90ae\u653f\u652f\u5c40", "code" : "211300", "address" : "\u6c5f\u82cf\u7701\u5357\u4eac\u5e02\u9ad8\u6df3\u533a\u6df3\u6eaa\u9547\u5317\u5cad\u8def229\u53f7", "phone" : "025-68613050"}, {"province" : "\u6c5f\u82cf\u7701", "city" : "\u5357\u4eac\u5e02", "area" : "\u9ad8\u6df3\u533a", "name" : "\u9ad8\u6df3\u5317\u5cad\u8def\u90ae\u653f\u652f\u5c40", "code" : "211300", "address" : "\u6c5f\u82cf\u7701\u5357\u4eac\u5e02\u9ad8\u6df3\u533a\u6df3\u6eaa\u9547\u5317\u5cad\u8def88\u53f7", "phone" : "025-68613100"}, {"province" : "\u6c5f\u82cf\u7701", "city" : "\u5357\u4eac\u5e02", "area" : "\u9ad8\u6df3\u533a", "name" : "\u9ad8\u6df3\u5317\u6f2a\u8def\u90ae\u653f\u652f\u5c40", "code" : "211300", "address" : "\u6c5f\u82cf\u7701\u5357\u4eac\u5e02\u9ad8\u6df3\u533a\u6df3\u6eaa\u9547\u5317\u6f2a\u8def16\u53f7", "phone" : "025-68613101"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$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"}, "author": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "license": {"type": "string"}, "distribution_type": {"type": "string"}, "requires": {"type": "object", "properties": {"jQuery": {"type": "string"}}, "required": ["jQuery"]}, "provides": {"type": "object", "properties": {"jQuery.validate": {"type": "object", "properties": {"version": {"type": "string"}, "file": {"type": "string"}}, "required": ["version", "file"]}}, "required": ["jQuery.validate"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "meta-spec": {"type": "object", "properties": {"version": {"type": "number"}, "url": {"type": "string"}}, "required": ["version", "url"]}, "generated_by": {"type": "string"}}, "required": ["name", "version", "author", "abstract", "license", "distribution_type", "requires", "provides", "keywords", "meta-spec", "generated_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jQuery-Validation", "version" : "1.2.1", "author" : ["J\u00f6rn Zaefferer <[email protected]>"], "abstract" : "A jQuery based validation library", "license" : "mit, gpl", "distribution_type" : "enhancement", "requires" : {"jQuery" : "1.2.1"}, "provides" : {"jQuery.validate" : {"version" : "1.2.1", "file" : "jquery.validate.js"}}, "keywords" : ["validation", "validator", "forms"], "meta-spec" : {"version" : 1.3, "url" : "http://module-build.sourceforge.net/META-spec-v1.3.html"}, "generated_by" : "J\u00f6rn Zaefferer"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "license": {"type": "string"}, "distribution_type": {"type": "string"}, "requires": {"type": "object", "properties": {"jQuery": {"type": "string"}}, "required": ["jQuery"]}, "provides": {"type": "object", "properties": {"jQuery.validate": {"type": "object", "properties": {"version": {"type": "string"}, "file": {"type": "string"}}, "required": ["version", "file"]}}, "required": ["jQuery.validate"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "meta-spec": {"type": "object", "properties": {"version": {"type": "number"}, "url": {"type": "string"}}, "required": ["version", "url"]}, "generated_by": {"type": "string"}}, "required": ["name", "version", "author", "abstract", "license", "distribution_type", "requires", "provides", "keywords", "meta-spec", "generated_by"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"topCrop": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "score": {"type": "object", "properties": {"detail": {"type": "number"}, "saturation": {"type": "number"}, "skin": {"type": "number"}, "boost": {"type": "number"}, "total": {"type": "number"}}, "required": ["detail", "saturation", "skin", "boost", "total"]}}, "required": ["x", "y", "width", "height", "score"]}}, "required": ["topCrop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"topCrop" : {"x" : 0, "y" : 16, "width" : 175, "height" : 175, "score" : {"detail" : -1.1362613346946016, "saturation" : -5.497554135489093, "skin" : 15.815043663211533, "boost" : 267.802657087573, "total" : 0.8753259189826447}}} | json_instruct | {"type": "object", "properties": {"topCrop": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "score": {"type": "object", "properties": {"detail": {"type": "number"}, "saturation": {"type": "number"}, "skin": {"type": "number"}, "boost": {"type": "number"}, "total": {"type": "number"}}, "required": ["detail", "saturation", "skin", "boost", "total"]}}, "required": ["x", "y", "width", "height", "score"]}}, "required": ["topCrop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "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" : "Taminla, Buenavista, Guimaras, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.guimaras.buenavista.taminla", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "32", "province_reference" : "32", "province_name" : "Guimaras", "city_id" : "1441", "city_reference" : "573", "city_name" : "Buenavista", "barangay_id" : "6204", "barangay_reference" : "13859", "barangay_name" : "Taminla"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.647476, 10.73596], [122.649803, 10.73064], [122.650833, 10.72832], [122.652191, 10.72774], [122.652977, 10.72678], [122.653023, 10.72584], [122.654343, 10.72362], [122.654572, 10.72294], [122.65461, 10.72282], [122.655083, 10.72142], [122.653069, 10.71863], [122.647919, 10.71821], [122.644318, 10.71797], [122.641281, 10.71782], [122.636253, 10.72136], [122.635147, 10.7225], [122.634804, 10.72324], [122.633957, 10.72424], [122.633331, 10.72474], [122.633163, 10.72554], [122.633392, 10.72659], [122.633492, 10.72667], [122.633278, 10.72694], [122.633186, 10.72707], [122.632668, 10.72827], [122.63308, 10.72854], [122.633522, 10.72886], [122.633904, 10.7291], [122.634247, 10.72921], [122.634483, 10.72934], [122.634697, 10.72951], [122.634933, 10.72973], [122.635223, 10.72998], [122.635597, 10.73023], [122.636047, 10.7305], [122.636543, 10.7308], [122.637108, 10.73112], [122.637711, 10.7315], [122.638283, 10.73197], [122.63884, 10.73245], [122.639458, 10.73283], [122.639847, 10.73301], [122.640083, 10.73312], [122.640709, 10.73338], [122.641212, 10.73362], [122.641693, 10.73388], [122.64209, 10.73403], [122.642517, 10.73387], [122.642883, 10.73346], [122.643089, 10.73358], [122.643311, 10.73393], [122.643578, 10.73465], [122.643608, 10.73472], [122.643806, 10.73472], [122.64389, 10.73472], [122.644722, 10.73389], [122.645279, 10.73389], [122.646393, 10.735], [122.645729, 10.73566], [122.647476, 10.73596]]]]}} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "string"}, "wmo": {"type": "string"}, "icao": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["national", "wmo", "icao", "ghcn", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "71519", "name" : {"en" : "Bow Island Irrigation Agdm"}, "country" : "CA", "region" : "AB", "identifiers" : {"national" : "42723", "wmo" : "71519", "icao" : "CPXL", "ghcn" : "CA003030772", "usaf" : "715190"}, "location" : {"latitude" : 49.87, "longitude" : -111.37, "elevation" : 796}, "timezone" : "America/Edmonton"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "string"}, "wmo": {"type": "string"}, "icao": {"type": "string"}, "ghcn": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["national", "wmo", "icao", "ghcn", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 404424317, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "c79c8ae4a102c3c766ff5cc3303b82de", "wof:id" : 404424317, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.53694051876778, 49.56199250048225, 4.57373552258517, 49.60918975770299], "geometry" : {"coordinates" : [[[4.54118513435019, 49.56199250048225], [4.53694051876778, 49.57761424315949], [4.55024172890422, 49.58643345762405], [4.55160297111536, 49.59213259507785], [4.54622343239585, 49.60036244888412], [4.55950475557701, 49.60918975770299], [4.57183069911606, 49.60023153854621], [4.56820453772207, 49.58836900360544], [4.57373552258517, 49.57666651651723], [4.56160564538625, 49.56551566474973], [4.54118513435019, 49.56199250048225]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "notes": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "post_install": {"type": "array", "items": {"type": "string"}}, "persist": {"type": "array", "items": {"type": "string"}}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "notes", "url", "hash", "bin", "shortcuts", "post_install", "persist", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "1.4.2", "description" : "\u4e00\u4e2a\u57fa\u4e8e20-20-20\u89c4\u5219\u7684\u7528\u773c\u4f11\u606f\u63d0\u9192\u8f6f\u4ef6\uff08Windows\uff09\uff0c\u5e2e\u52a9\u4f60\u4fdd\u6301\u5065\u5eb7\u7684\u5de5\u4f5c\u72b6\u6001\uff0c\u8ffd\u8e2a\u6bcf\u5929\u7684\u7528\u773c\u6570\u636e\u3002", "homepage" : "https://github.com/Planshit/ProjectEye", "license" : "MIT", "notes" : "Runtime:.NET Framework 4.5+", "url" : "https://github.com/Planshit/ProjectEye/releases/download/1.4.2/ProjectEye.zip", "hash" : "c17ce1542086afc94e88dda260b2b2259188f828b1a6972758b56ea1c64462be", "bin" : "ProjectEye.exe", "shortcuts" : [["ProjectEye.exe", "ProjectEye"]], "post_install" : ["if (Test-Path $dir/ProjectEyeUp.exe) {", " Write-Host \":: delete update.exe\"", " Remove-Item \"$dir\\ProjectEyeUp.exe\" -Force -Recurse", "}"], "persist" : ["Data", "UI"], "checkver" : "github", "autoupdate" : {"url" : "https://github.com/Planshit/ProjectEye/releases/download/$version/ProjectEye.zip"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "notes": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "post_install": {"type": "array", "items": {"type": "string"}}, "persist": {"type": "array", "items": {"type": "string"}}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "notes", "url", "hash", "bin", "shortcuts", "post_install", "persist", "checkver", "autoupdate"], "$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"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "YOADcoin", "symbol" : "YOAD", "logoURI" : "https://raw.githubusercontent.com/yoadib/crypto/main/%D7%9E%D7%99%D7%96%D7%9D%20%D7%97%D7%93%D7%A9%20(1).jpg", "decimals" : 0, "address" : "AqMikDiApiwrHEwusrqaWZ1uBH182WUXsHwp4CS1UMaD", "chainId" : 101, "tags" : ["social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1209173641, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "2fc76c1e9c77a63380cb8fd5743247bf", "wof:id" : 1209173641, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [22.95, 47.7, 22.95, 47.7], "geometry" : {"coordinates" : [22.95, 47.7], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "install:meteor": {"type": "string"}, "install:packages": {"type": "string"}, "start": {"type": "string"}, "dev": {"type": "string"}, "build:packages": {"type": "string"}, "meteor:run": {"type": "string"}, "validate:release": {"type": "string"}, "validate:release:meteor": {"type": "string"}, "validate:release:packages": {"type": "string"}, "meteor": {"type": "string"}, "docs:serve": {"type": "string"}}, "required": ["postinstall", "install:meteor", "install:packages", "start", "dev", "build:packages", "meteor:run", "validate:release", "validate:release:meteor", "validate:release:packages", "meteor", "docs:serve"]}}, "required": ["name", "version", "license", "private", "engines", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "automation-core", "version" : "0.0.0", "license" : "MIT", "private" : true, "engines" : {"node" : "^12.21.0 || 14"}, "scripts" : {"postinstall" : "yarn install:meteor && yarn install:packages", "install:meteor" : "cd meteor && meteor --version && meteor npm install", "install:packages" : "cd packages && yarn install", "start" : "yarn install && yarn dev", "dev" : "yarn build:packages && yarn meteor:run", "build:packages" : "cd packages && yarn build", "meteor:run" : "cd meteor && meteor npm run start", "validate:release" : "yarn install && yarn build:packages && yarn validate:release:meteor", "validate:release:meteor" : "cd meteor && meteor npm run validate:prod-dependencies && meteor npm run license-validate && meteor npm run lint && meteor npm run test", "validate:release:packages" : "cd packages && yarn lint && yarn test", "meteor" : "cd meteor && meteor", "docs:serve" : "cd packages && yarn docs:serve"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "install:meteor": {"type": "string"}, "install:packages": {"type": "string"}, "start": {"type": "string"}, "dev": {"type": "string"}, "build:packages": {"type": "string"}, "meteor:run": {"type": "string"}, "validate:release": {"type": "string"}, "validate:release:meteor": {"type": "string"}, "validate:release:packages": {"type": "string"}, "meteor": {"type": "string"}, "docs:serve": {"type": "string"}}, "required": ["postinstall", "install:meteor", "install:packages", "start", "dev", "build:packages", "meteor:run", "validate:release", "validate:release:meteor", "validate:release:packages", "meteor", "docs:serve"]}}, "required": ["name", "version", "license", "private", "engines", "scripts"], "$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"]}, "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": {"ejs": {"type": "string"}, "express": {"type": "string"}, "node": {"type": "string"}}, "required": ["ejs", "express", "node"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nlw-together", "version" : "1.0.0", "description" : "Programa de perguntas e respostas an\u00f4nimas onde o usu\u00e1rio pode respond\u00ea-las e/ou fazer perguntas ao dono da sala. Projeto desenvolvido para a semana da NLW6 (Next Level Week) - Together, desenvolvida pela Rocketseat. ", "main" : "src/server.js", "scripts" : {"start" : "nodemon ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/vilopesp/nlw-together-rocket.q.git"}, "keywords" : [], "author" : "Vit\u00f3ria Lopes", "license" : "ISC", "bugs" : {"url" : "https://github.com/vilopesp/nlw-together-rocket.q/issues"}, "homepage" : "https://github.com/vilopesp/nlw-together-rocket.q#readme", "dependencies" : {"ejs" : "^3.1.6", "express" : "^4.17.1", "node" : "^16.3.0"}, "devDependencies" : {"nodemon" : "^2.0.7"}} | 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"]}, "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": {"ejs": {"type": "string"}, "express": {"type": "string"}, "node": {"type": "string"}}, "required": ["ejs", "express", "node"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"city" : {"name" : "CARVALH\u00d3POLIS", "state" : "MG"}, "borders" : [[{"lat" : -21.822919997060183, "lng" : -45.78746600035561}, {"lat" : -21.808678996838182, "lng" : -45.84895100018849}, {"lat" : -21.777457996888984, "lng" : -45.89724399961085}, {"lat" : -21.748898996491448, "lng" : -45.8840520000997}, {"lat" : -21.722743996338295, "lng" : -45.816898999689045}, {"lat" : -21.822919997060183, "lng" : -45.78746600035561}]]} | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "svelte": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "e2e": {"type": "string"}, "test": {"type": "string"}, "dev:ex": {"type": "string"}, "emulate": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["build", "dev", "e2e", "test", "dev:ex", "emulate", "test:watch"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}, "cypress": {"type": "string"}, "firebase": {"type": "string"}, "firebase-tools": {"type": "string"}, "jest": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-bundle-size": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-svelte": {"type": "string"}, "svelte": {"type": "string"}}, "required": ["concurrently", "cypress", "firebase", "firebase-tools", "jest", "rollup", "rollup-plugin-bundle-size", "rollup-plugin-commonjs", "rollup-plugin-node-resolve", "rollup-plugin-svelte", "svelte"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "name", "svelte", "main", "description", "scripts", "repository", "devDependencies", "keywords", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.1.0", "name" : "sveltefire", "svelte" : "src/index.js", "main" : "dist/index.js", "description" : "Cybernetically Enhanced Firebase Apps", "scripts" : {"build" : "rollup -c", "dev" : "rollup -c -w", "e2e" : "cypress open --config watchForFileChanges=true", "test" : "jest", "dev:ex" : "cd example && npm run dev", "emulate" : "cd example && firebase emulators:start --only firestore", "test:watch" : "concurrently \"npm:dev:ex\" \"npm:emulate\" \"npm:e2e\" "}, "repository" : {"type" : "git", "url" : "https://github.com/codediodeio/sveltefire.git"}, "devDependencies" : {"concurrently" : "^5.0.0", "cypress" : "^3.6.1", "firebase" : "^7.3.0", "firebase-tools" : "^7.7.0", "jest" : "^24.9.0", "rollup" : "^1.11.0", "rollup-plugin-bundle-size" : "^1.0.3", "rollup-plugin-commonjs" : "^10.1.0", "rollup-plugin-node-resolve" : "^4.0.0", "rollup-plugin-svelte" : "^5.0.0", "svelte" : "^3.12.1"}, "keywords" : ["svelte", "firebase", "javascript"], "files" : ["README.md", "dist/**/*", "src/**/*"]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "svelte": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "e2e": {"type": "string"}, "test": {"type": "string"}, "dev:ex": {"type": "string"}, "emulate": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["build", "dev", "e2e", "test", "dev:ex", "emulate", "test:watch"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}, "cypress": {"type": "string"}, "firebase": {"type": "string"}, "firebase-tools": {"type": "string"}, "jest": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-bundle-size": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-svelte": {"type": "string"}, "svelte": {"type": "string"}}, "required": ["concurrently", "cypress", "firebase", "firebase-tools", "jest", "rollup", "rollup-plugin-bundle-size", "rollup-plugin-commonjs", "rollup-plugin-node-resolve", "rollup-plugin-svelte", "svelte"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "name", "svelte", "main", "description", "scripts", "repository", "devDependencies", "keywords", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/3ca8fb77-0c61-3ff5-a1d8-fc7e9904e918", "expression" : [{"id" : "http://data.doremus.org/expression/7242cbce-fd75-3ce8-9a13-9fb8d5b5bf30"}, {"id" : "http://data.doremus.org/expression/8e430e47-33cd-389e-86ec-26a7fd3bac3f"}, {"id" : "http://data.doremus.org/expression/6fa67084-e788-3985-a862-3b9337454131"}, {"id" : "http://data.doremus.org/expression/485be677-c111-3cfd-b81d-df1eec907ae9"}, {"id" : "http://data.doremus.org/expression/9b242721-7af5-3873-a6d8-4ac49ad8ac99"}, {"id" : "http://data.doremus.org/expression/883a3fb3-f63b-3bec-af26-66e46e6ff888"}, {"id" : "http://data.doremus.org/expression/8e122092-3c0d-3f04-804a-e16aaeabdc6d"}, {"id" : "http://data.doremus.org/expression/a437eea8-b528-328f-b308-1408c4edfca4"}, {"id" : "http://data.doremus.org/expression/7f9d3fbb-294d-34b5-a428-47a514d3c4c5"}, {"id" : "http://data.doremus.org/expression/b83b8467-577c-3193-b42f-e064bdc91a7d"}, {"id" : "http://data.doremus.org/expression/31334671-fa4f-3404-8250-deeacec53e14"}, {"id" : "http://data.doremus.org/expression/a17cb07f-6b1f-377c-9ad4-524e8b4c43f3"}, {"id" : "http://data.doremus.org/expression/9cdad041-f639-3b49-8c2b-c096757e9fd6"}, {"id" : "http://data.doremus.org/expression/a6aa98e4-f765-37e6-a0fd-41e0b8ce6462"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 126974, "name" : "\u7f8e\u5316\u5e76\u53bb\u9664userstyles.org\u5e7f\u544a", "description" : "\u7f8e\u5316\u5e76\u53bb\u9664userstyles.org\u5e7f\u544a\r\nbackground-image:\u4e3a\u58c1\u7eb8\u53ef\u66f4\u6362\r\nbackground: \u4e3a\u80cc\u666f\u989c\u8272\u548c\u4e0d\u900f\u660e\u5ea6\uff0c\u53ef\u4ee5\u4fee\u6539\uff01", "user" : {"id" : 328532, "name" : "\u8fc7\u53bb\u7ec8\u7a76\u662f\u4e2a\u56de\u5fc6", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "ccbync"}, "updated" : "2016-04-21T05:30:18.000Z", "weekly_install_count" : 23, "total_install_count" : 2622, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/126974_after.jpeg?r=1602144809", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2016-04-21T05:29:22.000Z", "category" : "site", "raw_subcategory" : "userstyles.org", "subcategory" : "userstyles.org", "additional_info" : "\u7f8e\u5316\u5e76\u53bb\u9664userstyles.org\u5e7f\u544a 1.0", "style_tags" : [], "css" : "@-moz-document domain(\"userstyles.org\") {\r\n body{\r\n background-image: url(http://5.66825.com/download/pic/000/325/ccdf85da2620f551cc9cd10a0f0f655d.jpg) !important;\r\n background-repeat: no-repeat !important;\r\n background-size: cover !important;\r\n background-attachment: fixed !important;\r\n background-color: #1C1C1C !important;\r\n color: white !important;\r\n }\r\n \r\n nav,\r\n #main-header,\r\n #search-submit,\r\n #related,\r\n #screenshots,\r\n #view-code,\r\n #stylish-installed-style-not-installed,\r\n #Panel,\r\n #Content,\r\n .author-styles,\r\n #content-wrapper{\r\n background: rgba(0,0,0,0.3) !important;\r\n border-radius: 0px 0px 0px 0px !important;\r\n padding: 5px !important;\r\n }\r\n\r\n\r\n\r\n[class*=\"ad\"]{display:none !important;} \r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/126974/userstyles-org.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["splinky-ws"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ZilchValueToken", "symbol" : "ZVT", "address" : "0xA5B72eCEcc25b03565590779Dcc438896eb1cd31", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "jsnext:main": {"type": "string"}, "sideEffects": {"type": "boolean"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "peerDependencies": {"type": "object", "properties": {"styled-components": {"type": "string"}}, "required": ["styled-components"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/node": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-eslint": {"type": "string"}, "cross-env": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-babel": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "pre-commit": {"type": "string"}, "react": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/node", "@babel/preset-env", "babel-eslint", "cross-env", "eslint", "eslint-config-airbnb", "eslint-plugin-babel", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "pre-commit", "react", "styled-components"]}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["prepublishOnly", "build", "lint"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "module", "jsnext:main", "sideEffects", "description", "bugs", "license", "repository", "peerDependencies", "devDependencies", "scripts", "pre-commit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mnet-ui-base-theme", "version" : "0.0.1", "main" : "dist/index.js", "module" : "dist/es6/index.js", "jsnext:main" : "dist/es6/index.js", "sideEffects" : false, "description" : "Media.net default theme", "bugs" : "https://github.com/grommet/grommet-theme-hp/issues", "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "https://github.com/grommet/grommet-theme-hp.git"}, "peerDependencies" : {"styled-components" : "^4.0.0"}, "devDependencies" : {"@babel/cli" : "^7.1.2", "@babel/core" : "^7.1.2", "@babel/node" : "^7.0.0", "@babel/preset-env" : "^7.1.0", "babel-eslint" : "^10.0.1", "cross-env" : "^5.2.0", "eslint" : "^5.6.1", "eslint-config-airbnb" : "^17.1.0", "eslint-plugin-babel" : "^5.1.0", "eslint-plugin-import" : "^2.2.0", "eslint-plugin-jsx-a11y" : "^6.1.1", "eslint-plugin-react" : "^7.11.0", "pre-commit" : "^1.2.2", "react" : "^16.5.2", "styled-components" : "^4.0.0"}, "scripts" : {"prepublishOnly" : "npm run build", "build" : "cross-env babel ./src/js/ --out-dir ./dist --copy-files && cross-env BABEL_ENV=es6 babel ./src/js/ --out-dir ./dist/es6 --copy-files", "lint" : "eslint src"}, "pre-commit" : ["lint"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "jsnext:main": {"type": "string"}, "sideEffects": {"type": "boolean"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "peerDependencies": {"type": "object", "properties": {"styled-components": {"type": "string"}}, "required": ["styled-components"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/node": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-eslint": {"type": "string"}, "cross-env": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-babel": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "pre-commit": {"type": "string"}, "react": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/node", "@babel/preset-env", "babel-eslint", "cross-env", "eslint", "eslint-config-airbnb", "eslint-plugin-babel", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "pre-commit", "react", "styled-components"]}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["prepublishOnly", "build", "lint"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "module", "jsnext:main", "sideEffects", "description", "bugs", "license", "repository", "peerDependencies", "devDependencies", "scripts", "pre-commit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "attributes": {"type": "object", "properties": {"su": {"type": "boolean"}}, "required": ["su"]}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}, "venue": {"type": "string"}, "day": {"type": "string"}, "lessonType": {"type": "string"}, "size": {"type": "integer"}}, "required": ["classNo", "startTime", "endTime", "weeks", "venue", "day", "lessonType", "size"]}}, "examDate": {"type": "string"}, "examDuration": {"type": "integer"}}, "required": ["semester", "timetable", "examDate", "examDuration"]}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "attributes", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "description" : "This module will first introduce students to Environmental Law, particularly conservation and pollution laws, and how these are passed and implemented at the international, regional (ASEAN) and national (Singapore) levels. It will emphasise that laws alone will not help in ensuring the quality of a country\u00e2\u0080\u0099s environment and the health of its citizens. Laws must be enforced, and the rule of law respected. Good governance is therefore a necessary component of sound environmental management. This module will next examine what constitutes good environmental governance. It will explore environmental and economic policies and how best to resolve the tensions between conservation and development. It will study the setting up of effective administrative institutions, land use planning, the provision of environmental infrastructure (modern sanitation, water treatment plants, transport systems, etc). It will then critically examine the workings of the main administrative agencies that are responsible for environmental management in Singapore. It will also look into the work of local and international non-governmental organisations (NGOs) as well as multi-national corporations and corporate social responsibility in Singapore. Comparisons will be made with the administrative and legal systems in other jurisdictions. This module will be taught by staff members from the Law Faculty as well as the Lee Kuan Yew School of Public Policy.", "title" : "Environmental Law", "department" : "FoS Dean's Office", "faculty" : "Science", "workload" : [0, 3, 0, 0, 7], "prerequisite" : "For students in the Environmental Studies Programme.", "moduleCredit" : "4", "moduleCode" : "ENV2102", "attributes" : {"su" : true}, "semesterData" : [{"semester" : 2, "timetable" : [{"classNo" : "L1", "startTime" : "1800", "endTime" : "2200", "weeks" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "S16-0430", "day" : "Thursday", "lessonType" : "Seminar-Style Module Class", "size" : 70}], "examDate" : "2020-04-29T01:00:00.000Z", "examDuration" : 120}]} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "attributes": {"type": "object", "properties": {"su": {"type": "boolean"}}, "required": ["su"]}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}, "venue": {"type": "string"}, "day": {"type": "string"}, "lessonType": {"type": "string"}, "size": {"type": "integer"}}, "required": ["classNo", "startTime", "endTime", "weeks", "venue", "day", "lessonType", "size"]}}, "examDate": {"type": "string"}, "examDuration": {"type": "integer"}}, "required": ["semester", "timetable", "examDate", "examDuration"]}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "attributes", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"fub": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "dlr": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "htw": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "tub": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "udk": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "tsb": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}}, "required": ["fub", "dlr", "htw", "tub", "udk", "tsb"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fub" : {"en" : "Free University of Berlin", "de" : "Freie Universit\u00e4t Berlin", "logo" : "/assets/images/fub-logo.svg"}, "dlr" : {"en" : "German Aerospace Center", "de" : "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt", "logo" : "/assets/images/dlr-logo.svg"}, "htw" : {"en" : "University of Applied Sciences", "de" : "Hochschule f\u00fcr Technik und Wirtschaft Berlin", "logo" : "/assets/images/htw-logo.jpg"}, "tub" : {"en" : "Technical University of Berlin", "de" : "Technische Universit\u00e4t Berlin", "logo" : "/assets/images/tub-logo.svg"}, "udk" : {"en" : "Berlin University of the Arts", "de" : "Universit\u00e4t der K\u00fcnste Berlin", "logo" : "/assets/images/udk-logo.svg"}, "tsb" : {"en" : "Technology Foundation Berlin", "de" : "Technologiestiftung Berlin", "logo" : "/assets/images/tsb-logo.png"}} | json_instruct | {"type": "object", "properties": {"fub": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "dlr": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "htw": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "tub": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "udk": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}, "tsb": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}, "logo": {"type": "string"}}, "required": ["en", "de", "logo"]}}, "required": ["fub", "dlr", "htw", "tub", "udk", "tsb"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}, "qualityTemplates": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules", "qualityTemplates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "CWE-269", "name" : "Improper Privilege Management", "href" : "AIP/quality-standards/CWE/items/CWE-269", "url" : "https://cwe.mitre.org/data/definitions/269.html", "description" : "The software does not properly assign, modify, track, or check privileges for an actor, creating an unintended sphere of control for that actor.", "isoPatterns" : null, "count" : 3, "qualityRules" : {"name" : "Quality Rules in numeric ID order", "href" : "AIP/quality-standards/CWE/items/CWE-269/quality-rules"}, "qualityTemplates" : {"name" : "Quality Templates in numeric ID order", "href" : "AIP/quality-standards/CWE/items/CWE-269/quality-templates"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}, "qualityTemplates": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules", "qualityTemplates"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"guangwei": {"type": "string"}}, "required": ["guangwei"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "EXUScrollTabController", "version" : "0.11", "summary" : "A ViewController Containter that can exchange it's viewControllers by scroll", "description" : "A ViewController Containter that can exchange it's viewControllers by scroll and handle childViewController's lifeCycle perfect.", "homepage" : "https://github.com/waitingsnow/EXUScrollTabController", "license" : {"type" : "MIT", "file" : "LICENSE.txt"}, "authors" : {"guangwei" : "[email protected]"}, "platforms" : {"ios" : "7.0"}, "source" : {"git" : "https://github.com/waitingsnow/EXUScrollTabController.git", "tag" : "0.11"}, "source_files" : "*.{h,m}", "frameworks" : ["Foundation", "UIKit"], "requires_arc" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"guangwei": {"type": "string"}}, "required": ["guangwei"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "mysticalagradditions:block/nether_inferium_ore"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["130322104200", "\u6ce5\u4e95\u4e8c\u6751\u59d4\u4f1a", "121", "0"], ["130322104201", "\u6ce5\u4e95\u4e00\u6751\u59d4\u4f1a", "122", "0"], ["130322104202", "\u6ce5\u4e95\u4e09\u6751\u59d4\u4f1a", "122", "0"], ["130322104203", "\u6768\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104204", "\u97e6\u5e84\u6751\u59d4\u4f1a", "122", "0"], ["130322104205", "\u725b\u5fc3\u5e84\u6751\u59d4\u4f1a", "122", "0"], ["130322104206", "\u5d14\u5bb6\u5768\u6751\u59d4\u4f1a", "220", "0"], ["130322104207", "\u9648\u5b98\u8425\u6751\u59d4\u4f1a", "220", "0"], ["130322104208", "\u4faf\u5bb6\u8425\u6751\u59d4\u4f1a", "122", "0"], ["130322104209", "\u8d75\u5bb6\u6e2f\u6751\u59d4\u4f1a", "220", "0"], ["130322104210", "\u79e6\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104211", "\u51af\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104212", "\u524d\u5218\u5768\u6751\u59d4\u4f1a", "220", "0"], ["130322104213", "\u540e\u5218\u5768\u6751\u59d4\u4f1a", "220", "0"], ["130322104214", "\u674e\u5316\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104215", "\u5f20\u5bb6\u5768\u6751\u59d4\u4f1a", "220", "0"], ["130322104216", "\u5415\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104217", "\u624d\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104218", "\u674e\u6210\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104219", "\u897f\u5317\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104220", "\u524d\u5317\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104221", "\u540e\u5317\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104222", "\u8096\u5b98\u8425\u6751\u59d4\u4f1a", "220", "0"], ["130322104223", "\u4e1c\u9b4f\u5b98\u8425\u6751\u59d4\u4f1a", "220", "0"], ["130322104224", "\u540e\u5768\u6751\u59d4\u4f1a", "220", "0"], ["130322104225", "\u5927\u897f\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104226", "\u5c0f\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104227", "\u65b0\u91d1\u94fa\u4e00\u6751\u59d4\u4f1a", "220", "0"], ["130322104228", "\u65b0\u91d1\u94fa\u4e8c\u6751\u59d4\u4f1a", "220", "0"], ["130322104229", "\u65b0\u91d1\u94fa\u4e09\u6751\u59d4\u4f1a", "220", "0"], ["130322104230", "\u4e95\u800c\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104231", "\u83ab\u5404\u5e84\u4e00\u6751\u59d4\u4f1a", "220", "0"], ["130322104232", "\u83ab\u5404\u5e84\u4e8c\u6751\u59d4\u4f1a", "220", "0"], ["130322104233", "\u5821\u5b50\u6751\u59d4\u4f1a", "220", "0"], ["130322104234", "\u590f\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130322104235", "\u91d1\u5e84\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Mauvezin sur Gupie", "circ" : "2\u00e8me circonscription", "dpt" : "Lot-et-Garonne", "inscrits" : 466, "abs" : 230, "votants" : 236, "blancs" : 6, "nuls" : 11, "exp" : 219, "res" : [{"nuance" : "REM", "nom" : "M. Alexandre FRESCHI", "voix" : 123}, {"nuance" : "FN", "nom" : "Mme H\u00e9l\u00e8ne LAPORTE", "voix" : 96}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "Sktima Alt", "scores" : [{"xp" : 38898, "rank" : 201, "cardId" : 433}, {"xp" : 5273, "rank" : 476, "cardId" : 610}, {"xp" : 91170, "rank" : 106, "cardId" : 115}, {"xp" : 10444, "rank" : 481, "cardId" : 435}, {"xp" : 48042, "rank" : 14, "cardId" : 562}, {"xp" : 8593, "rank" : 341, "cardId" : 285}, {"xp" : 221, "rank" : 433, "cardId" : 639}, {"xp" : 34173, "rank" : 162, "cardId" : 495}, {"xp" : 7033, "rank" : 279, "cardId" : 611}, {"xp" : 33574, "rank" : 499, "cardId" : 105}, {"xp" : 35641, "rank" : 102, "cardId" : 244}, {"xp" : 37685, "rank" : 58, "cardId" : 122}, {"xp" : 63369, "rank" : 32, "cardId" : 377}, {"xp" : 1157, "rank" : 495, "cardId" : 558}, {"xp" : 20092, "rank" : 141, "cardId" : 169}, {"xp" : 11035, "rank" : 351, "cardId" : 274}, {"xp" : 2955, "rank" : 202, "cardId" : 652}, {"xp" : 3795, "rank" : 453, "cardId" : 594}, {"xp" : 9741, "rank" : 364, "cardId" : 395}, {"xp" : 1527, "rank" : 443, "cardId" : 653}, {"xp" : 10940, "rank" : 480, "cardId" : 279}, {"xp" : 6882, "rank" : 118, "cardId" : 636}, {"xp" : 21965, "rank" : 159, "cardId" : 512}, {"xp" : 4217, "rank" : 426, "cardId" : 560}, {"xp" : 57651, "rank" : 90, "cardId" : 391}, {"xp" : 3184, "rank" : 321, "cardId" : 650}, {"xp" : 10145, "rank" : 390, "cardId" : 282}, {"xp" : 26133, "rank" : 336, "cardId" : 168}, {"xp" : 71584, "rank" : 33, "cardId" : 297}, {"xp" : 19858, "rank" : 472, "cardId" : 236}, {"xp" : 60220, "rank" : 201, "cardId" : 472}, {"xp" : 23498, "rank" : 88, "cardId" : 571}, {"xp" : 27099, "rank" : 140, "cardId" : 566}, {"xp" : 5755, "rank" : 187, "cardId" : 590}, {"xp" : 39518, "rank" : 206, "cardId" : 564}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dihedrals": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "grid_spacing": {"type": "array", "items": {"type": "integer"}}, "dihedral_ranges": {"type": "null"}, "energy_decrease_thresh": {"type": "null"}, "energy_upper_limit": {"type": "number"}, "dataset_name": {"type": "string"}, "entry_label": {"type": "string"}, "canonical_smiles": {"type": "string"}, "attributes": {"type": "object", "properties": {"canonical_explicit_hydrogen_smiles": {"type": "string"}, "canonical_isomeric_explicit_hydrogen_mapped_smiles": {"type": "string"}, "canonical_isomeric_explicit_hydrogen_smiles": {"type": "string"}, "canonical_isomeric_smiles": {"type": "string"}, "canonical_smiles": {"type": "string"}, "inchi_key": {"type": "string"}, "molecular_formula": {"type": "string"}, "provenance": {"type": "string"}, "standard_inchi": {"type": "string"}, "unique_protomer_representation": {"type": "string"}, "unique_tautomer_representation": {"type": "string"}}, "required": ["canonical_explicit_hydrogen_smiles", "canonical_isomeric_explicit_hydrogen_mapped_smiles", "canonical_isomeric_explicit_hydrogen_smiles", "canonical_isomeric_smiles", "canonical_smiles", "inchi_key", "molecular_formula", "provenance", "standard_inchi", "unique_protomer_representation", "unique_tautomer_representation"]}, "torsion_grid_ids": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "smirks": {"type": "array", "items": {"type": "string"}}, "smirks_ids": {"type": "array", "items": {"type": "string"}}}, "required": ["dihedrals", "grid_spacing", "dihedral_ranges", "energy_decrease_thresh", "energy_upper_limit", "dataset_name", "entry_label", "canonical_smiles", "attributes", "torsion_grid_ids", "smirks", "smirks_ids"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dihedrals" : [[0, 4, 10, 5]], "grid_spacing" : [15], "dihedral_ranges" : null, "energy_decrease_thresh" : null, "energy_upper_limit" : 0.1, "dataset_name" : "OpenFF Substituted Phenyl Set 1", "entry_label" : "CC[C:4](=O)[NH:3][c:2]1[cH:1]c(cnc1)N", "canonical_smiles" : "CCC(=O)Nc1cc(cnc1)N", "attributes" : {"canonical_explicit_hydrogen_smiles" : "[H]c1c(c(nc(c1N([H])C(=O)C([H])([H])C([H])([H])[H])[H])[H])N([H])[H]", "canonical_isomeric_explicit_hydrogen_mapped_smiles" : "[H:13][c:1]1[c:4]([c:2]([n:9][c:3]([c:5]1[N:11]([H:23])[C:6](=[O:12])[C:8]([H:19])([H:20])[C:7]([H:16])([H:17])[H:18])[H:15])[H:14])[N:10]([H:21])[H:22]", "canonical_isomeric_explicit_hydrogen_smiles" : "[H]c1c(c(nc(c1N([H])C(=O)C([H])([H])C([H])([H])[H])[H])[H])N([H])[H]", "canonical_isomeric_smiles" : "CCC(=O)Nc1cc(cnc1)N", "canonical_smiles" : "CCC(=O)Nc1cc(cnc1)N", "inchi_key" : "DIULUGGSTSEHNE-UHFFFAOYSA-N", "molecular_formula" : "C8H11N3O", "provenance" : "cmiles_v0.1.4+9.g7ed3036_openeye_2019.Apr.2", "standard_inchi" : "InChI=1S/C8H11N3O/c1-2-8(12)11-7-3-6(9)4-10-5-7/h3-5H,2,9H2,1H3,(H,11,12)", "unique_protomer_representation" : "CCC(=O)Nc1cc(cnc1)N", "unique_tautomer_representation" : "CCC(=O)Nc1cncc(N)c1"}, "torsion_grid_ids" : [[-165], [-150], [-135], [-120], [-105], [-90], [-75], [-60], [-45], [-30], [-15], [0], [15], [30], [45], [60], [75], [90], [105], [120], [135], [150], [165], [180]], "smirks" : ["[*:1]~[#7X3,#7X2-1:2]-!@[#6X3:3]~[*:4]"], "smirks_ids" : ["t69"]} | json_instruct | {"type": "object", "properties": {"dihedrals": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "grid_spacing": {"type": "array", "items": {"type": "integer"}}, "dihedral_ranges": {"type": "null"}, "energy_decrease_thresh": {"type": "null"}, "energy_upper_limit": {"type": "number"}, "dataset_name": {"type": "string"}, "entry_label": {"type": "string"}, "canonical_smiles": {"type": "string"}, "attributes": {"type": "object", "properties": {"canonical_explicit_hydrogen_smiles": {"type": "string"}, "canonical_isomeric_explicit_hydrogen_mapped_smiles": {"type": "string"}, "canonical_isomeric_explicit_hydrogen_smiles": {"type": "string"}, "canonical_isomeric_smiles": {"type": "string"}, "canonical_smiles": {"type": "string"}, "inchi_key": {"type": "string"}, "molecular_formula": {"type": "string"}, "provenance": {"type": "string"}, "standard_inchi": {"type": "string"}, "unique_protomer_representation": {"type": "string"}, "unique_tautomer_representation": {"type": "string"}}, "required": ["canonical_explicit_hydrogen_smiles", "canonical_isomeric_explicit_hydrogen_mapped_smiles", "canonical_isomeric_explicit_hydrogen_smiles", "canonical_isomeric_smiles", "canonical_smiles", "inchi_key", "molecular_formula", "provenance", "standard_inchi", "unique_protomer_representation", "unique_tautomer_representation"]}, "torsion_grid_ids": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "smirks": {"type": "array", "items": {"type": "string"}}, "smirks_ids": {"type": "array", "items": {"type": "string"}}}, "required": ["dihedrals", "grid_spacing", "dihedral_ranges", "energy_decrease_thresh", "energy_upper_limit", "dataset_name", "entry_label", "canonical_smiles", "attributes", "torsion_grid_ids", "smirks", "smirks_ids"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "430224203201", "text" : "\u5824\u6d32\u6751"}, {"id" : "430224203202", "text" : "\u957f\u9e2d\u6751"}, {"id" : "430224203204", "text" : "\u8232\u822b\u6751"}, {"id" : "430224203205", "text" : "\u57b8\u4e95\u6751"}, {"id" : "430224203207", "text" : "\u897f\u5cb8\u6751"}, {"id" : "430224203208", "text" : "\u6cb3\u575e\u6751"}, {"id" : "430224203211", "text" : "\u6d2e\u6c34\u6751"}, {"id" : "430224203212", "text" : "\u7960\u6e7e\u6751"}, {"id" : "430224203215", "text" : "\u5927\u5cb3\u6751"}, {"id" : "430224203217", "text" : "\u8f66\u6d66\u6751"}, {"id" : "430224203218", "text" : "\u5b98\u6eaa\u6751"}] | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "EHR order list entry", "COUNT_VALUE" : 181}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [19, 0], "P10_VALUE" : [41, 37], "P25_VALUE" : [48, 42], "MEDIAN_VALUE" : [55, 53], "P75_VALUE" : [63, 61], "P90_VALUE" : [72, 70], "MAX_VALUE" : [88, 93]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "main", "authors", "license", "homepage", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "geocache", "description" : "", "main" : "", "authors" : ["Hunter Parks <[email protected]>"], "license" : "MIT", "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "main", "authors", "license", "homepage", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "type", "tags", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Wildfire Black Mesa Roleplay - Content", "type" : "ServerContent", "tags" : ["realism", "roleplay"], "ignore" : ["*.psd", "*.vcproj", "*.svn*", "*.pdn", "*.sfk", "*.veg", "*.git"]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "type", "tags", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "72156323", "name" : "Ascot Road", "nodes" : [{"type" : "node", "id" : 857722267, "lat" : 52.2821395, "lon" : -0.5852537}, {"type" : "node", "id" : 857724838, "lat" : 52.2826777, "lon" : -0.586106}, {"type" : "node", "id" : 1072902237, "lat" : 52.2823762, "lon" : -0.5856674}], "volunteer_postcode" : "NN10 0ZD", "closest_distance" : 259} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"vps_secondary_dns": {"type": "string"}}, "required": ["vps_secondary_dns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vps_secondary_dns" : "DNS secondario"} | json_instruct | {"type": "object", "properties": {"vps_secondary_dns": {"type": "string"}}, "required": ["vps_secondary_dns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "Residency", "hour" : "01", "avg" : 26.454545454545453}, {"subreddit" : "Residency", "hour" : "02", "avg" : 28.75}, {"subreddit" : "Residency", "hour" : "03", "avg" : 29.6}, {"subreddit" : "Residency", "hour" : "04", "avg" : 107.66666666666667}, {"subreddit" : "Residency", "hour" : "05", "avg" : 44.166666666666664}, {"subreddit" : "Residency", "hour" : "06", "avg" : 5.571428571428571}, {"subreddit" : "Residency", "hour" : "07", "avg" : 134.83333333333334}, {"subreddit" : "Residency", "hour" : "08", "avg" : 13.0}, {"subreddit" : "Residency", "hour" : "09", "avg" : 19.333333333333332}, {"subreddit" : "Residency", "hour" : "10", "avg" : 18.0}, {"subreddit" : "Residency", "hour" : "11", "avg" : 62.333333333333336}, {"subreddit" : "Residency", "hour" : "12", "avg" : 109.75}, {"subreddit" : "Residency", "hour" : "13", "avg" : 101.5}, {"subreddit" : "Residency", "hour" : "14", "avg" : 20.3}, {"subreddit" : "Residency", "hour" : "15", "avg" : 6.666666666666667}, {"subreddit" : "Residency", "hour" : "16", "avg" : 45.833333333333336}, {"subreddit" : "Residency", "hour" : "17", "avg" : 18.4}, {"subreddit" : "Residency", "hour" : "18", "avg" : 27.3125}, {"subreddit" : "Residency", "hour" : "19", "avg" : 48.75}, {"subreddit" : "Residency", "hour" : "20", "avg" : 35.92857142857143}, {"subreddit" : "Residency", "hour" : "21", "avg" : 19.23076923076923}, {"subreddit" : "Residency", "hour" : "22", "avg" : 56.84615384615385}, {"subreddit" : "Residency", "hour" : "23", "avg" : 34.84615384615385}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}, "compile_kind": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config", "compile_kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 1514607520798689563, "features" : "[\"alloc\", \"default\", \"std\"]", "target" : 7826468001132646771, "profile" : 2285152228202085614, "path" : 17998972919579263004, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/hex-d95c5a7bf18fa0b7/dep-lib-hex"}}], "rustflags" : [], "metadata" : 14751499657425910276, "config" : 0, "compile_kind" : 0} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}, "compile_kind": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config", "compile_kind"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "http-proxy": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["express", "http-proxy", "mongodb"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"express" : "^4.17.1", "http-proxy" : "^1.18.1", "mongodb" : "^3.6.6"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "http-proxy": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["express", "http-proxy", "mongodb"]}}, "required": ["dependencies"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "readmeFilename": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "repository", "license", "engines", "readmeFilename"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "snippets-jade", "version" : "0.3.0", "description" : "provide basic snippets for jade", "keywords" : ["pug", "jade", "snippets"], "repository" : "https://github.com/rail-rain/snippets-jade", "license" : "MIT", "engines" : {"atom" : "*"}, "readmeFilename" : "README.md"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "readmeFilename": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "repository", "license", "engines", "readmeFilename"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 9940203, "stations" : ["9940203"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$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"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "prepare": {"type": "string"}, "scripts": {"type": "object", "properties": {"codecov": {"type": "string"}, "test": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["codecov", "test", "postinstall"]}, "devDependencies": {"type": "object", "properties": {"@cucumber/cucumber": {"type": "string"}, "cucumber-html-reporter": {"type": "string"}, "keytar": {"type": "string"}, "lerna": {"type": "string"}}, "required": ["@cucumber/cucumber", "cucumber-html-reporter", "keytar", "lerna"]}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "multiple-cucumber-html-reporter": {"type": "string"}, "node-fetch": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["chai", "multiple-cucumber-html-reporter", "node-fetch", "nyc"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "private", "version", "description", "main", "prepare", "scripts", "devDependencies", "dependencies", "workspaces", "author", "license", "repository", "keywords", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ln-maf", "private" : true, "version" : "1.0.0", "description" : "Modular Automation Framework", "main" : "index.js", "prepare" : "cd packages && node createAutoComplete.js", "scripts" : {"codecov" : "nyc --reporter=lcov --reporter=text cucumber-js test", "test" : "lerna run test", "postinstall" : "sh postinstall.sh"}, "devDependencies" : {"@cucumber/cucumber" : "^7.2.1", "cucumber-html-reporter" : "^5.4.0", "keytar" : "7.*", "lerna" : "^4.0.0"}, "dependencies" : {"chai" : "^4.3.4", "multiple-cucumber-html-reporter" : "^1.18.0", "node-fetch" : "^2.6.1", "nyc" : "^15.1.0"}, "workspaces" : ["packages/*"], "author" : "", "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "git+https://github.com/hpcc-systems/MAF.git"}, "keywords" : ["cucumber-js", "testing", "gherkin", "cucumber-steps"], "bugs" : {"url" : "https://github.com/hpcc-systems/MAF/issues"}, "homepage" : "https://github.com/hpcc-systems/MAF#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "prepare": {"type": "string"}, "scripts": {"type": "object", "properties": {"codecov": {"type": "string"}, "test": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["codecov", "test", "postinstall"]}, "devDependencies": {"type": "object", "properties": {"@cucumber/cucumber": {"type": "string"}, "cucumber-html-reporter": {"type": "string"}, "keytar": {"type": "string"}, "lerna": {"type": "string"}}, "required": ["@cucumber/cucumber", "cucumber-html-reporter", "keytar", "lerna"]}, "dependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "multiple-cucumber-html-reporter": {"type": "string"}, "node-fetch": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["chai", "multiple-cucumber-html-reporter", "node-fetch", "nyc"]}, "workspaces": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "private", "version", "description", "main", "prepare", "scripts", "devDependencies", "dependencies", "workspaces", "author", "license", "repository", "keywords", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kraenkvisuell\\ProjectStarter\\": {"type": "string"}}, "required": ["Kraenkvisuell\\ProjectStarter\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kraenkvisuell\\ProjectStarter\\Tests\\": {"type": "string"}}, "required": ["Kraenkvisuell\\ProjectStarter\\Tests\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require-dev": {"type": "object", "properties": {"orchestra/testbench": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["orchestra/testbench", "phpunit/phpunit"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "keywords", "license", "repositories", "require", "autoload", "autoload-dev", "config", "minimum-stability", "prefer-stable", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kraenkvisuell/project-starter", "description" : "Kickstart Laravel Web Project with Nova and Nova CMS", "keywords" : ["laravel"], "license" : "MIT", "repositories" : [{"type" : "composer", "url" : "https://nova.laravel.com"}], "require" : {"php" : "^7.4.0|^8.0"}, "autoload" : {"psr-4" : {"Kraenkvisuell\\ProjectStarter\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Kraenkvisuell\\ProjectStarter\\Tests\\" : "tests"}}, "config" : {"sort-packages" : true}, "minimum-stability" : "dev", "prefer-stable" : true, "require-dev" : {"orchestra/testbench" : "^6.0", "phpunit/phpunit" : "^9.2"}, "extra" : {"laravel" : {"providers" : ["Kraenkvisuell\\ProjectStarter\\ProjectStarterServiceProvider"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kraenkvisuell\\ProjectStarter\\": {"type": "string"}}, "required": ["Kraenkvisuell\\ProjectStarter\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Kraenkvisuell\\ProjectStarter\\Tests\\": {"type": "string"}}, "required": ["Kraenkvisuell\\ProjectStarter\\Tests\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require-dev": {"type": "object", "properties": {"orchestra/testbench": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["orchestra/testbench", "phpunit/phpunit"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "keywords", "license", "repositories", "require", "autoload", "autoload-dev", "config", "minimum-stability", "prefer-stable", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"alltime": {"type": "string"}, "today": {"type": "string"}}, "required": ["alltime", "today"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"alltime" : "https://randomuser.me/api/?callback=JSON_CALLBACK&noinfo&results=20&nat=gb", "today" : "https://randomuser.me/api/?callback=JSON_CALLBACK&noinfo&results=20&nat=ca"} | json_instruct | {"type": "object", "properties": {"alltime": {"type": "string"}, "today": {"type": "string"}}, "required": ["alltime", "today"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 9910212, "stations" : ["9910212"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"include": {"type": "string"}, "a": {"type": "string"}, "c": {"type": "object", "properties": {"include": {"type": "string"}}, "required": ["include"]}}, "required": ["include", "a", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"include" : "abc_custom_error.json", "a" : "hi", "c" : {"include" : "defg_working.json"}} | json_instruct | {"type": "object", "properties": {"include": {"type": "string"}, "a": {"type": "string"}, "c": {"type": "object", "properties": {"include": {"type": "string"}}, "required": ["include"]}}, "required": ["include", "a", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"__invalid_dependency__": {"type": "string"}, "semver": {"type": "string"}}, "required": ["__invalid_dependency__", "semver"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"__invalid_dependency__" : "removed by pre_install_patches", "semver" : "1.0.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"__invalid_dependency__": {"type": "string"}, "semver": {"type": "string"}}, "required": ["__invalid_dependency__", "semver"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "id": {"type": "integer"}}, "required": ["title", "description", "location", "id"]}}, "applicants": {"type": "array", "items": {"type": "object", "properties": {"salutation": {"type": "string"}, "name": {"type": "string"}, "email": {"type": "string"}, "number": {"type": "string"}, "subject": {"type": "string"}, "message": {"type": "string"}, "gender": {"type": "string"}, "secret": {"type": "string"}, "id": {"type": "integer"}}, "required": ["salutation", "name", "email", "number", "subject", "message", "gender", "secret", "id"]}}, "user": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "id": {"type": "integer"}}, "required": ["username", "password", "id"]}}}, "required": ["contacts", "applicants", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [{"title" : "fff", "description" : "fffggggh", "location" : "fff", "id" : 6}, {"title" : "Manager", "description" : "Manage Arsenal", "location" : "London", "id" : 7}, {"title" : "kkkkkmmmmm", "description" : "mmmmmm", "location" : "fffffff", "id" : 9}, {"title" : "Do you like money?", "description" : "more money", "location" : "abuja", "id" : 10}, {"title" : "ooo", "description" : "eeee", "location" : "lagos", "id" : 11}], "applicants" : [{"salutation" : "Mr.", "name" : "IKENNA UCHE", "email" : "[email protected]", "number" : "2222", "subject" : "Social Media", "message" : "rrrr", "gender" : "Male", "secret" : "1b3a9374-1a8e-434e-90ab-21aa7b9b80e7", "id" : 1}, {"salutation" : "Mr.", "name" : "InformationDepository", "email" : "[email protected]", "number" : "9999", "subject" : "Social Media", "message" : "kkkkk", "gender" : "Male", "secret" : "1b3a9374-1a8e-434e-90ab-21aa7b9b80e7", "id" : 2}], "user" : [{"username" : "admin", "password" : "admin", "id" : 100}]} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "id": {"type": "integer"}}, "required": ["title", "description", "location", "id"]}}, "applicants": {"type": "array", "items": {"type": "object", "properties": {"salutation": {"type": "string"}, "name": {"type": "string"}, "email": {"type": "string"}, "number": {"type": "string"}, "subject": {"type": "string"}, "message": {"type": "string"}, "gender": {"type": "string"}, "secret": {"type": "string"}, "id": {"type": "integer"}}, "required": ["salutation", "name", "email", "number", "subject", "message", "gender", "secret", "id"]}}, "user": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "id": {"type": "integer"}}, "required": ["username", "password", "id"]}}}, "required": ["contacts", "applicants", "user"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"UG-407": {"type": "string"}, "UG-409": {"type": "string"}, "UG-414": {"type": "string"}, "UG-417": {"type": "string"}, "UG-418": {"type": "string"}}, "required": ["UG-407", "UG-409", "UG-414", "UG-417", "UG-418"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"UG-407" : "\u05e7\u05d9\u05d1\u05dc\u05d4", "UG-409" : "\u05de\u05d0\u05e1\u05d9\u05e0\u05d3\u05d9", "UG-414" : "\u05e7\u05e0\u05d5\u05e0\u05d2\u05d5", "UG-417" : "\u05d9\u05e1\u05d9\u05e0\u05d2\u05e8\u05d5", "UG-418" : "\u05e7\u05d9\u05e8\u05d5\u05d4\u05d5\u05e8\u05d4"} | json_instruct | {"type": "object", "properties": {"UG-407": {"type": "string"}, "UG-409": {"type": "string"}, "UG-414": {"type": "string"}, "UG-417": {"type": "string"}, "UG-418": {"type": "string"}}, "required": ["UG-407", "UG-409", "UG-414", "UG-417", "UG-418"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "morgan": {"type": "string"}, "body-parser": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["express", "morgan", "body-parser", "mongodb"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["private", "name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "engines", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "name" : "uber-list", "version" : "0.0.1", "description" : "A consolidated list app", "main" : "index.js", "dependencies" : {"express" : "^4.11.2", "morgan" : "^1.5.1", "body-parser" : "^1.12.0", "mongodb" : "~2.0"}, "devDependencies" : {}, "scripts" : {"start" : "node index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "engines" : {"node" : "0.10.x"}, "author" : "talkingscott <[email protected]>", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "morgan": {"type": "string"}, "body-parser": {"type": "string"}, "mongodb": {"type": "string"}}, "required": ["express", "morgan", "body-parser", "mongodb"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["private", "name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "engines", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "aa12ddb1490e342816d087863e26a4c92a0e12ab"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "object", "properties": {"localPart": {"type": "string"}, "namespaceURI": {"type": "string"}, "prefix": {"type": "string"}, "key": {"type": "string"}, "string": {"type": "string"}}, "required": ["localPart", "namespaceURI", "prefix", "key", "string"]}, "value": {"type": "object", "properties": {"alpha": {"type": "string"}, "beta": {"type": "array", "items": {"type": "integer"}}, "gamma": {"type": "string"}, "TYPE_NAME": {"type": "string"}}, "required": ["alpha", "beta", "gamma", "TYPE_NAME"]}}, "required": ["name", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : {"localPart" : "extended", "namespaceURI" : "", "prefix" : "", "key" : "extended", "string" : "extended"}, "value" : {"alpha" : "one", "beta" : [2], "gamma" : "urn:three", "TYPE_NAME" : "Zero.ExtendedType"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "object", "properties": {"localPart": {"type": "string"}, "namespaceURI": {"type": "string"}, "prefix": {"type": "string"}, "key": {"type": "string"}, "string": {"type": "string"}}, "required": ["localPart", "namespaceURI", "prefix", "key", "string"]}, "value": {"type": "object", "properties": {"alpha": {"type": "string"}, "beta": {"type": "array", "items": {"type": "integer"}}, "gamma": {"type": "string"}, "TYPE_NAME": {"type": "string"}}, "required": ["alpha", "beta", "gamma", "TYPE_NAME"]}}, "required": ["name", "value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "kind": {"type": "string"}, "kpi": {"type": "object", "properties": {"aggregation_type": {"type": "string"}}, "required": ["aggregation_type"]}, "long_description": {"type": "string"}, "provider_id": {"type": "string"}, "reported_by": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "title"]}, "short_description": {"type": "string"}}, "required": ["id", "kind", "kpi", "long_description", "provider_id", "reported_by", "short_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "externalUsersKPI", "kind" : "KPI", "kpi" : {"aggregation_type" : "SUM"}, "long_description" : "external users", "provider_id" : "data_henrik", "reported_by" : {"id" : "HLSecScanner", "title" : "IAM Scan"}, "short_description" : "external users"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "kind": {"type": "string"}, "kpi": {"type": "object", "properties": {"aggregation_type": {"type": "string"}}, "required": ["aggregation_type"]}, "long_description": {"type": "string"}, "provider_id": {"type": "string"}, "reported_by": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}}, "required": ["id", "title"]}, "short_description": {"type": "string"}}, "required": ["id", "kind", "kpi", "long_description", "provider_id", "reported_by", "short_description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 107312, "info" : {"name" : "wiki.lyx.org", "description" : "Make more readable", "additionalInfo" : null, "format" : "uso", "category" : "lyx", "createdAt" : "2014-11-14T18:16:50.000Z", "updatedAt" : "2014-11-14T18:18:04.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 179502, "name" : "dmitrykabanov"}}, "stats" : {"installs" : {"total" : 59, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "107312-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"wiki.lyx.org\") {\r\n #wikitext {\r\n font: 18px/27px Georgia, serif;\r\n max-width: 800px;\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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 5144, "cartId" : "ef23d1ff-37b1-49f4-aa1d-ce43adf08e1e", "preferredProducts" : [4608, 1823, 280, 3941, 1768, 3094, 3844], "productReviews" : [{"productId" : 4828, "reviewText" : "My neighbor Georgine has one of these. She works as a fireman and she says it looks colorful.", "reviewDate" : "2019-07-18T17:36:50.4986223+03:00"}, {"productId" : 2468, "reviewText" : "This Sleek works quite well. It professionally improves my soccer by a lot.", "reviewDate" : "2020-04-21T04:35:57.9061917+03:00"}, {"productId" : 3952, "reviewText" : "My neighbor Frona has one of these. She works as a gambler and she says it looks bearded.", "reviewDate" : "2017-02-01T04:23:57.654419+02:00"}, {"productId" : 3613, "reviewText" : "one of my hobbies is antique-shopping. and when i'm antique-shopping this works great.", "reviewDate" : "2017-02-19T01:31:36.495059+02:00"}, {"productId" : 4506, "reviewText" : "My co-worker Reed has one of these. He says it looks microscopic.", "reviewDate" : "2017-07-17T14:35:24.5484707+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "La Tour-d'Aigues", "dpt" : "Vaucluse", "inscrits" : 3387, "abs" : 705, "votants" : 2682, "blancs" : 245, "nuls" : 60, "exp" : 2377, "res" : [{"panneau" : "1", "voix" : 1492}, {"panneau" : "2", "voix" : 885}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Le Fousseret", "circ" : "8\u00e8me circonscription", "dpt" : "Haute-Garonne", "inscrits" : 1340, "abs" : 636, "votants" : 704, "blancs" : 15, "nuls" : 10, "exp" : 679, "res" : [{"nuance" : "REM", "nom" : "M. Michel MONTSARRAT", "voix" : 223}, {"nuance" : "FN", "nom" : "Mme Marie-Christine PAROLIN", "voix" : 104}, {"nuance" : "FI", "nom" : "M. Philippe GIMENEZ", "voix" : 103}, {"nuance" : "SOC", "nom" : "M. Jo\u00ebl AVIRAGNET", "voix" : 96}, {"nuance" : "UDI", "nom" : "M. Jean-Luc RIVI\u00c8RE", "voix" : 72}, {"nuance" : "ECO", "nom" : "Mme Sophie HANDSCHUTTER", "voix" : 31}, {"nuance" : "COM", "nom" : "Mme Corinne MARQUERIE", "voix" : 20}, {"nuance" : "DLF", "nom" : "Mme Laure GONZALEZ", "voix" : 8}, {"nuance" : "REG", "nom" : "M. J\u00e9r\u00f4me PIQUES", "voix" : 7}, {"nuance" : "DIV", "nom" : "M. K\u00e9vin REDONDO", "voix" : 6}, {"nuance" : "EXG", "nom" : "Mme Martine GUIRAUD", "voix" : 6}, {"nuance" : "DIV", "nom" : "M. David LABARRE", "voix" : 2}, {"nuance" : "ECO", "nom" : "Mme V\u00e9ronique MIRALLES", "voix" : 1}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rmse" : [28.115143772484256]} | json_instruct | {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"settings": {"type": "object", "properties": {"arch_windows": {"type": "array", "items": {"type": "string"}}, "arch_linux": {"type": "array", "items": {"type": "string"}}, "xampp_vhost_directory": {"type": "string"}, "xampp_directory_default": {"type": "string"}, "xampp_directory_custom": {"type": "string"}, "xampp_files_directory_default": {"type": "string"}, "xampp_files_directory_custom": {"type": "string"}, "xampp_files_settings": {"type": "string"}, "hosts_ip_address": {"type": "string"}, "conf_file": {"type": "string"}, "xampp_apache_port": {"type": "integer"}}, "required": ["arch_windows", "arch_linux", "xampp_vhost_directory", "xampp_directory_default", "xampp_directory_custom", "xampp_files_directory_default", "xampp_files_directory_custom", "xampp_files_settings", "hosts_ip_address", "conf_file", "xampp_apache_port"]}}, "required": ["settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"settings" : {"arch_windows" : ["System32", "System64"], "arch_linux" : ["System32", "System64"], "xampp_vhost_directory" : "/apache/conf/extra/httpd-vhosts.conf", "xampp_directory_default" : "/xampp/", "xampp_directory_custom" : "", "xampp_files_directory_default" : "/xampp/htdocs/", "xampp_files_directory_custom" : "", "xampp_files_settings" : "C:/xampp/htdocs/hosty.json", "hosts_ip_address" : "127.0.0.1", "conf_file" : "projects.json", "xampp_apache_port" : 80}} | json_instruct | {"type": "object", "properties": {"settings": {"type": "object", "properties": {"arch_windows": {"type": "array", "items": {"type": "string"}}, "arch_linux": {"type": "array", "items": {"type": "string"}}, "xampp_vhost_directory": {"type": "string"}, "xampp_directory_default": {"type": "string"}, "xampp_directory_custom": {"type": "string"}, "xampp_files_directory_default": {"type": "string"}, "xampp_files_directory_custom": {"type": "string"}, "xampp_files_settings": {"type": "string"}, "hosts_ip_address": {"type": "string"}, "conf_file": {"type": "string"}, "xampp_apache_port": {"type": "integer"}}, "required": ["arch_windows", "arch_linux", "xampp_vhost_directory", "xampp_directory_default", "xampp_directory_custom", "xampp_files_directory_default", "xampp_files_directory_custom", "xampp_files_settings", "hosts_ip_address", "conf_file", "xampp_apache_port"]}}, "required": ["settings"], "$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"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "server": {"type": "string"}}, "required": ["start", "build", "server"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-react-intl": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-intl": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-thunk": {"type": "string"}, "style-loader": {"type": "string"}, "svg-react-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "whatwg-fetch": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-plugin-react-intl", "babel-polyfill", "babel-preset-es2015", "babel-preset-react", "css-loader", "less", "less-loader", "prop-types", "react", "react-dom", "react-intl", "react-redux", "redux", "redux-logger", "redux-thunk", "style-loader", "svg-react-loader", "webpack", "webpack-dev-server", "whatwg-fetch"]}}, "required": ["name", "version", "description", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "namepicker", "version" : "1.0.0", "description" : "IBM Verse Custom Name Picker sample", "license" : "SEE LICENSE IN LICENSE", "scripts" : {"start" : "webpack-dev-server --open", "build" : "webpack", "server" : "node server.js"}, "devDependencies" : {"babel-core" : "6.25.0", "babel-loader" : "7.1.1", "babel-plugin-react-intl" : "2.3.1", "babel-polyfill" : "6.26.0", "babel-preset-es2015" : "6.24.1", "babel-preset-react" : "6.24.1", "css-loader" : "0.28.4", "less" : "2.7.2", "less-loader" : "4.0.5", "prop-types" : "15.5.10", "react" : "15.6.1", "react-dom" : "15.6.1", "react-intl" : "2.3.0", "react-redux" : "5.0.5", "redux" : "3.7.2", "redux-logger" : "3.0.6", "redux-thunk" : "2.2.0", "style-loader" : "0.18.2", "svg-react-loader" : "0.4.4", "webpack" : "2.4.1", "webpack-dev-server" : "2.6.1", "whatwg-fetch" : "2.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "server": {"type": "string"}}, "required": ["start", "build", "server"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-react-intl": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-intl": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-thunk": {"type": "string"}, "style-loader": {"type": "string"}, "svg-react-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "whatwg-fetch": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-plugin-react-intl", "babel-polyfill", "babel-preset-es2015", "babel-preset-react", "css-loader", "less", "less-loader", "prop-types", "react", "react-dom", "react-intl", "react-redux", "redux", "redux-logger", "redux-thunk", "style-loader", "svg-react-loader", "webpack", "webpack-dev-server", "whatwg-fetch"]}}, "required": ["name", "version", "description", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"an9.18:1.1": {"type": "string"}, "an9.18:2.1": {"type": "string"}, "an9.18:3.1": {"type": "string"}, "an9.18:4.1": {"type": "string"}}, "required": ["an9.18:1.1", "an9.18:2.1", "an9.18:3.1", "an9.18:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an9.18:1.1" : "bj22.430, csp1ed17.193, csp2ed17.193, ms17A9_156, msdiv18, pts-vp-pli4.389, sc1, vri39.202", "an9.18:2.1" : "ms17A9_157, pts-vp-pli4.390, sc2", "an9.18:3.1" : "dr23.419, ms17A9_158, ndp19.34, sc3", "an9.18:4.1" : "ms17A9_159, sc4"} | json_instruct | {"type": "object", "properties": {"an9.18:1.1": {"type": "string"}, "an9.18:2.1": {"type": "string"}, "an9.18:3.1": {"type": "string"}, "an9.18:4.1": {"type": "string"}}, "required": ["an9.18:1.1", "an9.18:2.1", "an9.18:3.1", "an9.18:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id_8863": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_8863"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_8863" : {"publicdate" : "2014-06-01 08:07:16", "title" : "The Ascent of Mount St. Elias, Alaska"}} | json_instruct | {"type": "object", "properties": {"id_8863": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_8863"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "subClassOf": {"type": "string"}, "derivedFrom": {"type": "string"}, "requiredFields": {"type": "array", "items": {"type": "string"}}, "recommendedFields": {"type": "array", "items": {"type": "string"}}, "fields": {"type": "object", "properties": {"type": {"type": "object", "properties": {"fieldName": {"type": "string"}, "requiredType": {"type": "string"}, "requiredContent": {"type": "string"}}, "required": ["fieldName", "requiredType", "requiredContent"]}, "containedInPlace": {"type": "object", "properties": {"fieldName": {"type": "string"}, "model": {"type": "string"}, "alternativeTypes": {"type": "array", "items": {"type": "string"}}, "example": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldName", "model", "alternativeTypes", "example", "description"]}}, "required": ["type", "containedInPlace"]}}, "required": ["type", "subClassOf", "derivedFrom", "requiredFields", "recommendedFields", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "SportsActivityLocation", "subClassOf" : "#Place", "derivedFrom" : "https://schema.org/SportsActivityLocation", "requiredFields" : ["type"], "recommendedFields" : ["id"], "fields" : {"type" : {"fieldName" : "type", "requiredType" : "https://schema.org/Text", "requiredContent" : "SportsActivityLocation"}, "containedInPlace" : {"fieldName" : "containedInPlace", "model" : "#Place", "alternativeTypes" : ["https://schema.org/url"], "example" : "http://www.example.org/api/locations/8958f9b8-2004-4e90-80ff-50c98a9b121d", "description" : ["While a `url` is not specified as an option in the Modelling Specification, it is necessary to link entities in RPDE."]}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "subClassOf": {"type": "string"}, "derivedFrom": {"type": "string"}, "requiredFields": {"type": "array", "items": {"type": "string"}}, "recommendedFields": {"type": "array", "items": {"type": "string"}}, "fields": {"type": "object", "properties": {"type": {"type": "object", "properties": {"fieldName": {"type": "string"}, "requiredType": {"type": "string"}, "requiredContent": {"type": "string"}}, "required": ["fieldName", "requiredType", "requiredContent"]}, "containedInPlace": {"type": "object", "properties": {"fieldName": {"type": "string"}, "model": {"type": "string"}, "alternativeTypes": {"type": "array", "items": {"type": "string"}}, "example": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}}, "required": ["fieldName", "model", "alternativeTypes", "example", "description"]}}, "required": ["type", "containedInPlace"]}}, "required": ["type", "subClassOf", "derivedFrom", "requiredFields", "recommendedFields", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"candidates": {"type": "array", "items": {"type": "object", "properties": {"formatted_address": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "name": {"type": "string"}, "photos": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "html_attributions": {"type": "array", "items": {"type": "string"}}, "photo_reference": {"type": "string"}, "width": {"type": "integer"}}, "required": ["height", "html_attributions", "photo_reference", "width"]}}, "rating": {"type": "number"}}, "required": ["formatted_address", "geometry", "name", "photos", "rating"]}}, "status": {"type": "string"}}, "required": ["candidates", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"candidates" : [{"formatted_address" : "R. Barata Ribeiro, 544 - Copacabana, Rio de Janeiro - RJ, 22040-002, Brasil", "geometry" : {"location" : {"lat" : -22.9706497, "lng" : -43.1889954}, "viewport" : {"northeast" : {"lat" : -22.96938637010728, "lng" : -43.18755302010727}, "southwest" : {"lat" : -22.97208602989272, "lng" : -43.19025267989272}}}, "name" : "Hotel Atl\u00e2ntico Travel Copacabana", "photos" : [{"height" : 3024, "html_attributions" : ["<a href=\"https://maps.google.com/maps/contrib/102032222699251068749\">Marli Aguiar</a>"], "photo_reference" : "ATtYBwIWKaCwRJHhfr_Yq-WGVb8b4dvp7iBp_yR5u6mL_Uh3dhaqOFXJw70oTqhZxz5736ChDw43QbRLubpwucLMsjSNmGQNBDPBmXA5Mps4Z_avj2FwtLyeQENOsPVQemYayZSX0B9XNKDGaFms8SnBnqj9hWGEIE_1QetK-R1TeMfif2NS", "width" : 4032}], "rating" : 4.1}], "status" : "OK"} | json_instruct | {"type": "object", "properties": {"candidates": {"type": "array", "items": {"type": "object", "properties": {"formatted_address": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "name": {"type": "string"}, "photos": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "html_attributions": {"type": "array", "items": {"type": "string"}}, "photo_reference": {"type": "string"}, "width": {"type": "integer"}}, "required": ["height", "html_attributions", "photo_reference", "width"]}}, "rating": {"type": "number"}}, "required": ["formatted_address", "geometry", "name", "photos", "rating"]}}, "status": {"type": "string"}}, "required": ["candidates", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IPv6.js": {"type": "string"}, "IPv6.min.js": {"type": "string"}, "SecondLevelDomains.js": {"type": "string"}, "SecondLevelDomains.min.js": {"type": "string"}, "URI.fragmentQuery.js": {"type": "string"}, "URI.fragmentQuery.min.js": {"type": "string"}, "URI.fragmentURI.js": {"type": "string"}, "URI.fragmentURI.min.js": {"type": "string"}, "URI.js": {"type": "string"}, "URI.min.js": {"type": "string"}, "URITemplate.js": {"type": "string"}, "URITemplate.min.js": {"type": "string"}, "jquery.URI.js": {"type": "string"}, "jquery.URI.min.js": {"type": "string"}, "punycode.js": {"type": "string"}, "punycode.min.js": {"type": "string"}}, "required": ["IPv6.js", "IPv6.min.js", "SecondLevelDomains.js", "SecondLevelDomains.min.js", "URI.fragmentQuery.js", "URI.fragmentQuery.min.js", "URI.fragmentURI.js", "URI.fragmentURI.min.js", "URI.js", "URI.min.js", "URITemplate.js", "URITemplate.min.js", "jquery.URI.js", "jquery.URI.min.js", "punycode.js", "punycode.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IPv6.js" : "sha512-2HoZN3kMNu7AX8ZyjOkK7puUf4t8GdhFc2AU4QzuygaApug+i+W4tqggqHWRkJ7haBBP6QZJ3qn4fZXkAmT2JQ==", "IPv6.min.js" : "sha512-zmrHHFaogbDCxp3+GcTsnygX8iklyEbcOCif5+BxZuN6Ceys3sAAHLXc/TiMWGkIO1g3vtZTW2RGWE+K4JJQZw==", "SecondLevelDomains.js" : "sha512-pVKSANBDzFVvuwu7ZIZF6ROipEY07b3SRFT7R/ezMMpqmnIrq9vzkLaci0EJYtG3ZvlFC0ydYuTzlzzIQ7jXkA==", "SecondLevelDomains.min.js" : "sha512-Yc6vsIpbCkaZd7lZQhjtTd/yxdSokFjb0sAm4n0uxsmXDfCy3Ogo71H9R+0OUdRvyGlps/pCiQW61ohfbxPTiw==", "URI.fragmentQuery.js" : "sha512-U0rGgk31Z5jGcgtHN4E3AyZavRkmTRF6zgTXbO3BsgbeOvJotAOavafXM+8cQcxK4fKgHKQ7OvPo24f8kiXAZw==", "URI.fragmentQuery.min.js" : "sha512-bb6w45SVlhwuhLs8Krg/Ts1uZ9moMfRyiIJeTiJc0t3bvqQtkzbfvRyA+av+vkwTYkfh6Mu14DIWmfah03HcNw==", "URI.fragmentURI.js" : "sha512-n7TnufvONZdfhQEA/6gXIh6m9VyBJyButXJ9h3uI3YGo3TSqksROokI4KVBq1vRW4kz04VWiRFODd+Fqzgzu7A==", "URI.fragmentURI.min.js" : "sha512-koycv4DuwPNiG/ZIPdZk20PsGxW/epEA1hMqgXnOGlggaWUXoB/UclKjfVWVcWEXVocU78eL7Yr/nBqGPTRdQA==", "URI.js" : "sha512-7M+LIRDqfQrMzBDRo4LMDoO4+0/YfSOTpFFT89LHMgS/yJKM1XgLdjQJTRYKVbFKl4gK+ykr4tbLmQutPGbiYA==", "URI.min.js" : "sha512-5s4LUgjLtFJe7B4DxLR4WjzjduQrnf8RwO93HYbUVPE3hrw43SWSbYwpAIgbrcrFn/+MsD2oj331lV153AmIQw==", "URITemplate.js" : "sha512-iOAb8P3O5SIWTbNVNYIsKKyqlz3/2eZYv6sCO2j2943sTBeORaKz3ChwQOq6rM/gFUpwQQ8jscTFIiuDcEkybg==", "URITemplate.min.js" : "sha512-HjZBufJve84WQ8khRa7thu5MzE2v4AKogtUfOcv0u1BoMKf4MxHLKKWBi7+c3uOdox1zasIgdHyX+PMGd6qMLw==", "jquery.URI.js" : "sha512-59oGAyAJlZMwa2SrqmFZWW8lKSMu3fYjipy3UCrI0/JE8DMVCvtGU2GcM1OjuExD4BI6YHgZAn0B8ToeSOid8w==", "jquery.URI.min.js" : "sha512-prJlnOlA81nieJ1RGxWlETXy4b8Kbgv/KeiZGT+Algxtq8KiilYPpo/eVolDLDlwVEMLNvXxqtZ00LxDonikiw==", "punycode.js" : "sha512-+ULPbRzFNeGYzpUfGYSKykr5PWj+FbKTcERP9h/cn3f2/40ZMUIf2FGDCIhKDkJQ/rrICWXp5TV/Pok2qh9ntw==", "punycode.min.js" : "sha512-OCbhGnLmUcSzvtScl1FPub6BkvDvLHLp24DQvOI+rrk/ts1ilG8L8isDrA+pj0n2JssgkJONxSla4f35ZOf3hA=="} | json_instruct | {"type": "object", "properties": {"IPv6.js": {"type": "string"}, "IPv6.min.js": {"type": "string"}, "SecondLevelDomains.js": {"type": "string"}, "SecondLevelDomains.min.js": {"type": "string"}, "URI.fragmentQuery.js": {"type": "string"}, "URI.fragmentQuery.min.js": {"type": "string"}, "URI.fragmentURI.js": {"type": "string"}, "URI.fragmentURI.min.js": {"type": "string"}, "URI.js": {"type": "string"}, "URI.min.js": {"type": "string"}, "URITemplate.js": {"type": "string"}, "URITemplate.min.js": {"type": "string"}, "jquery.URI.js": {"type": "string"}, "jquery.URI.min.js": {"type": "string"}, "punycode.js": {"type": "string"}, "punycode.min.js": {"type": "string"}}, "required": ["IPv6.js", "IPv6.min.js", "SecondLevelDomains.js", "SecondLevelDomains.min.js", "URI.fragmentQuery.js", "URI.fragmentQuery.min.js", "URI.fragmentURI.js", "URI.fragmentURI.min.js", "URI.js", "URI.min.js", "URITemplate.js", "URITemplate.min.js", "jquery.URI.js", "jquery.URI.min.js", "punycode.js", "punycode.min.js"], "$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.