input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}}, "required": ["clean", "build"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["rimraf", "typescript"]}}, "required": ["name", "version", "module", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@pwabuilder/site-analytics", "version" : "0.0.1", "module" : "./dist/index.js", "main" : "./dist/index.js", "scripts" : {"clean" : "rimraf build/ && rimraf dist/", "build" : "npm run clean && tsc"}, "dependencies" : {}, "devDependencies" : {"rimraf" : "^3.0.2", "typescript" : "^4.6.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}}, "required": ["clean", "build"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["rimraf", "typescript"]}}, "required": ["name", "version", "module", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["blockstack", "uport-persona"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "contributors": {"type": "array", "items": {}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-router": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["babel-polyfill", "react", "react-dom", "react-redux", "react-router", "redux", "redux-logger", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"less": {"type": "string"}, "less-loader": {"type": "string"}, "react-scripts": {"type": "string"}, "redux-devtools": {"type": "string"}}, "required": ["less", "less-loader", "react-scripts", "redux-devtools"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}}, "required": ["name", "description", "version", "author", "contributors", "licenses", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "TrainService", "description" : "Departure board for london waterloo station, using trainline API", "version" : "0.0.1", "author" : {"name" : "Abdul Thajudeen", "email" : "abdulbasithuk@gmail.com"}, "contributors" : [], "licenses" : [{"type" : "MIT", "url" : "http://www.opensource.org/licenses/mit-license.php"}], "dependencies" : {"babel-polyfill" : "^6.16.0", "react" : "^15.3.1", "react-dom" : "^15.3.1", "react-redux" : "^4.4.5", "react-router" : "^2.8.1", "redux" : "^3.6.0", "redux-logger" : "^2.0.3", "redux-thunk" : "^1.0.0"}, "devDependencies" : {"less" : "^2.7.1", "less-loader" : "^2.2.3", "react-scripts" : "^0.4.0", "redux-devtools" : "^3.3.1"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "contributors": {"type": "array", "items": {}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-router": {"type": "string"}, "redux": {"type": "string"}, "redux-logger": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["babel-polyfill", "react", "react-dom", "react-redux", "react-router", "redux", "redux-logger", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"less": {"type": "string"}, "less-loader": {"type": "string"}, "react-scripts": {"type": "string"}, "redux-devtools": {"type": "string"}}, "required": ["less", "less-loader", "react-scripts", "redux-devtools"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}}, "required": ["name", "description", "version", "author", "contributors", "licenses", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "description": {"type": "string"}, "documentation": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "institution": {"type": "string"}}, "required": ["name", "email", "institution"]}}, "permissions": {"type": "array", "items": {"type": "string"}}, "enable-every-page-hooks-on-system-pages": {"type": "boolean"}, "links": {"type": "object", "properties": {"project": {"type": "array", "items": {}}, "control-center": {"type": "array", "items": {}}}, "required": ["project", "control-center"]}, "no-auth-pages": {"type": "array", "items": {}}, "project-settings": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["key", "name", "required", "type"]}}, "system-settings": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["key", "name", "required", "type"]}}, "compatibility": {"type": "object", "properties": {"php-version-min": {"type": "string"}, "php-version-max": {"type": "string"}, "redcap-version-min": {"type": "string"}, "redcap-version-max": {"type": "string"}}, "required": ["php-version-min", "php-version-max", "redcap-version-min", "redcap-version-max"]}}, "required": ["name", "namespace", "description", "documentation", "authors", "permissions", "enable-every-page-hooks-on-system-pages", "links", "no-auth-pages", "project-settings", "system-settings", "compatibility"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Realtime Randomization", "namespace" : "Stanford\\RealtimeRandomization", "description" : "This module allows you to auto-randomize after saving any form without user interaction. It can be used, for example, to randomize someone upon completion of an eligiblity survey. It supports logic to control randomization, strata, and Data Access Groups.", "documentation" : "README.md", "authors" : [{"name" : "Andrew Martin", "email" : "andy123@stanford.edu", "institution" : "Stanford University"}], "permissions" : ["redcap_save_record"], "enable-every-page-hooks-on-system-pages" : false, "links" : {"project" : [], "control-center" : []}, "no-auth-pages" : [], "project-settings" : [{"key" : "trigger-form", "name" : "<b>Trigger Form</b><br>If specified, randomization will only happen when this form is saved", "required" : false, "type" : "form-list"}, {"key" : "trigger-event", "name" : "<b>Trigger Event</b><br>If specified, randomization will only happen when a save occurs in this event", "required" : false, "type" : "event-list"}, {"key" : "trigger-logic", "name" : "<b>Trigger Logic</b><br>If specified, randomization will only happen when this logic is true", "required" : false, "type" : "text"}, {"key" : "enable-project-debug-logging", "name" : "<b>Enable Debug Logging</b><br><i>(optional)</i> Requires installation and configuration of emLogger", "required" : false, "type" : "checkbox"}], "system-settings" : [{"key" : "enable-system-debug-logging", "name" : "<b>Enable Debug Logging (system-wide)</b><i>(optional)</i> Requires installation and configuration of emLogger", "required" : false, "type" : "checkbox"}], "compatibility" : {"php-version-min" : "", "php-version-max" : "", "redcap-version-min" : "", "redcap-version-max" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "description": {"type": "string"}, "documentation": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "institution": {"type": "string"}}, "required": ["name", "email", "institution"]}}, "permissions": {"type": "array", "items": {"type": "string"}}, "enable-every-page-hooks-on-system-pages": {"type": "boolean"}, "links": {"type": "object", "properties": {"project": {"type": "array", "items": {}}, "control-center": {"type": "array", "items": {}}}, "required": ["project", "control-center"]}, "no-auth-pages": {"type": "array", "items": {}}, "project-settings": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["key", "name", "required", "type"]}}, "system-settings": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["key", "name", "required", "type"]}}, "compatibility": {"type": "object", "properties": {"php-version-min": {"type": "string"}, "php-version-max": {"type": "string"}, "redcap-version-min": {"type": "string"}, "redcap-version-max": {"type": "string"}}, "required": ["php-version-min", "php-version-max", "redcap-version-min", "redcap-version-max"]}}, "required": ["name", "namespace", "description", "documentation", "authors", "permissions", "enable-every-page-hooks-on-system-pages", "links", "no-auth-pages", "project-settings", "system-settings", "compatibility"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "sortnum": {"type": "integer"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "sortnum", "description", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Tools of the Wilds", "sortnum" : 5, "description" : "There are many magical tools, weapons, armor and other utility items that a mage of the wilds can craft or discover.$(br2)Some of them can be crafted immediately, whilst others will require a deeper delving into $(cat:herbs)herbs$(), $(cat:spells)spells$() & $(cat:rituals)rituals$() to unlock necessary ingredients.", "icon" : "roots:mortar"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "sortnum": {"type": "integer"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "sortnum", "description", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"line-length": {"type": "object", "properties": {"line_length": {"type": "integer"}}, "required": ["line_length"]}, "no-inline-html": {"type": "object", "properties": {"allowed_elements": {"type": "array", "items": {"type": "string"}}}, "required": ["allowed_elements"]}, "no-trailing-punctuation": {"type": "object", "properties": {"punctuation": {"type": "string"}}, "required": ["punctuation"]}}, "required": ["line-length", "no-inline-html", "no-trailing-punctuation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"line-length" : {"line_length" : -1}, "no-inline-html" : {"allowed_elements" : ["sb-props"]}, "no-trailing-punctuation" : {"punctuation" : ".,;:!\u3002\uff0c\uff1b\uff1a\uff01"}}
json_instruct
{"type": "object", "properties": {"line-length": {"type": "object", "properties": {"line_length": {"type": "integer"}}, "required": ["line_length"]}, "no-inline-html": {"type": "object", "properties": {"allowed_elements": {"type": "array", "items": {"type": "string"}}}, "required": ["allowed_elements"]}, "no-trailing-punctuation": {"type": "object", "properties": {"punctuation": {"type": "string"}}, "required": ["punctuation"]}}, "required": ["line-length", "no-inline-html", "no-trailing-punctuation"], "$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": "string"}, "synopsis": {"type": "string"}, "category": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "licenseFile": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "author", "synopsis", "category", "license", "licenseFile", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "functors", "version" : "0.0.1", "author" : "fwcd", "synopsis" : "Contravariant functors, bifunctors, profunctors and more", "category" : ["Data"], "license" : "BSD-3-Clause", "licenseFile" : "LICENSE", "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "synopsis": {"type": "string"}, "category": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "licenseFile": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "author", "synopsis", "category", "license", "licenseFile", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"mania": {"type": "array", "items": {"type": "object", "properties": {"keys": {"type": "integer"}, "noteSize": {"type": "number"}, "noteSpacing": {"type": "integer"}, "xOffset": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "directions": {"type": "array", "items": {"type": "string"}}, "singAnimations": {"type": "array", "items": {"type": "string"}}}, "required": ["keys", "noteSize", "noteSpacing", "xOffset", "colors", "directions", "singAnimations"]}}, "scale": {"type": "integer"}, "noteScale": {"type": "integer"}, "sustainYScale": {"type": "integer"}, "countdownScale": {"type": "integer"}, "ratingScale": {"type": "number"}, "comboNumScale": {"type": "number"}, "sustainXOffset": {"type": "integer"}, "downscrollTailYOffset": {"type": "integer"}, "noAntialiasing": {"type": "boolean"}}, "required": ["mania", "scale", "noteScale", "sustainYScale", "countdownScale", "ratingScale", "comboNumScale", "sustainXOffset", "downscrollTailYOffset", "noAntialiasing"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mania" : [{"keys" : 4, "noteSize" : 0.7, "noteSpacing" : 112, "xOffset" : 54, "colors" : ["left", "down", "up", "right"], "directions" : ["LEFT", "DOWN", "UP", "RIGHT"], "singAnimations" : ["singLEFT", "singDOWN", "singUP", "singRIGHT"]}], "scale" : 1, "noteScale" : 1, "sustainYScale" : 1, "countdownScale" : 1, "ratingScale" : 0.7, "comboNumScale" : 0.5, "sustainXOffset" : 0, "downscrollTailYOffset" : -19, "noAntialiasing" : false}
json_instruct
{"type": "object", "properties": {"mania": {"type": "array", "items": {"type": "object", "properties": {"keys": {"type": "integer"}, "noteSize": {"type": "number"}, "noteSpacing": {"type": "integer"}, "xOffset": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "directions": {"type": "array", "items": {"type": "string"}}, "singAnimations": {"type": "array", "items": {"type": "string"}}}, "required": ["keys", "noteSize", "noteSpacing", "xOffset", "colors", "directions", "singAnimations"]}}, "scale": {"type": "integer"}, "noteScale": {"type": "integer"}, "sustainYScale": {"type": "integer"}, "countdownScale": {"type": "integer"}, "ratingScale": {"type": "number"}, "comboNumScale": {"type": "number"}, "sustainXOffset": {"type": "integer"}, "downscrollTailYOffset": {"type": "integer"}, "noAntialiasing": {"type": "boolean"}}, "required": ["mania", "scale", "noteScale", "sustainYScale", "countdownScale", "ratingScale", "comboNumScale", "sustainXOffset", "downscrollTailYOffset", "noAntialiasing"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"lab": {"type": "boolean"}, "su": {"type": "boolean"}}, "required": ["lab", "su"]}, "courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["attributes", "courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"attributes" : {"lab" : true, "su" : true}, "courseCode" : "ID2116", "courseCredit" : "4", "description" : "This module introduces the elements of computational thinking and its application in Industrial Design. Students will acquire skills and knowledge of computational problem solving, including formulating a problem, designing a solution, and prototyping the solution in the use of computational tools, logic and methods such as the Arduino Integrated Development Environment. Students learn through a hands-on approach to decompose complex problems into smaller components, solve the smaller components using elemental algorithms, and combine the solutions to solve the task at hand. They will learn the concepts of abstraction, how to encapsulate complex data and behavior into objects through object-oriented programming.", "faculty" : "Design and Environment", "title" : "Computing for Design"}
json_instruct
{"type": "object", "properties": {"attributes": {"type": "object", "properties": {"lab": {"type": "boolean"}, "su": {"type": "boolean"}}, "required": ["lab", "su"]}, "courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["attributes", "courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"db": {"type": "object", "properties": {"url": {"type": "string"}, "driver": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["url", "driver", "user", "password"]}, "aes": {"type": "object", "properties": {"method": {"type": "string"}, "key": {"type": "string"}, "iv": {"type": "string"}}, "required": ["method", "key", "iv"]}, "account": {"type": "object", "properties": {"filename": {"type": "string"}, "password": {"type": "string"}, "private_key": {"type": "string"}}, "required": ["filename", "password", "private_key"]}, "network": {"type": "object", "properties": {"type": {"type": "string"}, "node": {"type": "string"}, "arguments": {"type": "string"}}, "required": ["type", "node", "arguments"]}, "bot": {"type": "object", "properties": {"token": {"type": "string"}, "chatId": {"type": "integer"}, "username": {"type": "string"}}, "required": ["token", "chatId", "username"]}, "exchangeRate": {"type": "number"}, "ethThreshold": {"type": "integer"}, "timeout": {"type": "integer"}}, "required": ["db", "aes", "account", "network", "bot", "exchangeRate", "ethThreshold", "timeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"db" : {"url" : "jdbc:mysql://127.0.0.1:3306/default", "driver" : "com.mysql.cj.jdbc.Driver", "user" : "default", "password" : "@1234"}, "aes" : {"method" : "AES/CBC/PKCS5Padding", "key" : "AES_KEY", "iv" : "AES_IV"}, "account" : {"filename" : "account.json", "password" : "@1234", "private_key" : "ACCOUNT_PRIVATE_KEY"}, "network" : {"type" : "mainnet", "node" : "infura", "arguments" : ""}, "bot" : {"token" : "TOKEN", "chatId" : 12345, "username" : "Bot"}, "exchangeRate" : 9e-07, "ethThreshold" : 0, "timeout" : 60}
json_instruct
{"type": "object", "properties": {"db": {"type": "object", "properties": {"url": {"type": "string"}, "driver": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["url", "driver", "user", "password"]}, "aes": {"type": "object", "properties": {"method": {"type": "string"}, "key": {"type": "string"}, "iv": {"type": "string"}}, "required": ["method", "key", "iv"]}, "account": {"type": "object", "properties": {"filename": {"type": "string"}, "password": {"type": "string"}, "private_key": {"type": "string"}}, "required": ["filename", "password", "private_key"]}, "network": {"type": "object", "properties": {"type": {"type": "string"}, "node": {"type": "string"}, "arguments": {"type": "string"}}, "required": ["type", "node", "arguments"]}, "bot": {"type": "object", "properties": {"token": {"type": "string"}, "chatId": {"type": "integer"}, "username": {"type": "string"}}, "required": ["token", "chatId", "username"]}, "exchangeRate": {"type": "number"}, "ethThreshold": {"type": "integer"}, "timeout": {"type": "integer"}}, "required": ["db", "aes", "account", "network", "bot", "exchangeRate", "ethThreshold", "timeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"client.min.js": {"type": "string"}}, "required": ["client.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"client.min.js" : "sha512-PERmn+3/MVHr9HQ9z8s8v4rof/bfBwUSE41JF6n6Zy57qsYoNhQuFVf3f21Be4YeZ8U1XhsYtUVua3zacFITNA=="}
json_instruct
{"type": "object", "properties": {"client.min.js": {"type": "string"}}, "required": ["client.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1920, "sex" : "F", "n" : 5, "prop" : 4.02e-06}, {"year" : 1922, "sex" : "F", "n" : 5, "prop" : 4.01e-06}, {"year" : 1924, "sex" : "F", "n" : 5, "prop" : 3.86e-06}, {"year" : 1927, "sex" : "F", "n" : 6, "prop" : 4.85e-06}, {"year" : 1941, "sex" : "F", "n" : 5, "prop" : 4.01e-06}, {"year" : 2016, "sex" : "F", "n" : 5, "prop" : 2.59e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "string"}, "startOffset": {"type": "integer"}, "endOffset": {"type": "integer"}, "string": {"type": "string"}, "lineNumber": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["ID", "startOffset", "endOffset", "string", "lineNumber", "column"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"ID" : "Whitespace", "startOffset" : 0, "endOffset" : 3, "string" : " ", "lineNumber" : 1, "column" : 1}, {"ID" : "Text", "startOffset" : 4, "endOffset" : 4, "string" : "a", "lineNumber" : 1, "column" : 5}, {"ID" : "Whitespace", "startOffset" : 5, "endOffset" : 5, "string" : "\t", "lineNumber" : 1, "column" : 6}, {"ID" : "Text", "startOffset" : 6, "endOffset" : 6, "string" : "a", "lineNumber" : 1, "column" : 7}, {"ID" : "Whitespace", "startOffset" : 7, "endOffset" : 7, "string" : "\n", "lineNumber" : 1, "column" : 8}, {"ID" : "Whitespace", "startOffset" : 8, "endOffset" : 11, "string" : " ", "lineNumber" : 2, "column" : 1}, {"ID" : "Text", "startOffset" : 12, "endOffset" : 12, "string" : "\u1f50", "lineNumber" : 2, "column" : 5}, {"ID" : "Whitespace", "startOffset" : 13, "endOffset" : 13, "string" : "\t", "lineNumber" : 2, "column" : 6}, {"ID" : "Text", "startOffset" : 14, "endOffset" : 14, "string" : "a", "lineNumber" : 2, "column" : 7}, {"ID" : "Whitespace", "startOffset" : 15, "endOffset" : 15, "string" : "\n", "lineNumber" : 2, "column" : 8}, {"ID" : "EOF", "startOffset" : 16, "endOffset" : 16, "string" : "", "lineNumber" : 2, "column" : 8}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "string"}, "startOffset": {"type": "integer"}, "endOffset": {"type": "integer"}, "string": {"type": "string"}, "lineNumber": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["ID", "startOffset", "endOffset", "string", "lineNumber", "column"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tjphippen\\Laddr\\": {"type": "string"}}, "required": ["Tjphippen\\Laddr\\"]}}, "required": ["psr-4"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}, "branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["laravel", "branch-alias"]}}, "required": ["name", "type", "description", "homepage", "license", "authors", "require", "autoload", "repositories", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tjphippen/laddr", "type" : "library", "description" : "A Laravel 8 package for uniform API resources.", "homepage" : "https://github.com/tjphippen/laddr", "license" : "proprietary", "authors" : [{"name" : "TJ Phippen", "email" : "tj@tjphippen.com"}], "require" : {"php" : "^8.0", "illuminate/support" : "^8.0"}, "autoload" : {"psr-4" : {"Tjphippen\\Laddr\\" : "src"}}, "repositories" : [{"type" : "vcs", "url" : "https://github.com/tjphippen/laddr"}], "extra" : {"laravel" : {"providers" : ["Tjphippen\\Laddr\\Providers\\LaddrServiceProvider"]}, "branch-alias" : {"dev-master" : "0.1-dev"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tjphippen\\Laddr\\": {"type": "string"}}, "required": ["Tjphippen\\Laddr\\"]}}, "required": ["psr-4"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}, "branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["laravel", "branch-alias"]}}, "required": ["name", "type", "description", "homepage", "license", "authors", "require", "autoload", "repositories", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "inadhesion", "definition" : "Want of adhesion."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : ["\u027600", "\u027a-0", "\u027fa0", "\u028101", "\u0294-1", "\u02a8a1", "\u02bb02", "\u02be-2", "\u02c1a2", "\u038603", "\u038804", "\u0389-4", "\u038aa4", "\u038c05", "\u038e06", "\u038e-6", "\u038fa6", "\u039107", "\u0399-7", "\u03a1a7", "\u03a308", "\u03a9-8", "\u03afa8", "\u03b109", "\u03bf-9", "\u03cea9"]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"editor.fontLigatures": {"type": "boolean"}, "editor.renderWhitespace": {"type": "string"}, "editor.tabSize": {"type": "integer"}, "editor.roundedSelection": {"type": "boolean"}, "editor.colorDecorators": {"type": "boolean"}, "editor.smoothScrolling": {"type": "boolean"}, "editor.snippetSuggestions": {"type": "string"}, "editor.trimAutoWhitespace": {"type": "boolean"}, "diffEditor.renderSideBySide": {"type": "boolean"}, "editor.lightbulb.enabled": {"type": "boolean"}, "editor.acceptSuggestionOnEnter": {"type": "string"}}, "required": ["editor.fontLigatures", "editor.renderWhitespace", "editor.tabSize", "editor.roundedSelection", "editor.colorDecorators", "editor.smoothScrolling", "editor.snippetSuggestions", "editor.trimAutoWhitespace", "diffEditor.renderSideBySide", "editor.lightbulb.enabled", "editor.acceptSuggestionOnEnter"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"editor.fontLigatures" : true, "editor.renderWhitespace" : "all", "editor.tabSize" : 2, "editor.roundedSelection" : true, "editor.colorDecorators" : true, "editor.smoothScrolling" : true, "editor.snippetSuggestions" : "bottom", "editor.trimAutoWhitespace" : true, "diffEditor.renderSideBySide" : true, "editor.lightbulb.enabled" : true, "editor.acceptSuggestionOnEnter" : "on"}
json_instruct
{"type": "object", "properties": {"editor.fontLigatures": {"type": "boolean"}, "editor.renderWhitespace": {"type": "string"}, "editor.tabSize": {"type": "integer"}, "editor.roundedSelection": {"type": "boolean"}, "editor.colorDecorators": {"type": "boolean"}, "editor.smoothScrolling": {"type": "boolean"}, "editor.snippetSuggestions": {"type": "string"}, "editor.trimAutoWhitespace": {"type": "boolean"}, "diffEditor.renderSideBySide": {"type": "boolean"}, "editor.lightbulb.enabled": {"type": "boolean"}, "editor.acceptSuggestionOnEnter": {"type": "string"}}, "required": ["editor.fontLigatures", "editor.renderWhitespace", "editor.tabSize", "editor.roundedSelection", "editor.colorDecorators", "editor.smoothScrolling", "editor.snippetSuggestions", "editor.trimAutoWhitespace", "diffEditor.renderSideBySide", "editor.lightbulb.enabled", "editor.acceptSuggestionOnEnter"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "M42: Wisps of the Orion Nebula", "explanation" : "The Great Nebula in Orion, an immense, nearby starbirth region, is probably the most famous of all astronomical nebulas. Here, glowing gas surrounds hot young stars at the edge of an immense interstellar molecular cloud only 1500 light-years away. In the above deep image, faint wisps and sheets of dust and gas are particularly evident. The Great Nebula in Orion can be found with the unaided eye just below and to the left of the easily identifiable belt of three stars in the popular constellation Orion. In addition to housing a bright open cluster of stars known as the Trapezium, the Orion Nebula contains many stellar nurseries. These nurseries contain hydrogen gas, hot young stars, proplyds, and stellar jets spewing material at high speeds. Also known as M42, the Orion Nebula spans about 40 light years and is located in the same spiral arm of our Galaxy as the Sun.", "date" : "2006-11-20", "hdurl" : "https://apod.nasa.gov/apod/image/0611/m42_christensen_big.jpg", "service_version" : "v1", "copyright" : "Jon Christensen", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/0611/m42_christensen.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanation", "date", "hdurl", "service_version", "copyright", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"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", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$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" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Claim- Inpatient: Primary diagnosis", "COUNT_VALUE" : 20}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [16, 20], "P10_VALUE" : [20, 24], "P25_VALUE" : [23, 36], "MEDIAN_VALUE" : [55, 44], "P75_VALUE" : [77, 51], "P90_VALUE" : [86, 58], "MAX_VALUE" : [89, 65]}}
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"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"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", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$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"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "authors", "description", "main", "license", "homepage", "private", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "EarthQuake", "authors" : ["John Waweru <wambugu.john.waweru@outlook.com>"], "description" : "a real time earthquake analyser", "main" : "index.html", "license" : "MIT", "homepage" : "", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "authors", "description", "main", "license", "homepage", "private", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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" : 37835, "cartId" : "66a1b0fe-4502-4eb6-88cc-be541a77c2cb", "preferredProducts" : [], "productReviews" : [{"productId" : 521, "reviewText" : "I tried to pinch it but got peanut all over it.", "reviewDate" : "2018-12-09T08:19:40.5100938+02:00"}, {"productId" : 2661, "reviewText" : "My demon loves to play with it.", "reviewDate" : "2020-01-30T22:01:44.7928634+02:00"}, {"productId" : 4795, "reviewText" : "I saw one of these in Grenada and I bought one.", "reviewDate" : "2016-12-08T08:38:15.7384202+02:00"}, {"productId" : 4071, "reviewText" : "I saw one of these in New Zealand and I bought one.", "reviewDate" : "2019-12-04T01:02:19.6466398+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "string"}, "CommentCount": {"type": "integer"}, "Custom": {"type": "null"}, "Description": {"type": "string"}, "LastUpdatedDate": {"type": "string"}, "PlannedForRelease": {"type": "string"}, "ReleaseVisibleToPublic": {"type": "boolean"}, "Priority": {"type": "object", "properties": {"Name": {"type": "string"}, "Severity": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["Name", "Severity", "Id"]}, "ProjectName": {"type": "string"}, "ReportedDate": {"type": "string"}, "Status": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "ReasonClosed": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}, "Summary": {"type": "string"}, "Type": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "VoteCount": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["AffectedComponent", "ClosedComment", "ClosedDate", "CommentCount", "Custom", "Description", "LastUpdatedDate", "PlannedForRelease", "ReleaseVisibleToPublic", "Priority", "ProjectName", "ReportedDate", "Status", "ReasonClosed", "Summary", "Type", "VoteCount", "Id"]}, "FileAttachments": {"type": "array", "items": {}}, "Comments": {"type": "array", "items": {}}}, "required": ["WorkItem", "FileAttachments", "Comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"WorkItem" : {"AffectedComponent" : {"Name" : "PHPExcel_Reader_Excel5", "DisplayName" : "PHPExcel_Reader_Excel5"}, "ClosedComment" : "Fixed in SVN", "ClosedDate" : "2009-03-06T19:54:34.76-08:00", "CommentCount" : 0, "Custom" : null, "Description" : "We have received an example of an Excel file where reading using PHPExcel_Reader_Excel5 fails a whole with the following error:\n\u00a0\nFatal error: Call to a member function getData() on a non-object in /var/www/phpexcel/Classes/PHPExcel/Reader/Excel5.php on line 723\n\u00a0\nIn the particular example, the reason was that there was an EMF (Enhanced Metafile) image in the workbook.\n\u00a0\nEnvironment:\n----\nPHPExcel 1.6.6", "LastUpdatedDate" : "2013-05-16T05:42:50.483-07:00", "PlannedForRelease" : "PHPExcel 1.6.7 Production", "ReleaseVisibleToPublic" : false, "Priority" : {"Name" : "Low", "Severity" : 50, "Id" : 1}, "ProjectName" : "PHPExcel", "ReportedDate" : "2009-03-06T19:45:30.067-08:00", "Status" : {"Name" : "Closed", "Id" : 4}, "ReasonClosed" : {"Name" : "Unassigned"}, "Summary" : "PHPExcel_Reader_Excel5 fails as a whole when workbook contains images other than JPEG/PNG", "Type" : {"Name" : "Issue", "Id" : 3}, "VoteCount" : 1, "Id" : 9453}, "FileAttachments" : [], "Comments" : []}
json_instruct
{"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "string"}, "CommentCount": {"type": "integer"}, "Custom": {"type": "null"}, "Description": {"type": "string"}, "LastUpdatedDate": {"type": "string"}, "PlannedForRelease": {"type": "string"}, "ReleaseVisibleToPublic": {"type": "boolean"}, "Priority": {"type": "object", "properties": {"Name": {"type": "string"}, "Severity": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["Name", "Severity", "Id"]}, "ProjectName": {"type": "string"}, "ReportedDate": {"type": "string"}, "Status": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "ReasonClosed": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}, "Summary": {"type": "string"}, "Type": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "VoteCount": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["AffectedComponent", "ClosedComment", "ClosedDate", "CommentCount", "Custom", "Description", "LastUpdatedDate", "PlannedForRelease", "ReleaseVisibleToPublic", "Priority", "ProjectName", "ReportedDate", "Status", "ReasonClosed", "Summary", "Type", "VoteCount", "Id"]}, "FileAttachments": {"type": "array", "items": {}}, "Comments": {"type": "array", "items": {}}}, "required": ["WorkItem", "FileAttachments", "Comments"], "$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" : "material_elements:block/construction_frames/spruce_construction_triangular_frame"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"body": {"type": "object", "properties": {"proof_provider": {"type": "string"}, "proof_uuid": {"type": "string"}, "result": {"type": "boolean"}}, "required": ["proof_provider", "proof_uuid", "result"]}, "header": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "uuid": {"type": "string"}, "validation_moment": {"type": "string"}}, "required": ["timestamp", "uuid", "validation_moment"]}}, "required": ["body", "header"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : {"proof_provider" : "0dcf048a-9cd5-11e9-8f78-70c94e89b637", "proof_uuid" : "0dcf0b92-9cd5-11e9-8f78-70c94e89b637", "result" : true}, "header" : {"timestamp" : 1562077448, "uuid" : "0dcf0e62-9cd5-11e9-8f78-70c94e89b637", "validation_moment" : "Tue Jul 2 16:24:08 2019"}}
json_instruct
{"type": "object", "properties": {"body": {"type": "object", "properties": {"proof_provider": {"type": "string"}, "proof_uuid": {"type": "string"}, "result": {"type": "boolean"}}, "required": ["proof_provider", "proof_uuid", "result"]}, "header": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "uuid": {"type": "string"}, "validation_moment": {"type": "string"}}, "required": ["timestamp", "uuid", "validation_moment"]}}, "required": ["body", "header"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"courseCode" : "PS4203", "courseCredit" : "5", "description" : "This module examines some major issues of contemporary Chinese politics, political economy, and policy processes as they affect Chinas relations with the rest of the world. It covers both the institutions and practices that shape the making of Chinese foreign policy and the substantive policies that emerge from the policy process.", "faculty" : "Arts and Social Science", "title" : "China's Foreign Policy"}
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"addon": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}, "credentials": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"]}}, "rights_type": {"type": "string"}, "rights_file": {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "string"}, "user": {"type": "string"}, "collection": {"type": "string"}, "permissions": {"type": "string"}}, "required": ["section", "user", "collection", "permissions"]}}, "log_level": {"type": "string"}, "encryption_method": {"type": "string"}}, "required": ["addon", "credentials", "rights_type", "rights_file", "log_level", "encryption_method"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"addon" : {"port" : 5232}, "credentials" : [{"username" : "user1", "password" : "$apr1$e/P2LXL6$ftPekvI2mLieC9D2E3EMp."}], "rights_type" : "from_file", "rights_file" : [{"section" : "root", "user" : ".+", "collection" : "", "permissions" : "R"}, {"section" : "principal", "user" : ".+", "collection" : "{user}", "permissions" : "RW"}, {"section" : "calendars", "user" : ".+", "collection" : "{user}/[^/]+", "permissions" : "rw"}], "log_level" : "info", "encryption_method" : "md5"}
json_instruct
{"type": "object", "properties": {"addon": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}, "credentials": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"]}}, "rights_type": {"type": "string"}, "rights_file": {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "string"}, "user": {"type": "string"}, "collection": {"type": "string"}, "permissions": {"type": "string"}}, "required": ["section", "user", "collection", "permissions"]}}, "log_level": {"type": "string"}, "encryption_method": {"type": "string"}}, "required": ["addon", "credentials", "rights_type", "rights_file", "log_level", "encryption_method"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"month" : "8", "num" : 1562, "link" : "", "year" : "2015", "news" : "", "safe_title" : "I in Team", "transcript" : "[[Two figures chatting]]\nScraggly figure: Remember, there's no \"I\" in \"team.\"\nShorn figure: No, but there's a \"U\" in \"People who apparently don't understand the relationship between orthography and meaning.\"\n\n{{Title text: There's no \"I\" in \"VOWELS\".}}", "alt" : "There's no \"I\" in \"VOWELS\".", "img" : "https://imgs.xkcd.com/comics/i_in_team.png", "title" : "I in Team", "day" : "10"}
json_instruct
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "date": {"type": "string"}, "description": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "version": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}}, "required": ["code", "display"]}}}, "required": ["system", "version", "concept"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "meta", "url", "version", "name", "title", "status", "date", "description", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "ValueSet", "id" : "2.16.840.1.114222.4.11.7929", "meta" : {"source" : "https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=2.16.840.1.114222.4.11.7929"}, "url" : "http://phinvads.cdc.gov/fhir/ValueSet/2.16.840.1.114222.4.11.7929", "version" : "2", "name" : "PHVS_MedicationRoute_STD", "title" : "Medication Route (STD)", "status" : "active", "date" : "2020-01-24T00:03:00+11:00", "description" : "Medication route or delivery method.", "compose" : {"include" : [{"system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/731000124108/version/20200301", "concept" : [{"code" : "255559005", "display" : "Intramuscular"}, {"code" : "264049007", "display" : "Intravaginally"}, {"code" : "255560000", "display" : "Intravenous"}, {"code" : "26643006", "display" : "Orally"}]}, {"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", "version" : "20090501", "concept" : [{"code" : "OTH", "display" : "Other (specify)"}]}]}}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "date": {"type": "string"}, "description": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "version": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}}, "required": ["code", "display"]}}}, "required": ["system", "version", "concept"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "meta", "url", "version", "name", "title", "status", "date", "description", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101878399, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "05cbcd4f2e2634a25214d04e3dc602e4", "wof:id" : 101878399, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.9313, 49.03486, 2.9313, 49.03486], "geometry" : {"coordinates" : [2.9313, 49.03486], "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"edges" : [[6, 16], [22, 16], [4, 33], [31, 16], [18, 16], [11, 26], [17, 16], [19, 25], [30, 16], [18, 16], [32, 12], [16, 12], [16, 9], [16, 14], [16, 9], [19, 27], [30, 16], [16, 17], [12, 16], [16, 23], [16, 13], [17, 16], [30, 21], [31, 16], [16, 5], [17, 16], [29, 1], [14, 16], [16, 31], [16, 13], [0, 16], [16, 15], [8, 16], [13, 7], [23, 16], [16, 22], [2, 16], [3, 24], [10, 16], [16, 10], [16, 15], [16, 17], [19, 16], [16, 23], [18, 16], [28, 10], [16, 15], [16, 0], [20, 16], [15, 16], [15, 16], [0, 16], [14, 16]], "features" : {"0" : "3", "1" : "1", "2" : "1", "3" : "1", "4" : "1", "5" : "1", "6" : "1", "7" : "1", "8" : "1", "9" : "2", "10" : "3", "11" : "1", "12" : "3", "13" : "3", "14" : "3", "15" : "5", "16" : "43", "17" : "5", "18" : "3", "19" : "3", "20" : "1", "21" : "1", "22" : "2", "23" : "3", "24" : "1", "25" : "1", "26" : "1", "27" : "1", "28" : "1", "29" : "1", "30" : "3", "31" : "3", "32" : "1", "33" : "1"}}
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"resolution": {"type": "string"}, "tree": {"type": "object", "properties": {"src": {"type": "string"}, "raw": {"type": "string"}, "typings": {"type": "string"}}, "required": ["src", "raw", "typings"]}}, "required": ["resolution", "tree"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resolution" : "main", "tree" : {"src" : "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/91b137179600e34f4d45a28e7dd8c297c1b825e4/redux-actions/redux-actions.d.ts", "raw" : "registry:dt/redux-actions#0.8.0+20160521154116", "typings" : "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/91b137179600e34f4d45a28e7dd8c297c1b825e4/redux-actions/redux-actions.d.ts"}}
json_instruct
{"type": "object", "properties": {"resolution": {"type": "string"}, "tree": {"type": "object", "properties": {"src": {"type": "string"}, "raw": {"type": "string"}, "typings": {"type": "string"}}, "required": ["src", "raw", "typings"]}}, "required": ["resolution", "tree"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"AttachedPolicies": {"type": "array", "items": {"type": "object", "properties": {"PolicyName": {"type": "string"}, "PolicyArn": {"type": "string"}}, "required": ["PolicyName", "PolicyArn"]}}, "IsTruncated": {"type": "boolean"}, "ResponseMetadata": {"type": "object", "properties": {}, "required": []}}, "required": ["AttachedPolicies", "IsTruncated", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : 200, "data" : {"AttachedPolicies" : [{"PolicyName" : "test-policy", "PolicyArn" : "arn:aws:iam::644160558196:policy/test-policy"}], "IsTruncated" : false, "ResponseMetadata" : {}}}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"AttachedPolicies": {"type": "array", "items": {"type": "object", "properties": {"PolicyName": {"type": "string"}, "PolicyArn": {"type": "string"}}, "required": ["PolicyName", "PolicyArn"]}}, "IsTruncated": {"type": "boolean"}, "ResponseMetadata": {"type": "object", "properties": {}, "required": []}}, "required": ["AttachedPolicies", "IsTruncated", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "object", "properties": {"mode": {"type": "string"}}, "required": ["mode"]}, "bin": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "re": {"type": "string"}}, "required": ["url", "re"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}}, "required": ["homepage", "version", "license", "url", "hash", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"homepage" : "http://www.ezsoftmagic.com/mp3splitter_joiner_pro.htm", "version" : "5.1", "license" : "Propriety", "url" : "http://www.ezaudiorecorder.com/ezsplitter/mp3mate.zip", "hash" : {"mode" : "download"}, "bin" : [["Mp3matePro.exe", "mp3splitterjoiner"]], "checkver" : {"url" : "http://www.ezsoftmagic.com/mp3splitter_joiner_pro.htm", "re" : "MP3 Splitter & Joiner Pro v([\\d.]+)"}, "autoupdate" : {"url" : "http://www.ezaudiorecorder.com/ezsplitter/mp3mate.zip", "hash" : "sourceforge"}}
json_instruct
{"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "object", "properties": {"mode": {"type": "string"}}, "required": ["mode"]}, "bin": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "re": {"type": "string"}}, "required": ["url", "re"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}}, "required": ["homepage", "version", "license", "url", "hash", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"InvoiceNumber": {"type": "string"}, "TotalAmount": {"type": "string"}, "LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemTotal": {"type": "string"}, "ItemDescription": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}}, "required": ["ItemTotal", "ItemDescription", "ItemUnitCount", "ItemUnitValue"]}}, "IssuedDate": {"type": "string"}}, "required": ["InvoiceNumber", "TotalAmount", "LineItem", "IssuedDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"InvoiceNumber" : "93 7", "TotalAmount" : "2,410.83", "LineItem" : [{"ItemTotal" : "4,428.71", "ItemDescription" : "BALANCE FORWARD", "ItemUnitCount" : "", "ItemUnitValue" : ""}, {"ItemTotal" : "1,937.84", "ItemDescription" : "NATIONAL PAYMENT THANK YOU", "ItemUnitCount" : "", "ItemUnitValue" : ""}, {"ItemTotal" : "80.04", "ItemDescription" : "NATIONAL CREDIT ADJUSTMENT", "ItemUnitCount" : "", "ItemUnitValue" : ""}], "IssuedDate" : ""}
json_instruct
{"type": "object", "properties": {"InvoiceNumber": {"type": "string"}, "TotalAmount": {"type": "string"}, "LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemTotal": {"type": "string"}, "ItemDescription": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}}, "required": ["ItemTotal", "ItemDescription", "ItemUnitCount", "ItemUnitValue"]}}, "IssuedDate": {"type": "string"}}, "required": ["InvoiceNumber", "TotalAmount", "LineItem", "IssuedDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-111.96739, 40.649333], [-111.967378, 40.653092], [-111.957869, 40.653099], [-111.957816, 40.638563], [-111.967319, 40.638574], [-111.96739, 40.649333]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 76027}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["rtc-signaller", "rtc-signaller-socket.io"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"start": {"type": "integer"}, "end": {"type": "integer"}, "imagecount": {"type": "integer"}, "images": {"type": "array", "items": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "rowcount": {"type": "integer"}, "colcount": {"type": "integer"}, "rows": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["timestamp", "rowcount", "colcount", "rows"]}}}, "required": ["start", "end", "imagecount", "images"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"start" : 1, "end" : 19, "imagecount" : 8, "images" : [{"timestamp" : 1, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 0], [1, 1]]}, {"timestamp" : 4, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 0], [1, 1]]}, {"timestamp" : 7, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 0], [1, 1]]}, {"timestamp" : 8, "rowcount" : 2, "colcount" : 2, "rows" : [[0, 1], [1, 1]]}, {"timestamp" : 12, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 1], [0, 1]]}, {"timestamp" : 13, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 0], [1, 1]]}, {"timestamp" : 16, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 1], [1, 0]]}, {"timestamp" : 19, "rowcount" : 2, "colcount" : 2, "rows" : [[1, 0], [1, 1]]}]}
json_instruct
{"type": "object", "properties": {"start": {"type": "integer"}, "end": {"type": "integer"}, "imagecount": {"type": "integer"}, "images": {"type": "array", "items": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "rowcount": {"type": "integer"}, "colcount": {"type": "integer"}, "rows": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["timestamp", "rowcount", "colcount", "rows"]}}}, "required": ["start", "end", "imagecount", "images"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "environment": {"type": "string"}, "license": {"type": "string"}, "icon": {"type": "string"}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "issues": {"type": "string"}}, "required": ["homepage", "issues"]}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}, "entrypoints": {"type": "object", "properties": {"client": {"type": "array", "items": {"type": "string"}}}, "required": ["client"]}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}}, "required": ["fabricloader", "fabric"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "accessWidener": {"type": "string"}}, "required": ["schemaVersion", "id", "name", "description", "version", "environment", "license", "icon", "contact", "authors", "contributors", "entrypoints", "depends", "mixins", "accessWidener"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schemaVersion" : 1, "id" : "clientcommands", "name" : "Client Commands", "description" : "Useful client-side commands", "version" : "${version}", "environment" : "client", "license" : "MIT", "icon" : "assets/clientcommands/icon.png", "contact" : {"homepage" : "https://earthcomputer.net/", "issues" : "https://github.com/Earthcomputer/clientcommands/issues"}, "authors" : ["Earthcomputer"], "contributors" : ["cortex"], "entrypoints" : {"client" : ["net.earthcomputer.clientcommands.ClientCommands"]}, "depends" : {"fabricloader" : ">=0.4.0", "fabric" : "*"}, "mixins" : ["mixins.clientcommands.json"], "accessWidener" : "clientcommands.aw"}
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "environment": {"type": "string"}, "license": {"type": "string"}, "icon": {"type": "string"}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "issues": {"type": "string"}}, "required": ["homepage", "issues"]}, "authors": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}, "entrypoints": {"type": "object", "properties": {"client": {"type": "array", "items": {"type": "string"}}}, "required": ["client"]}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}}, "required": ["fabricloader", "fabric"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "accessWidener": {"type": "string"}}, "required": ["schemaVersion", "id", "name", "description", "version", "environment", "license", "icon", "contact", "authors", "contributors", "entrypoints", "depends", "mixins", "accessWidener"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "www.51.15.213.162.xip.io", "min_cert_id" : 962892263, "min_entry_timestamp" : "2018-11-20T22:13:11.414", "not_before" : "2018-11-20T21:13:11", "not_after" : "2019-02-18T21:13:11"}
json_instruct
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}}, "required": ["grunt", "grunt-contrib-uglify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "shery15.github.io", "version" : "1.0.0", "description" : "blog", "main" : "Gruntfile.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/shery15/shery15.github.io.git"}, "keywords" : ["web"], "author" : "shery", "license" : "ISC", "bugs" : {"url" : "https://github.com/shery15/shery15.github.io/issues"}, "homepage" : "https://github.com/shery15/shery15.github.io#readme", "devDependencies" : {"grunt" : "^0.4.5", "grunt-contrib-uglify" : "^0.11.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}}, "required": ["grunt", "grunt-contrib-uglify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "collaborators": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "types": {"type": "string"}, "sideEffects": {"type": "boolean"}}, "required": ["name", "collaborators", "version", "files", "module", "types", "sideEffects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "probability-calc", "collaborators" : ["Alex Swan <alexswan10k@gmail.com>"], "version" : "0.0.1", "files" : ["probability_calc_bg.wasm", "probability_calc.js", "probability_calc.d.ts"], "module" : "probability_calc.js", "types" : "probability_calc.d.ts", "sideEffects" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "collaborators": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "module": {"type": "string"}, "types": {"type": "string"}, "sideEffects": {"type": "boolean"}}, "required": ["name", "collaborators", "version", "files", "module", "types", "sideEffects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"generic-errors": {"type": "string"}, "retort": {"type": "string"}}, "required": ["generic-errors", "retort"]}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}}, "required": ["tape"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "retort-json", "version" : "1.1.0", "description" : "A retort that defaults to JSON responses", "main" : "index.js", "scripts" : {"test" : "node ./tests"}, "repository" : {"type" : "git", "url" : "git+https://github.com/MauriceButler/retort-json.git"}, "author" : "Maurice Butler <maurice.butler@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/MauriceButler/retort-json/issues"}, "homepage" : "https://github.com/MauriceButler/retort-json#readme", "dependencies" : {"generic-errors" : "^2.0.2", "retort" : "^1.0.1"}, "devDependencies" : {"tape" : "^4.5.1"}, "keywords" : ["request", "response", "respond", "JSON", "error", "codes", "routing"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"generic-errors": {"type": "string"}, "retort": {"type": "string"}}, "required": ["generic-errors", "retort"]}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}}, "required": ["tape"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builtin" : {"__set__" : true, "elements" : ["codecs", "functools", "glob", "json", "os", "tempfile"]}, "required" : {"__set__" : true, "elements" : ["filelock", "mypy", "pytest", "setuptools"]}}
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[138.610670969, -34.88382550499995], [138.61071506200005, -34.88461499199997], [138.61997401600001, -34.884149235999985], [138.61997354200003, -34.88428979899993], [138.612391214, -34.89006041199997], [138.60981314600008, -34.89294824299998], [138.60949968400007, -34.89330275899994], [138.60886429200002, -34.89332876999998], [138.60868201200003, -34.89076899899993], [138.608553604, -34.88857434399995], [138.60858097900007, -34.88849499699995], [138.60826813800008, -34.88394762299998], [138.610670969, -34.88382550499995]]]}, "properties" : {"name" : "Collinswood", "state" : "SA"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["cycler"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"cloud": {"type": "boolean"}, "pages": {"type": "array", "items": {"type": "string"}}, "permission": {"type": "object", "properties": {"scope.userLocation": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}}, "required": ["scope.userLocation"]}, "window": {"type": "object", "properties": {"navigationBarBackgroundColor": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "navigationBarTitleText": {"type": "string"}}, "required": ["navigationBarBackgroundColor", "navigationBarTextStyle", "navigationBarTitleText"]}, "tabBar": {"type": "object", "properties": {"color": {"type": "string"}, "selectedColor": {"type": "string"}, "borderStyle": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["color", "selectedColor", "borderStyle", "list"]}, "sitemapLocation": {"type": "string"}}, "required": ["cloud", "pages", "permission", "window", "tabBar", "sitemapLocation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cloud" : true, "pages" : ["pages/index/index", "pages/about/about", "pages/video/video", "pages/search/search", "pages/authorize/authorize", "pages/addimage/addimage", "pages/my/my", "pages/class/class", "pages/weather/weather", "pages/media/media", "pages/collection/collection", "pages/userhelp/userhelp", "pages/details/details", "pages/liuyan/liuyan", "pages/mmore/mmore", "pages/indexpages/indexpages", "pages/logs/logs", "pages/wmore/wmore", "pages/classifymore/classifymore", "pages/result/result", "pages/your/your", "pages/stylemore/stylemore", "pages/searchdetails/searchdetails", "pages/upimage/upimage"], "permission" : {"scope.userLocation" : {"desc" : "\u4f60\u7684\u4f4d\u7f6e\u4fe1\u606f\u5c06\u7528\u4e8e\u5c0f\u7a0b\u5e8f\u4f4d\u7f6e\u63a5\u53e3\u7684\u6548\u679c\u5c55\u793a"}}, "window" : {"navigationBarBackgroundColor" : "#fff", "navigationBarTextStyle" : "black", "navigationBarTitleText" : "\u7a7f\u642dstyle"}, "tabBar" : {"color" : "#494844", "selectedColor" : "#fd6e5e", "borderStyle" : "white", "list" : [{"pagePath" : "pages/index/index", "text" : "\u9996\u9875", "iconPath" : "images/icon/index.png", "selectedIconPath" : "images/icon/index1.png"}, {"pagePath" : "pages/class/class", "text" : "\u5206\u7c7b", "iconPath" : "images/icon/class.png", "selectedIconPath" : "images/icon/class1.png"}, {"pagePath" : "pages/weather/weather", "text" : "\u5929\u6c14", "iconPath" : "images/icon/weather.png", "selectedIconPath" : "images/icon/wether2.png"}, {"pagePath" : "pages/my/my", "text" : "\u6211\u7684", "iconPath" : "images/icon/me.png", "selectedIconPath" : "images/icon/me1.png"}]}, "sitemapLocation" : "sitemap.json"}
json_instruct
{"type": "object", "properties": {"cloud": {"type": "boolean"}, "pages": {"type": "array", "items": {"type": "string"}}, "permission": {"type": "object", "properties": {"scope.userLocation": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}}, "required": ["scope.userLocation"]}, "window": {"type": "object", "properties": {"navigationBarBackgroundColor": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "navigationBarTitleText": {"type": "string"}}, "required": ["navigationBarBackgroundColor", "navigationBarTextStyle", "navigationBarTitleText"]}, "tabBar": {"type": "object", "properties": {"color": {"type": "string"}, "selectedColor": {"type": "string"}, "borderStyle": {"type": "string"}, "list": {"type": "array", "items": {"type": "object", "properties": {"pagePath": {"type": "string"}, "text": {"type": "string"}, "iconPath": {"type": "string"}, "selectedIconPath": {"type": "string"}}, "required": ["pagePath", "text", "iconPath", "selectedIconPath"]}}}, "required": ["color", "selectedColor", "borderStyle", "list"]}, "sitemapLocation": {"type": "string"}}, "required": ["cloud", "pages", "permission", "window", "tabBar", "sitemapLocation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "ins": {"type": "array", "items": {"type": "string"}}, "outs": {"type": "array", "items": {"type": "string"}}, "data_type": {"type": "string"}, "kernel": {"type": "string"}}, "required": ["name", "ins", "outs", "data_type", "kernel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "kernel_case3", "ins" : ["B", "C"], "outs" : ["A"], "data_type" : "int", "kernel" : "A<16, 32>[i, j] = B<16, 32>[i, j] + C<16, 32>[i, j];"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "ins": {"type": "array", "items": {"type": "string"}}, "outs": {"type": "array", "items": {"type": "string"}}, "data_type": {"type": "string"}, "kernel": {"type": "string"}}, "required": ["name", "ins", "outs", "data_type", "kernel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404417535, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "8ab84eb71f3676ba37959667304a9df5", "wof:id" : 404417535, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.85722196829563, 43.04242474572399, 0.90248508087089, 43.06745638160606], "geometry" : {"coordinates" : [[[0.8798757741943, 43.04242474572399], [0.87784289300947, 43.04835872421864], [0.86637780299063, 43.05388123938991], [0.85722196829563, 43.05463508574057], [0.86037183773276, 43.06036597287568], [0.87916749594827, 43.06645108735473], [0.88811236003771, 43.06714874171738], [0.89141443633883, 43.06745638160606], [0.90141610276801, 43.06033712098915], [0.90248508087089, 43.05386207095237], [0.89686496961816, 43.04848915107213], [0.8798757741943, 43.04242474572399]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "excentrical", "definition" : "1. Same as Eccentric, Eccentrical. 2. (Bot.) One-sided; having the normally central portion not in the true center. Gray."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"result": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "number"}, "7": {"type": "number"}, "10": {"type": "string"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "10"]}}}, "required": ["1"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"result" : {"1" : [{"1" : "Dehong Mangshi, China (LUM)", "2" : "airport", "3" : "LUM", "4" : "LUM", "5" : "Luxi", "6" : 98.5322222, "7" : 24.4013889, "10" : "Asia/Shanghai"}, {"1" : "Cagayan de Oro Laguindingan International, Philippines (CGY)", "2" : "airport", "3" : "CGY", "4" : "CGY", "5" : "Cagayan de Oro", "6" : 124.456944, "7" : 8.6125, "10" : "Asia/Manila"}]}}
json_instruct
{"type": "object", "properties": {"result": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "number"}, "7": {"type": "number"}, "10": {"type": "string"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "10"]}}}, "required": ["1"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x6c8b614aa370f8677cc173b3417b66c60ddef3ef", "tool" : "osiris", "start" : 1564610461.8541794, "end" : 1564610464.5018551, "duration" : 2.6476757526397705, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"event": {"type": "object", "properties": {"symbol": {"type": "string"}, "price": {"type": "integer"}, "volume": {"type": "integer"}}, "required": ["symbol", "price", "volume"]}}, "required": ["event"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"event" : {"symbol" : "WSO2", "price" : 0, "volume" : 10000}}
json_instruct
{"type": "object", "properties": {"event": {"type": "object", "properties": {"symbol": {"type": "string"}, "price": {"type": "integer"}, "volume": {"type": "integer"}}, "required": ["symbol", "price", "volume"]}}, "required": ["event"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "LOMBOK BARAT", "originalFilename" : "foto4x6.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 218188, "noUrut" : 1, "nama" : "H. FAEDULLAH, SS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "LOMBOK BARAT", "originalFilename" : "emi h.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 215044, "noUrut" : 2, "nama" : "H. SUHAEMI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "LOMBOK BARAT", "originalFilename" : "fatoni.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 236508, "noUrut" : 3, "nama" : "NURUL FATONI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "LOMBOK BARAT", "originalFilename" : "agus.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 244734, "noUrut" : 4, "nama" : "AGUS HASIBUAN, S.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MATARAM", "originalFilename" : "andr.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 238373, "noUrut" : 5, "nama" : "ANDRIKAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "LOMBOK BARAT", "originalFilename" : "yuni.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 216843, "noUrut" : 6, "nama" : "YUNIATI KHALID", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA MATARAM", "originalFilename" : "maswan.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 246498, "noUrut" : 7, "nama" : "MASWAN, ST", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MATARAM", "originalFilename" : "puspawan.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 245373, "noUrut" : 8, "nama" : "PUSPAWAN ANURI AS, S.Adm.", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[134.125, 44.25], [134.125, 44.333333333333336], [134.25, 44.333333333333336], [134.25, 44.25], [134.125, 44.25]]]}, "properties" : {"code" : 663431, "url" : "http://madefor.github.io/0410/api/v1/663431.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/663431.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"class_name" : "contrast", "bbox" : "23 41 321 402", "used" : true}, {"class_name" : "artifact", "bbox" : "391 213 468 314", "used" : true}, {"class_name" : "artifact", "bbox" : "341 358 431 429", "used" : true}, {"class_name" : "artifact", "bbox" : "417 319 454 371", "used" : false}, {"class_name" : "artifact", "bbox" : "297 471 364 506", "used" : true}, {"class_name" : "saturation", "bbox" : "414 443 483 505", "used" : true}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "card_title": {"type": "string"}, "house": {"type": "string"}, "card_type": {"type": "string"}, "front_image": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "string"}, "amber": {"type": "integer"}, "power": {"type": "null"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}, "errata": {"type": "string"}}, "required": ["id", "card_title", "house", "card_type", "front_image", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly", "errata"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "60eb1272-cf96-4be9-8f12-e9ba2ae2245f", "card_title" : "C\u00e2mara de Incuba\u00e7\u00e3o", "house" : "Mars", "card_type" : "Artifact", "front_image" : "https://cdn.keyforgegame.com/media/card_front/pt/435_199_7CFGRMRP8F8G_pt.png", "card_text" : "Onisciente: Revele uma criatura de Marte da sua m\u00e3o. Se o fizer, arquive-a.", "traits" : "Lugar", "amber" : 0, "power" : null, "armor" : null, "rarity" : "Rare", "flavor_text" : "A maioria dos marcianos no Caldeir\u00e3o\rsa\u00edram desses tanques.", "card_number" : "199", "expansion" : 435, "is_maverick" : false, "is_anomaly" : false, "errata" : "Onisciente: Voc\u00ea pode revelar uma criatura de Marte da sua m\u00e3o. Se o fizer, arquive-a."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "card_title": {"type": "string"}, "house": {"type": "string"}, "card_type": {"type": "string"}, "front_image": {"type": "string"}, "card_text": {"type": "string"}, "traits": {"type": "string"}, "amber": {"type": "integer"}, "power": {"type": "null"}, "armor": {"type": "null"}, "rarity": {"type": "string"}, "flavor_text": {"type": "string"}, "card_number": {"type": "string"}, "expansion": {"type": "integer"}, "is_maverick": {"type": "boolean"}, "is_anomaly": {"type": "boolean"}, "errata": {"type": "string"}}, "required": ["id", "card_title", "house", "card_type", "front_image", "card_text", "traits", "amber", "power", "armor", "rarity", "flavor_text", "card_number", "expansion", "is_maverick", "is_anomaly", "errata"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "discourageable", "definition" : "Capable of being discouraged; easily disheartened. Bp. Hall."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"transaction-code": {"type": "string"}, "message-ind": {"type": "string"}, "tracking-number": {"type": "string"}, "nca-part-number": {"type": "string"}, "nca-serial-number": {"type": "string"}}, "required": ["transaction-code", "message-ind", "tracking-number", "nca-part-number", "nca-serial-number"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"transaction-code" : "GAS", "message-ind" : "A", "tracking-number" : "", "nca-part-number" : "56-7110-9-0010", "nca-serial-number" : "16307"}
json_instruct
{"type": "object", "properties": {"transaction-code": {"type": "string"}, "message-ind": {"type": "string"}, "tracking-number": {"type": "string"}, "nca-part-number": {"type": "string"}, "nca-serial-number": {"type": "string"}}, "required": ["transaction-code", "message-ind", "tracking-number", "nca-part-number", "nca-serial-number"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"add-requesthandler": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "string"}, "invariants": {"type": "object", "properties": {"q": {"type": "string"}}, "required": ["q"]}}, "required": ["name", "class", "invariants"]}}, "required": ["add-requesthandler"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"add-requesthandler" : {"name" : "/admin/ping", "class" : "solr.PingRequestHandler", "invariants" : {"q" : "solrpingquery"}}}
json_instruct
{"type": "object", "properties": {"add-requesthandler": {"type": "object", "properties": {"name": {"type": "string"}, "class": {"type": "string"}, "invariants": {"type": "object", "properties": {"q": {"type": "string"}}, "required": ["q"]}}, "required": ["name", "class", "invariants"]}}, "required": ["add-requesthandler"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "string"}, "cwd": {"type": "string"}, "console": {"type": "string"}, "mainClass": {"type": "string"}, "projectName": {"type": "string"}, "vmArgs": {"type": "string"}}, "required": ["type", "name", "request", "cwd", "console", "mainClass", "projectName", "vmArgs"]}}}, "required": ["configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"configurations" : [{"type" : "java", "name" : "app-sidecar", "request" : "launch", "cwd" : "${workspaceFolder}", "console" : "internalConsole", "mainClass" : "org.athome.app.Initializer", "projectName" : "app-sidecar", "vmArgs" : "-Djavax.net.ssl.trustStore=C:\\Users\\Pratim\\Certs\\truststore-rsa.jks -Djavax.net.ssl.trustStorePassword=localhost -Djavax.net.ssl.keyStore=C:\\Users\\Pratim\\Certs\\keystore-rsa.jks -Djavax.net.ssl.keyStorePassword=localhost"}]}
json_instruct
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "string"}, "cwd": {"type": "string"}, "console": {"type": "string"}, "mainClass": {"type": "string"}, "projectName": {"type": "string"}, "vmArgs": {"type": "string"}}, "required": ["type", "name", "request", "cwd", "console", "mainClass", "projectName", "vmArgs"]}}}, "required": ["configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"WDBG": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "string"}, "exchange": {"type": "string"}, "market": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "city": {"type": "string"}, "zipcode": {"type": "string"}, "website": {"type": "string"}, "market_cap": {"type": "string"}}, "required": ["short_name", "long_name", "summary", "currency", "sector", "industry", "exchange", "market", "country", "state", "city", "zipcode", "website", "market_cap"]}}, "required": ["WDBG"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"WDBG" : {"short_name" : "WOODBROOK GROUP HOLDINGS INC", "long_name" : "Woodbrook Group Holdings Inc.", "summary" : "Woodbrook Group Holdings Inc. provides investment and strategic planning advisory services. It offers services in the areas of portfolio management, mid and long term investment management, alternative investments, lump sum investments, education fee planning, wealth planning, retirement planning, structured product building, and qualifying recognized overseas pension scheme and financial review. The company is headquartered in Limassol, Cyprus.", "currency" : "USD", "sector" : "Financial Services", "industry" : "Capital Markets", "exchange" : "PNK", "market" : "us_market", "country" : "Cyprus", "state" : null, "city" : "Limassol", "zipcode" : "3036", "website" : "http://woodbrookgroup.com", "market_cap" : "Small Cap"}}
json_instruct
{"type": "object", "properties": {"WDBG": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "string"}, "exchange": {"type": "string"}, "market": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "city": {"type": "string"}, "zipcode": {"type": "string"}, "website": {"type": "string"}, "market_cap": {"type": "string"}}, "required": ["short_name", "long_name", "summary", "currency", "sector", "industry", "exchange", "market", "country", "state", "city", "zipcode", "website", "market_cap"]}}, "required": ["WDBG"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"actions": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}}, "app": {"type": "object", "properties": {"bundleIdentifiers": {"type": "array", "items": {"type": "string"}}, "checkInstalled": {"type": "boolean"}, "link": {"type": "string"}, "name": {"type": "string"}}, "required": ["bundleIdentifiers", "checkInstalled", "link", "name"]}, "options": {"type": "array", "items": {"type": "object", "properties": {"identifier": {"type": "string"}, "label": {"type": "string"}, "type": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "valueLabels": {"type": "array", "items": {"type": "string"}}}, "required": ["identifier", "label", "type", "values", "valueLabels"]}}, "icon": {"type": "string"}, "description": {"type": "string"}, "identifier": {"type": "string"}, "name": {"type": "string"}, "popclipVersion": {"type": "integer"}}, "required": ["actions", "app", "options", "icon", "description", "identifier", "name", "popclipVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"actions" : [{"title" : "Tot", "url" : "tot://{popclip option page}/append?text={popclip text}"}], "app" : {"bundleIdentifiers" : ["com.iconfactory.Tot"], "checkInstalled" : true, "link" : "https://tot.rocks", "name" : "Tot"}, "options" : [{"identifier" : "page", "label" : "Tot Page", "type" : "multiple", "values" : ["1", "2", "3", "4", "5", "6", "7"], "valueLabels" : ["Dot 1", "Dot 2", "Dot 3", "Dot 4", "Dot 5", "Dot 6", "Dot 7"]}], "icon" : "tot-icon.svg", "description" : "Append the text to a chosen page in Tot.", "identifier" : "com.pilotmoon.popclip.extension.tot", "name" : "Tot", "popclipVersion" : 3543}
json_instruct
{"type": "object", "properties": {"actions": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}}, "app": {"type": "object", "properties": {"bundleIdentifiers": {"type": "array", "items": {"type": "string"}}, "checkInstalled": {"type": "boolean"}, "link": {"type": "string"}, "name": {"type": "string"}}, "required": ["bundleIdentifiers", "checkInstalled", "link", "name"]}, "options": {"type": "array", "items": {"type": "object", "properties": {"identifier": {"type": "string"}, "label": {"type": "string"}, "type": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "valueLabels": {"type": "array", "items": {"type": "string"}}}, "required": ["identifier", "label", "type", "values", "valueLabels"]}}, "icon": {"type": "string"}, "description": {"type": "string"}, "identifier": {"type": "string"}, "name": {"type": "string"}, "popclipVersion": {"type": "integer"}}, "required": ["actions", "app", "options", "icon", "description", "identifier", "name", "popclipVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "date": {"type": "string"}, "description": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "version": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}}, "required": ["code", "display"]}}}, "required": ["system", "version", "concept"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "meta", "url", "version", "name", "title", "status", "date", "description", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "ValueSet", "id" : "1.3.6.1.4.1.19376.1.7.3.1.1.13.8.41", "meta" : {"source" : "https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=1.3.6.1.4.1.19376.1.7.3.1.1.13.8.41"}, "url" : "http://phinvads.cdc.gov/fhir/ValueSet/1.3.6.1.4.1.19376.1.7.3.1.1.13.8.41", "version" : "1", "name" : "PHVS_BreastfedInfant_NCHS", "title" : "Breastfed Infant (NCHS)", "status" : "active", "date" : "2013-01-28T00:06:00+11:00", "description" : "To Reflect Breastfed Infant at discharge", "compose" : {"include" : [{"system" : "http://snomed.info/sct", "version" : "http://snomed.info/sct/731000124108/version/20200301", "concept" : [{"code" : "169751003", "display" : "Bottle changed to breast (finding)"}, {"code" : "169741004", "display" : "Breast fed (finding)"}, {"code" : "405029003", "display" : "Breastfeeding maintenance (observable entity)"}, {"code" : "406213009", "display" : "Breastfeeding performance (observable entity)"}, {"code" : "169745008", "display" : "Breastfeeding started (finding)"}, {"code" : "169743001", "display" : "Breastfeeding with supplement (finding)"}]}]}}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "date": {"type": "string"}, "description": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "version": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}}, "required": ["code", "display"]}}}, "required": ["system", "version", "concept"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "meta", "url", "version", "name", "title", "status", "date", "description", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "http-https", "version" : "1.0.0", "description" : "A wrapper that chooses http or https for requests", "main" : "http-https.js", "scripts" : {"test" : "node test.js"}, "repository" : {"type" : "git", "url" : "git://github.com/isaacs/http-https"}, "author" : "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", "license" : "ISC", "bugs" : {"url" : "https://github.com/isaacs/http-https/issues"}, "homepage" : "https://github.com/isaacs/http-https"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "created_by_ref": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "external_id": {"type": "string"}}, "required": ["source_name", "url", "external_id"]}}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "kill_chain_phases": {"type": "array", "items": {"type": "object", "properties": {"kill_chain_name": {"type": "string"}, "phase_name": {"type": "string"}}, "required": ["kill_chain_name", "phase_name"]}}, "modified": {"type": "string"}, "created": {"type": "string"}, "x_mitre_old_attack_id": {"type": "string"}, "x_mitre_version": {"type": "string"}, "x_mitre_tactic_type": {"type": "array", "items": {"type": "string"}}, "x_mitre_platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "created_by_ref", "name", "description", "external_references", "object_marking_refs", "type", "kill_chain_phases", "modified", "created", "x_mitre_old_attack_id", "x_mitre_version", "x_mitre_tactic_type", "x_mitre_platforms"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "bundle", "id" : "bundle--2cd61584-4ff0-42f2-b2f8-a5b343e93a8c", "spec_version" : "2.0", "objects" : [{"id" : "attack-pattern--d9e88203-2b5d-405f-a406-2933b1e3d7e4", "created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "name" : "Data Encrypted for Impact", "description" : "An adversary may encrypt files stored on the mobile device to prevent the user from accessing them, for example with the intent of only unlocking access to the files after a ransom is paid. Without escalated privileges, the adversary is generally limited to only encrypting files in external/shared storage locations. This technique has been demonstrated on Android. We are unaware of any demonstrated use on iOS.", "external_references" : [{"source_name" : "mitre-mobile-attack", "url" : "https://attack.mitre.org/techniques/T1471", "external_id" : "T1471"}, {"external_id" : "APP-28", "source_name" : "NIST Mobile Threat Catalogue", "url" : "https://pages.nist.gov/mobile-threat-catalogue/application-threats/APP-28.html"}], "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "type" : "attack-pattern", "kill_chain_phases" : [{"kill_chain_name" : "mitre-mobile-attack", "phase_name" : "impact"}], "modified" : "2019-10-01T13:51:22.001Z", "created" : "2017-10-25T14:48:10.285Z", "x_mitre_old_attack_id" : "MOB-T1074", "x_mitre_version" : "3.0", "x_mitre_tactic_type" : ["Post-Adversary Device Access"], "x_mitre_platforms" : ["Android"]}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "created_by_ref": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "external_id": {"type": "string"}}, "required": ["source_name", "url", "external_id"]}}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "kill_chain_phases": {"type": "array", "items": {"type": "object", "properties": {"kill_chain_name": {"type": "string"}, "phase_name": {"type": "string"}}, "required": ["kill_chain_name", "phase_name"]}}, "modified": {"type": "string"}, "created": {"type": "string"}, "x_mitre_old_attack_id": {"type": "string"}, "x_mitre_version": {"type": "string"}, "x_mitre_tactic_type": {"type": "array", "items": {"type": "string"}}, "x_mitre_platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "created_by_ref", "name", "description", "external_references", "object_marking_refs", "type", "kill_chain_phases", "modified", "created", "x_mitre_old_attack_id", "x_mitre_version", "x_mitre_tactic_type", "x_mitre_platforms"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M3.8 12.18c-.2-.86-.3-1.76-.3-2.68 0-2.84.99-5.45 2.63-7.5L7.2 3.07C5.82 4.85 5 7.08 5 9.5c0 .88.11 1.74.32 2.56l1.62-1.62L8 11.5 4.5 15 1 11.5l1.06-1.06 1.74 1.74zm17.91-1 2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z\"\n}), 'SwipeDownSharp');", "map" : {"version" : 3, "sources" : ["/home/david/Desktop/mydev/Church-Management/node_modules/@mui/icons-material/esm/SwipeDownSharp.js"], "names" : ["createSvgIcon", "jsx", "_jsx", "d"], "mappings" : "AAAA,OAAOA,aAAP,MAA0B,uBAA1B;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,eAAeF,aAAa,EAAE,aAAaE,IAAI,CAAC,MAAD,EAAS;AACtDC,EAAAA,CAAC,EAAE;AADmD,CAAT,CAAnB,EAExB,gBAFwB,CAA5B", "sourcesContent" : ["import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M3.8 12.18c-.2-.86-.3-1.76-.3-2.68 0-2.84.99-5.45 2.63-7.5L7.2 3.07C5.82 4.85 5 7.08 5 9.5c0 .88.11 1.74.32 2.56l1.62-1.62L8 11.5 4.5 15 1 11.5l1.06-1.06 1.74 1.74zm17.91-1 2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z\"\n}), 'SwipeDownSharp');"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"regionCode": {"type": "string"}, "numbersDate": {"type": "string"}, "positiveCases": {"type": "object", "properties": {"new": {"type": "integer"}, "trend": {"type": "integer"}, "total": {"type": "integer"}, "per100KInhabitants": {"type": "number"}}, "required": ["new", "trend", "total", "per100KInhabitants"]}, "deaths": {"type": "object", "properties": {"new": {"type": "integer"}, "trend": {"type": "integer"}, "total": {"type": "integer"}, "per100KInhabitants": {"type": "integer"}}, "required": ["new", "trend", "total", "per100KInhabitants"]}, "securityRegionName": {"type": "string"}, "updatedAt": {"type": "string"}, "hospitalAdmissions": {"type": "object", "properties": {"new": {"type": "integer"}, "trend": {"type": "integer"}, "total": {"type": "integer"}, "per100KInhabitants": {"type": "number"}}, "required": ["new", "trend", "total", "per100KInhabitants"]}, "provinceName": {"type": "string"}, "municupalityName": {"type": "string"}}, "required": ["regionCode", "numbersDate", "positiveCases", "deaths", "securityRegionName", "updatedAt", "hospitalAdmissions", "provinceName", "municupalityName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"regionCode" : "GM1892", "numbersDate" : "2021-10-19T02:00:00+02:00", "positiveCases" : {"new" : 6, "trend" : 1, "total" : 5849, "per100KInhabitants" : 13.672098159790039}, "deaths" : {"new" : 0, "trend" : 0, "total" : 47, "per100KInhabitants" : 0}, "securityRegionName" : "Hollands-Midden", "updatedAt" : "2021-10-19T22:33:24+02:00", "hospitalAdmissions" : {"new" : 1, "trend" : 1, "total" : 222, "per100KInhabitants" : 2.2786829471588135}, "provinceName" : "Zuid-Holland", "municupalityName" : "Zuidplas"}
json_instruct
{"type": "object", "properties": {"regionCode": {"type": "string"}, "numbersDate": {"type": "string"}, "positiveCases": {"type": "object", "properties": {"new": {"type": "integer"}, "trend": {"type": "integer"}, "total": {"type": "integer"}, "per100KInhabitants": {"type": "number"}}, "required": ["new", "trend", "total", "per100KInhabitants"]}, "deaths": {"type": "object", "properties": {"new": {"type": "integer"}, "trend": {"type": "integer"}, "total": {"type": "integer"}, "per100KInhabitants": {"type": "integer"}}, "required": ["new", "trend", "total", "per100KInhabitants"]}, "securityRegionName": {"type": "string"}, "updatedAt": {"type": "string"}, "hospitalAdmissions": {"type": "object", "properties": {"new": {"type": "integer"}, "trend": {"type": "integer"}, "total": {"type": "integer"}, "per100KInhabitants": {"type": "number"}}, "required": ["new", "trend", "total", "per100KInhabitants"]}, "provinceName": {"type": "string"}, "municupalityName": {"type": "string"}}, "required": ["regionCode", "numbersDate", "positiveCases", "deaths", "securityRegionName", "updatedAt", "hospitalAdmissions", "provinceName", "municupalityName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : "Reddex", "scores" : [{"xp" : 5080, "rank" : 358, "cardId" : 162}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 7311170, "parent" : 7311, "name" : "PALAKKA", "latitude" : "-4.5267923010029", "longitude" : "120.23285754008", "postal" : [92761], "children" : [7311170001, 7311170002, 7311170003, 7311170004, 7311170005, 7311170006, 7311170007, 7311170008, 7311170009, 7311170010, 7311170011, 7311170012, 7311170013, 7311170014, 7311170015]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 150391, "UUID" : "AD284109-D579-4FC1-8B50-42557DE3119E", "DataProviderID" : 28, "DataProvidersReference" : "FR*M13*P13022*001", "UsageTypeID" : 5, "AddressInfo" : {"ID" : 150744, "Title" : "CASSIS - Parking Savon", "AddressLine1" : "Parking Savon 13260 CASSIS", "CountryID" : 80, "Latitude" : 43.213528, "Longitude" : 5.53811, "AccessComments" : "24h/24 7j/7", "DistanceUnit" : 0}, "Connections" : [{"ID" : 209070, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}, {"ID" : 237780, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}, {"ID" : 237781, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}, {"ID" : 237782, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}, {"ID" : 237783, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}, {"ID" : 237784, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 4, "CurrentTypeID" : 10}], "GeneralComments" : "Recharge par badge et avec une application smartphone", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:10:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-03-15T06:17:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$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"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["build", "test", "prepublish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "jest", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "keywords", "author", "homepage", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "deepsorter", "version" : "1.0.3", "description" : "A dead simple library to sort objects regardless of how deep is the object", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"build" : "tsc", "test" : "jest --config=jest.config.json", "prepublish" : "npm test"}, "keywords" : ["sort", "javascript", "typescript", "object", "deep"], "author" : "Rex Low", "homepage" : "https://github.com/rexlow/deepSorter", "license" : "MIT", "devDependencies" : {"@types/jest" : "^26.0.23", "jest" : "^27.0.5", "ts-jest" : "^27.0.3", "typescript" : "^4.3.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["build", "test", "prepublish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "jest", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "keywords", "author", "homepage", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"address": {"type": "string"}, "pub_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "priv_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}}, "required": ["address", "pub_key", "priv_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "00E40B71508CF8F5B7F2103103A0E21D77855C98", "pub_key" : {"type" : "tendermint/PubKeyEd25519", "value" : "WDTRc5rh/fjkQeAbMmYXC/NpRVTpHQTTizxh752Umk0="}, "priv_key" : {"type" : "tendermint/PrivKeyEd25519", "value" : "mp6f5GuLbNip98gTzUnD0rMz4vXY7eyl5UV7M2Z+BXhYNNFzmuH9+ORB4BsyZhcL82lFVOkdBNOLPGHvnZSaTQ=="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "pub_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "priv_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}}, "required": ["address", "pub_key", "priv_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["test:pig_scream"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"53157": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53146": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53120": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53107": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53166": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53131": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["53157", "53146", "53120", "53107", "53166", "53131"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"53157" : {"nama" : "CIPOCOK JAYA", "dapil" : [36, 3602, 13601, 2367305]}, "53146" : {"nama" : "CURUG", "dapil" : [36, 3602, 13601, 2367304]}, "53120" : {"nama" : "KASEMEN", "dapil" : [36, 3602, 13601, 2367303]}, "53107" : {"nama" : "SERANG", "dapil" : [36, 3602, 13601, 2367301, 2367302]}, "53166" : {"nama" : "TAKTAKAN", "dapil" : [36, 3602, 13601, 2367306]}, "53131" : {"nama" : "WALANTAKA", "dapil" : [36, 3602, 13601, 2367304]}}
json_instruct
{"type": "object", "properties": {"53157": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53146": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53120": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53107": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53166": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "53131": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["53157", "53146", "53120", "53107", "53166", "53131"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : "Rurey", "dpt" : "Doubs", "inscrits" : 224, "abs" : 42, "votants" : 182, "blancs" : 30, "nuls" : 6, "exp" : 146, "res" : [{"panneau" : "1", "voix" : 89}, {"panneau" : "2", "voix" : 57}]}
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": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "659930a9efcf0e70a7d9c5d2b4ba12f9af330388"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-92.26219, 34.757414], [-92.261579, 34.772527], [-92.260594, 34.775896], [-92.261265, 34.779005], [-92.238564, 34.777407], [-92.217173, 34.779945], [-92.211933, 34.779759], [-92.216848, 34.773087], [-92.21786, 34.767683], [-92.215527, 34.763983], [-92.217306, 34.762155], [-92.234303, 34.756484], [-92.253966, 34.756512], [-92.26219, 34.757414]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 3366}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"short_name" : "Painel GDS", "name" : "Painel Guardi\u00f5es da Sa\u00fade", "icons" : [{"src" : "favicon.ico", "sizes" : "64x64 32x32 24x24 16x16", "type" : "image/x-icon"}], "start_url" : "/panel", "display" : "standalone", "theme_color" : "#5dd39e", "background_color" : "#ffffff"}
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "employee_timetable", "private" : true, "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "The sequel to 'Talking Heads...'\n\nDesigning an REST api for your projects is difficult enough, implementing the api should be simple.\n\nBuilding a REST api is more then serialisation to JSON with Dancer2::Serializer::JSON or doing CRUD with Dancer2::Plugin::REST (which in so not RESTful, unlike it claims in the docs).\n\nUsing the Dancer2::Plugin::HTTP family of modules will help to implement your API design fully RFC compliant", "favorite" : "0", "length" : "53:59", "likes" : "0", "recorded" : "2015-12-12", "speakers" : ["theo-van-hoesel"], "tags" : [], "thumbnail_url" : "https://i.ytimg.com/vi/aL5rJvfwy1I/hqdefault.jpg", "title" : "Dancer2 REST assured", "videos" : [{"code" : "aL5rJvfwy1I", "type" : "youtube"}], "views" : "54"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101885231, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "8cb70bc09e299591e1b40e378128396b", "wof:id" : 101885231, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.75424, 46.6424, 0.75424, 46.6424], "geometry" : {"coordinates" : [0.75424, 46.6424], "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Pulse garlic in a food processor until finely chopped, then add nuts, cheeses, a large handful of herbs, and 1 teaspoon pepper and process until chopped. Add remaining herbs one handful at a time, pulsing after each addition, until finely chopped. With motor running, add oil and blend until incorporated."], "ingredients" : ["4 garlic cloves", "3/4 cup pine nuts (1/4 pound)", "2 cups grated Parmigiano-Reggiano", "2 cups grated Pecorino Romano", "3 cups packed Italian basil leaves", "1 1/2 cups packed bush basil leaves", "1 cup loosely packed fresh lemon basil leaves", "2 cups packed flat-leaf parsley leaves", "5 tablespoons olive oil"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Sauce", "Food Processor", "Garlic", "No-Cook", "Quick & Easy", "Parmesan", "Basil", "Pine Nut", "Summer", "Gourmet", "New York"], "title" : "Three Basil Pesto", "url" : "http://www.epicurious.com/recipes/food/views/three-basil-pesto-242861"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 57034, "cartId" : "ea1903c3-0676-4fea-83b5-59af42babeb7", "preferredProducts" : [], "productReviews" : [{"productId" : 4652, "reviewText" : "this bi-directional is snowy.", "reviewDate" : "2017-01-01T05:45:53.6256293+02:00"}, {"productId" : 4846, "reviewText" : "talk about contentment!!!", "reviewDate" : "2018-08-19T12:33:55.1767552+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "mmd mai shiranui \uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "hinachan", "description" : "youtubeundefinedchannel:<br><aundefinedhref='https://www.youtube.com/channel/UCRxPnnpTCB0J_JJ7EmiZMtg'>https://www.youtube.com/channel/UCRxPnnpTCB0J_JJ7EmiZMtg</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/IJmySJCR8GI.jpg?itok=8Rn0FwMe", "download" : "https://ecchi.iwara.tv/api/video/brzrzc6xk8cl9grbb", "origin" : "https://ecchi.iwara.tv/videos/brzrzc6xk8cl9grbb"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "fi": {"type": "integer"}, "fc": {"type": "integer"}}, "required": ["y", "i", "fi", "fc"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Department" : "\u041f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430 \u041f\u043e\u043b\u0442\u0430\u0432\u0441\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Region" : "\u041f\u043e\u043b\u0442\u0430\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "Position" : "\u041f\u0440\u043e\u043a\u0443\u0440\u043e\u0440 \u0432\u0456\u0434\u0434\u0456\u043b\u0443 \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u0456\u0439\u043d\u043e\u0433\u043e \u0442\u0430 \u043f\u0440\u0430\u0432\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0435\u043d\u043d\u044f \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0438 \u041f\u043e\u043b\u0442\u0430\u0432\u0441\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Name" : "\u041a\u0430\u0440\u0430\u0431\u0443\u0442 \u042e\u043b\u0456\u044f \u0410\u043d\u0430\u0442\u043e\u043b\u0456\u0457\u0432\u043d\u0430", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015" : "https://public.nazk.gov.ua/declaration/23027c51-927d-483a-96d7-6f81d7af60e1", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016" : "https://public.nazk.gov.ua/declaration/1375b99b-ab77-433d-b039-75437e8a6960", "\u0424\u043e\u0442\u043e" : "http://picua.org/img/2018-03/24/p5b4sr9z095krhvywsbodb52h.jpg", "\u042f\u043a \u0436\u0438\u0432\u0435" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456" : "https://www.gp.gov.ua/integrity_profile/files/98a1156beb5f352b60426136abd2ffd4.pdf", "type" : "prosecutor", "key" : "karabut_yuliya_anatoliyivna", "analytics" : [{"y" : 2015, "i" : 56486, "fi" : 294099, "fc" : 1}, {"y" : 2016, "i" : 10334, "fi" : 263433, "fc" : 1}, {"y" : 2017, "i" : 133458, "fi" : 159427, "fc" : 1, "ff" : 141.6, "ffa" : 2}], "declarationsLinks" : [{"id" : "nacp_f8ca4ae1-2854-4cc4-9364-7d873d1c6013", "year" : 2015, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_1375b99b-ab77-433d-b039-75437e8a6960", "year" : 2016, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_e58ca55d-e5cf-4923-8f3a-4e116e730fe3", "year" : 2017, "provider" : "declarations.com.ua.opendata"}]}
json_instruct
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "fi": {"type": "integer"}, "fc": {"type": "integer"}}, "required": ["y", "i", "fi", "fc"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"email": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "types": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepack": {"type": "string"}}, "required": ["test", "build", "prepack"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@tsconfig/recommended": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/recommended", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"cookie-pusher": {"type": "string"}}, "required": ["cookie-pusher"]}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "engines", "main", "types", "type", "scripts", "author", "license", "repository", "files", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "auto-filer", "version" : "0.1.0", "description" : "Auto Filer \u9971\u548c\u5f0f\u51fa\u5165\u76d1\u72f1\u81ea\u52a8\u5907\u6848\u5de5\u5177", "keywords" : ["filing", "record", "covid", "covid19"], "homepage" : "https://github.com/mingcenwei/auto-filer", "bugs" : {"email" : "wmingcen@gmail.com", "url" : "https://github.com/mingcenwei/auto-filer/issues"}, "engines" : {"node" : "^14.13.1"}, "main" : "dist/nodejs/index.js", "types" : "dist/nodejs/index.d.ts", "type" : "module", "scripts" : {"test" : "npm run build && printf '\n' && node --experimental-specifier-resolution='node' 'build/test/index'", "build" : "tsc --build debug.tsconfig.json", "prepack" : "tsc --build release.tsconfig.json"}, "author" : "sAy", "license" : "Unlicense", "repository" : {"type" : "git", "url" : "https://github.com/mingcenwei/auto-filer.git"}, "files" : ["package.json", "UNLICENSE.txt", "README.html", "dist/"], "devDependencies" : {"@tsconfig/recommended" : "^1.0.1", "@types/node" : "^14.10.3", "@typescript-eslint/eslint-plugin" : "^4.1.1", "@typescript-eslint/parser" : "^4.1.1", "eslint" : "^7.9.0", "prettier" : "^2.1.2", "typescript" : "^4.0.2"}, "dependencies" : {"cookie-pusher" : "0.1.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"email": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "types": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepack": {"type": "string"}}, "required": ["test", "build", "prepack"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@tsconfig/recommended": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/recommended", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "prettier", "typescript"]}, "dependencies": {"type": "object", "properties": {"cookie-pusher": {"type": "string"}}, "required": ["cookie-pusher"]}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "engines", "main", "types", "type", "scripts", "author", "license", "repository", "files", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"server": {"type": "string"}, "server:authors": {"type": "string"}, "server:posts": {"type": "string"}, "server:gateway": {"type": "string"}}, "required": ["server", "server:authors", "server:posts", "server:gateway"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@apollo/federation": {"type": "string"}, "@apollo/gateway": {"type": "string"}, "apollo-server": {"type": "string"}, "concurrently": {"type": "string"}, "dotenv": {"type": "string"}, "esm": {"type": "string"}, "graphql": {"type": "string"}, "graphql-redis-subscriptions": {"type": "string"}, "ioredis": {"type": "string"}, "nodemon": {"type": "string"}, "wait-on": {"type": "string"}}, "required": ["@apollo/federation", "@apollo/gateway", "apollo-server", "concurrently", "dotenv", "esm", "graphql", "graphql-redis-subscriptions", "ioredis", "nodemon", "wait-on"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "server", "version" : "1.0.0", "description" : "A demonstration federated data graph where the subgraphs publish subscription events to Redis pub/sub.", "main" : "src/index.js", "scripts" : {"server" : "concurrently -k npm:server:*", "server:authors" : "nodemon -r esm -r dotenv/config ./src/services/authors/index.js", "server:posts" : "nodemon -r esm -r dotenv/config ./src/services/posts/index.js", "server:gateway" : "wait-on tcp:4001 tcp:4002 && nodemon -r esm -r dotenv/config ./src/index.js"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"@apollo/federation" : "^0.22.0", "@apollo/gateway" : "^0.25.0", "apollo-server" : "^2.19.2", "concurrently" : "^5.3.0", "dotenv" : "^8.2.0", "esm" : "^3.2.25", "graphql" : "^15.5.0", "graphql-redis-subscriptions" : "^2.3.1", "ioredis" : "^4.19.4", "nodemon" : "^2.0.7", "wait-on" : "^5.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"server": {"type": "string"}, "server:authors": {"type": "string"}, "server:posts": {"type": "string"}, "server:gateway": {"type": "string"}}, "required": ["server", "server:authors", "server:posts", "server:gateway"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@apollo/federation": {"type": "string"}, "@apollo/gateway": {"type": "string"}, "apollo-server": {"type": "string"}, "concurrently": {"type": "string"}, "dotenv": {"type": "string"}, "esm": {"type": "string"}, "graphql": {"type": "string"}, "graphql-redis-subscriptions": {"type": "string"}, "ioredis": {"type": "string"}, "nodemon": {"type": "string"}, "wait-on": {"type": "string"}}, "required": ["@apollo/federation", "@apollo/gateway", "apollo-server", "concurrently", "dotenv", "esm", "graphql", "graphql-redis-subscriptions", "ioredis", "nodemon", "wait-on"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}, "dev-develop": {"type": "string"}}, "required": ["dev-master", "dev-develop"]}}, "required": ["branch-alias"]}, "require": {"type": "object", "properties": {"zendframework/zend-eventmanager": {"type": "string"}, "zendframework/zend-servicemanager": {"type": "string"}, "zendframework/zend-stdlib": {"type": "string"}}, "required": ["zendframework/zend-eventmanager", "zendframework/zend-servicemanager", "zendframework/zend-stdlib"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phing/phing": {"type": "string"}, "zendframework/zend-validator": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "jakub-onderka/php-parallel-lint": {"type": "string"}}, "required": ["phpunit/phpunit", "phing/phing", "zendframework/zend-validator", "squizlabs/php_codesniffer", "jakub-onderka/php-parallel-lint"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"abacaphiliac\\EventsCapable\\": {"type": "string"}}, "required": ["abacaphiliac\\EventsCapable\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "extra", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "abacaphiliac/events-capable", "description" : "Provides a config-based initializer that attaches listeners to implementations of \\Zend\\EventManager\\EventsCapableInterface.", "type" : "library", "license" : "MIT", "extra" : {"branch-alias" : {"dev-master" : "0.2-dev", "dev-develop" : "0.3-dev"}}, "require" : {"zendframework/zend-eventmanager" : "^2", "zendframework/zend-servicemanager" : "^2", "zendframework/zend-stdlib" : "^2"}, "require-dev" : {"phpunit/phpunit" : "^5|^4.8", "phing/phing" : "^2", "zendframework/zend-validator" : "^2", "squizlabs/php_codesniffer" : "^2.5", "jakub-onderka/php-parallel-lint" : "^0.9.2"}, "autoload" : {"psr-4" : {"abacaphiliac\\EventsCapable\\" : "src/EventsCapable"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}, "dev-develop": {"type": "string"}}, "required": ["dev-master", "dev-develop"]}}, "required": ["branch-alias"]}, "require": {"type": "object", "properties": {"zendframework/zend-eventmanager": {"type": "string"}, "zendframework/zend-servicemanager": {"type": "string"}, "zendframework/zend-stdlib": {"type": "string"}}, "required": ["zendframework/zend-eventmanager", "zendframework/zend-servicemanager", "zendframework/zend-stdlib"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phing/phing": {"type": "string"}, "zendframework/zend-validator": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "jakub-onderka/php-parallel-lint": {"type": "string"}}, "required": ["phpunit/phpunit", "phing/phing", "zendframework/zend-validator", "squizlabs/php_codesniffer", "jakub-onderka/php-parallel-lint"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"abacaphiliac\\EventsCapable\\": {"type": "string"}}, "required": ["abacaphiliac\\EventsCapable\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "license", "extra", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"ogc_fid": {"type": "integer"}, "layer": {"type": "string"}}, "required": ["ogc_fid", "layer"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "name" : "waltti", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"ogc_fid" : 8, "layer" : "waltti"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[28.030938, 61.016901], [28.030938, 61.102794], [28.329905, 61.102794], [28.329905, 61.016901], [28.030938, 61.016901]]], [[[21.145557, 59.963388], [21.145557, 60.950777], [22.939795, 60.950777], [22.939795, 59.963388], [21.145557, 59.963388]]], [[[24.37, 64.71], [24.37, 65.38], [26.61, 65.38], [26.61, 64.71], [24.37, 64.71]]], [[[24.634987, 66.147037], [24.634987, 67.180128], [27.373531, 67.180128], [27.373531, 66.147037], [24.634987, 66.147037]]], [[[26.422982, 60.423693], [26.422982, 60.574886232976134], [26.230533247455586, 60.574886232976134], [26.230533247455586, 60.692506], [24.873833, 60.692506], [24.873833, 60.75705], [23.73155, 60.75705], [23.73155, 61.16], [22.68, 61.16], [22.68, 62.31], [24.9, 62.31], [24.9, 61.790694], [26.544819, 61.790694], [26.544819, 61.2909051236272], [27.424811201273982, 61.2909051236272], [27.424811201273982, 60.688566], [27.739367, 60.688566], [27.739367, 60.423693], [26.422982, 60.423693]]], [[[25.230388, 61.835318], [25.230388, 62.603473], [26.163918, 62.603473], [26.163918, 63.469325], [27.1, 63.469325], [27.1, 63.6], [31.0, 63.6], [31.0, 61.6], [27.1, 61.6], [27.1, 62.454915], [26.358237, 62.454915], [26.358237, 61.835318], [25.230388, 61.835318]]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"ogc_fid": {"type": "integer"}, "layer": {"type": "string"}}, "required": ["ogc_fid", "layer"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"extends": {"type": "string"}, "rules": {"type": "object", "properties": {"no-assign-mutated-array": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}, "no-implicit-any-catch": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}, "no-unused-declaration": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}, "throw-error": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}}, "required": ["no-assign-mutated-array", "no-implicit-any-catch", "no-unused-declaration", "throw-error"]}}, "required": ["extends", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "tslint-etc", "rules" : {"no-assign-mutated-array" : {"severity" : "error"}, "no-implicit-any-catch" : {"severity" : "error"}, "no-unused-declaration" : {"severity" : "error"}, "throw-error" : {"severity" : "error"}}}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "rules": {"type": "object", "properties": {"no-assign-mutated-array": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}, "no-implicit-any-catch": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}, "no-unused-declaration": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}, "throw-error": {"type": "object", "properties": {"severity": {"type": "string"}}, "required": ["severity"]}}, "required": ["no-assign-mutated-array", "no-implicit-any-catch", "no-unused-declaration", "throw-error"]}}, "required": ["extends", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "3401080003", "district_id" : "3401080", "name" : "HARGOWILIS"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["623023110200", "\u771f\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["623023110201", "\u679c\u8036\u6751\u59d4\u4f1a", "121", "0"], ["623023110202", "\u62c9\u963f\u6751\u59d4\u4f1a", "220", "0"], ["623023110203", "\u4e1c\u576a\u6751\u59d4\u4f1a", "220", "0"], ["623023110204", "\u78e8\u91cc\u6751\u59d4\u4f1a", "220", "0"], ["623023110205", "\u8bfa\u8fed\u5580\u6751\u59d4\u4f1a", "220", "0"], ["623023110206", "\u543e\u5fb7\u6751\u59d4\u4f1a", "220", "0"], ["623023110207", "\u9633\u5761\u6751\u59d4\u4f1a", "220", "0"], ["623023110209", "\u522b\u5217\u77f3\u560e\u6751\u59d4\u4f1a", "220", "0"], ["623023110210", "\u7261\u543e\u534f\u6751\u59d4\u4f1a", "220", "0"], ["623023110211", "\u4ee3\u4e9a\u8bfa\u6751\u59d4\u4f1a", "220", "0"], ["623023110212", "\u5c45\u65af\u6ce2\u8bfa\u6751\u59d4\u4f1a", "220", "0"], ["623023110213", "\u524d\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["623023110214", "\u524d\u5c71\u6881\u6751\u59d4\u4f1a", "220", "0"], ["623023110215", "\u6c60\u5e72\u6751\u59d4\u4f1a", "220", "0"], ["623023110216", "\u864e\u5bb6\u7cb1\u6751\u59d4\u4f1a", "220", "0"], ["623023110217", "\u7518\u5b50\u6c9f\u6751\u59d4\u4f1a", "220", "0"], ["623023110218", "\u771f\u5e84\u78e8\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"molecules": {"type": "array", "items": {"type": "object", "properties": {"amount": {"type": "integer"}, "formula": {"type": "string"}}, "required": ["amount", "formula"]}}, "replace": {"type": "boolean"}}, "required": ["molecules", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"molecules" : [{"amount" : 27, "formula" : "be3al2si16o18"}, {"amount" : 12, "formula" : "p4o6"}], "replace" : false}
json_instruct
{"type": "object", "properties": {"molecules": {"type": "array", "items": {"type": "object", "properties": {"amount": {"type": "integer"}, "formula": {"type": "string"}}, "required": ["amount", "formula"]}}, "replace": {"type": "boolean"}}, "required": ["molecules", "replace"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Optimizing complex queries with multiple relation instances.", "fields" : ["buffer overflow", "relational database management system", "deadlock", "access method", "tuple"], "abstract" : "Today's query processing engines do not take advantage of the multiple occurrences of a relation in a query to improve performance. Instead, each instance is treated as a distinct relation and has its own independent table access method. In this paper, we present MAPLE , a M ulti-instance- A ware PL an E valuation engine that enables multiple instances of a relation to share one physical scan (called SharedScan ) with limited buffer space. During execution, as SharedScan pulls a tuple for any instance, that tuple is also pushed to the buffers of other instances with matching predicates. To avoid buffer overflow, a novel interleaved execution strategy is proposed: whenever an instance's buffer becomes full, the execution is temporarily switched to a drainer (an ancestor blocking operator of the instance) to consume all the tuples in the buffer. Thus, the execution is interleaved between normal processing and drainers. We also propose a cost-based approach to generate a plan to maximize the shared scan benefit as well as to avoid interleaved execution deadlocks. MAPLE is light-weight and can be easily integrated into existing RDBMS executors. We have implemented MAPLE in PostgreSQL, and our experimental study on the TPC-DS benchmark shows significant reduction in execution time.", "citation" : "Citations (16)", "year" : "2008", "departments" : ["National University of Singapore", "National University of Singapore", "National University of Singapore", "National University of Singapore"], "conf" : "sigmod", "authors" : ["Yu Cao.....http://dblp.org/pers/hd/c/Cao:Yu", "Gopal C. Das.....http://dblp.org/pers/hd/d/Das:Gopal_C=", "Chee Yong Chan.....http://dblp.org/pers/hd/c/Chan:Chee_Yong", "Kian-Lee Tan.....http://dblp.org/pers/hd/t/Tan:Kian=Lee"], "pages" : 14}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "googleUserId": {"type": "string"}, "name": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "googleUserId", "name", "organisations"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"_id" : "58c039018060197ca0b52d4c", "googleUserId" : "123", "name" : "Peter Admin", "organisations" : ["58c03ac18060197ca0b52d51"]}, {"_id" : "58c03ada8060197ca0b52d52", "googleUserId" : "987", "name" : "Jeffrey Normal", "organisations" : ["58c03ac18060197ca0b52d51"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "googleUserId": {"type": "string"}, "name": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "googleUserId", "name", "organisations"]}, "$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": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.6188205, "y" : 0.33872133}, {"x" : 0.82529104, "y" : 0.33872133}, {"x" : 0.82529104, "y" : 0.5282508}, {"x" : 0.6188205, "y" : 0.5282508}], "score" : 0.5168881}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manufacturer" : "TUFF", "devices" : [{"manufacturer" : "", "market_name" : "T500", "codename" : "T500", "model" : "T500"}]}
json_instruct
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$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"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-resource": {"type": "string"}}, "required": ["angular", "angular-route", "angular-resource"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "salvador-hq", "description" : "", "main" : "index.html", "authors" : ["Catherine Salvador"], "license" : "MIT", "keywords" : ["java", "spring", "springboot"], "homepage" : "https://github.com/cathysalvador/salvador-hq", "dependencies" : {"angular" : "1.6.10", "angular-route" : "1.6.10", "angular-resource" : "1.6.10"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-resource": {"type": "string"}}, "required": ["angular", "angular-route", "angular-resource"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "360404100", "text" : "\u6c99\u6cb3\u8857\u9547"}, {"id" : "360404101", "text" : "\u9a6c\u56de\u5cad\u9547"}, {"id" : "360404102", "text" : "\u6c5f\u6d32\u9547"}, {"id" : "360404103", "text" : "\u57ce\u5b50\u9547"}, {"id" : "360404104", "text" : "\u6e2f\u53e3\u8857\u9547"}, {"id" : "360404105", "text" : "\u65b0\u5408\u9547"}, {"id" : "360404106", "text" : "\u72ee\u5b50\u9547"}, {"id" : "360404200", "text" : "\u6c38\u5b89\u4e61"}, {"id" : "360404201", "text" : "\u6d8c\u6cc9\u4e61"}, {"id" : "360404202", "text" : "\u65b0\u5858\u4e61"}, {"id" : "360404203", "text" : "\u57ce\u95e8\u4e61"}, {"id" : "360404204", "text" : "\u5cb7\u5c71\u4e61"}, {"id" : "360404403", "text" : "\u6c99\u6cb3\u7ecf\u6d4e\u6280\u672f\u5f00\u53d1\u533a"}, {"id" : "360404501", "text" : "\u65b0\u6d32\u57a6\u6b96\u573a"}, {"id" : "360404502", "text" : "\u8d5b\u57ce\u6e56\u6c34\u4ea7\u573a"}, {"id" : "360404503", "text" : "\u5cb7\u5c71\u6797\u573a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "import { isHTMLElement } from \"./instanceOf.js\";\nvar round = Math.round;\nexport default function getBoundingClientRect(element, includeScale) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n\n var rect = element.getBoundingClientRect();\n var scaleX = 1;\n var scaleY = 1;\n\n if (isHTMLElement(element) && includeScale) {\n // Fallback to 1 in case both values are `0`\n scaleX = rect.width / element.offsetWidth || 1;\n scaleY = rect.height / element.offsetHeight || 1;\n }\n\n return {\n width: round(rect.width / scaleX),\n height: round(rect.height / scaleY),\n top: round(rect.top / scaleY),\n right: round(rect.right / scaleX),\n bottom: round(rect.bottom / scaleY),\n left: round(rect.left / scaleX),\n x: round(rect.left / scaleX),\n y: round(rect.top / scaleY)\n };\n}", "map" : null, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}