input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"action": {"type": "string"}, "vatId": {"type": "string"}}, "required": ["action", "vatId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"action" : "setVatId", "vatId" : "vatId"}
json_instruct
{"type": "object", "properties": {"action": {"type": "string"}, "vatId": {"type": "string"}}, "required": ["action", "vatId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"EMAILS": {"type": "string"}, "DOMAINS": {"type": "string"}, "PROFILE": {"type": "string"}}, "required": ["EMAILS", "DOMAINS", "PROFILE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"EMAILS" : "hello@marcoslombog.com,hello@miriambueno.com,hello@connectiongoal.com", "DOMAINS" : "marcoslombog.com,www.marcoslombog.com,next.marcoslombog.com,miriambueno.com,staging.miriambueno.com,www.miriambueno.com,connectiongoal.com,staging.connectiongoal.com,www.connectiongoal.com", "PROFILE" : "default"}
json_instruct
{"type": "object", "properties": {"EMAILS": {"type": "string"}, "DOMAINS": {"type": "string"}, "PROFILE": {"type": "string"}}, "required": ["EMAILS", "DOMAINS", "PROFILE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "7708d04070d93b791bab", "c" : {"index" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prettier": {"type": "string"}, "shx": {"type": "string"}}, "required": ["prettier", "shx"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "file-mode-changes", "version" : "1.0.0", "description" : "integration test for patch-package", "main" : "index.js", "author" : "", "license" : "ISC", "dependencies" : {"prettier" : "^1.16.0", "shx" : "^0.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prettier": {"type": "string"}, "shx": {"type": "string"}}, "required": ["prettier", "shx"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@antora/cli": {"type": "string"}, "@antora/content-aggregator": {"type": "string"}, "@antora/site-generator-default": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-cli": {"type": "string"}}, "required": ["@antora/cli", "@antora/content-aggregator", "@antora/site-generator-default", "browser-sync", "gulp", "gulp-cli"]}}, "required": ["name", "version", "description", "author", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jte-docs", "version" : "1.0.0", "description" : "The JTE Documentation", "author" : "Steven Terrana", "devDependencies" : {"@antora/cli" : "^2.2.0", "@antora/content-aggregator" : "^2.2.0", "@antora/site-generator-default" : "^2.2.0", "browser-sync" : "^2.26.7", "gulp" : "^4.0.2", "gulp-cli" : "^2.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@antora/cli": {"type": "string"}, "@antora/content-aggregator": {"type": "string"}, "@antora/site-generator-default": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-cli": {"type": "string"}}, "required": ["@antora/cli", "@antora/content-aggregator", "@antora/site-generator-default", "browser-sync", "gulp", "gulp-cli"]}}, "required": ["name", "version", "description", "author", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bluemix-helper-sso", "nodejs-dataworks", "pipes-sdk", "pipes_sdk", "simple-data-pipe-connector-flightstats", "simple-data-pipe-connector-reddit", "simple-data-pipe-sdk"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"caption": {"type": "string"}, "author": {"type": "string"}}, "required": ["caption", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"caption" : "MQTT RGB", "author" : "Wirehome"}
json_instruct
{"type": "object", "properties": {"caption": {"type": "string"}, "author": {"type": "string"}}, "required": ["caption", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "chipped:block/quartz_block_12"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cob_simulation", "description" : "The cob_simulation stack includes packages to work with Care-O-bot within simulation environments, e.g. gazebo.", "license" : null, "starNum" : 58, "folkNum" : 96, "watchNum" : 58, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=egg": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=small": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=large": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=egg", "type=small", "type=large"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"type=egg" : {"model" : "conquest:block/mossy_lime_mortar_red_clay_brick_sphere_dragonegg"}, "type=small" : {"model" : "conquest:block/mossy_lime_mortar_red_clay_brick_sphere_small"}, "type=large" : {"model" : "conquest:block/mossy_lime_mortar_red_clay_brick_sphere"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=egg": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=small": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=large": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=egg", "type=small", "type=large"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "description": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "description", "steps", "attachments", "parameters", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "description", "befores", "afters", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "11e77986-99d2-4fd7-901b-4a43bc5c4c5f", "name" : "workbookIT.ProductSystemManagerTestIT.getAimData", "children" : ["0802651d-1be9-4e4c-a0f0-98da68123185"], "description" : "", "befores" : [], "afters" : [{"name" : "getAimData", "status" : "passed", "stage" : "finished", "description" : "", "steps" : [], "attachments" : [], "parameters" : [], "start" : 1638180816029, "stop" : 1638180816029}], "start" : 1638180816029, "stop" : 1638180816029}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "description": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "description", "steps", "attachments", "parameters", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "description", "befores", "afters", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"username": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["type", "required", "description"]}, "password": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["type", "required", "description"]}, "newPassword": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["username", "password", "newPassword"]}}, "required": ["type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:auth:LoginRequest", "properties" : {"username" : {"type" : "string", "required" : true, "description" : "Username of the user which should be logged in."}, "password" : {"type" : "string", "required" : true, "description" : "Password of the user which should be logged in."}, "newPassword" : {"type" : "string", "description" : "New password that will be set after successful login."}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"username": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["type", "required", "description"]}, "password": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}}, "required": ["type", "required", "description"]}, "newPassword": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["username", "password", "newPassword"]}}, "required": ["type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"statusCode": {"type": "integer"}, "statusText": {"type": "string"}, "data": {"type": "object", "properties": {"testId": {"type": "string"}, "ownerKey": {"type": "string"}, "jsonUrl": {"type": "string"}, "xmlUrl": {"type": "string"}, "userUrl": {"type": "string"}, "summaryCSV": {"type": "string"}, "detailCSV": {"type": "string"}}, "required": ["testId", "ownerKey", "jsonUrl", "xmlUrl", "userUrl", "summaryCSV", "detailCSV"]}}, "required": ["statusCode", "statusText", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"statusCode" : 200, "statusText" : "Ok", "data" : {"testId" : "191024_HA_976b046886025ec8693cbe4f1145929e", "ownerKey" : "9259cab7a56de88af4f67e16e631ed954d8c9fee", "jsonUrl" : "https://www.webpagetest.org/jsonResult.php?test=191024_HA_976b046886025ec8693cbe4f1145929e", "xmlUrl" : "https://www.webpagetest.org/xmlResult/191024_HA_976b046886025ec8693cbe4f1145929e/", "userUrl" : "https://www.webpagetest.org/result/191024_HA_976b046886025ec8693cbe4f1145929e/", "summaryCSV" : "https://www.webpagetest.org/result/191024_HA_976b046886025ec8693cbe4f1145929e/page_data.csv", "detailCSV" : "https://www.webpagetest.org/result/191024_HA_976b046886025ec8693cbe4f1145929e/requests.csv"}}
json_instruct
{"type": "object", "properties": {"statusCode": {"type": "integer"}, "statusText": {"type": "string"}, "data": {"type": "object", "properties": {"testId": {"type": "string"}, "ownerKey": {"type": "string"}, "jsonUrl": {"type": "string"}, "xmlUrl": {"type": "string"}, "userUrl": {"type": "string"}, "summaryCSV": {"type": "string"}, "detailCSV": {"type": "string"}}, "required": ["testId", "ownerKey", "jsonUrl", "xmlUrl", "userUrl", "summaryCSV", "detailCSV"]}}, "required": ["statusCode", "statusText", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"waud.js": {"type": "string"}, "waud.min.js": {"type": "string"}}, "required": ["waud.js", "waud.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"waud.js" : "sha256-MoTvTt3qZxifWH/2D/CqvsqhoQfLAgIIqMCwJP3S/QQ=", "waud.min.js" : "sha256-gLozIAiIN4X/eCMigRpRuotntwdG3wxQvV9U11px3+4="}
json_instruct
{"type": "object", "properties": {"waud.js": {"type": "string"}, "waud.min.js": {"type": "string"}}, "required": ["waud.js", "waud.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "82b1a7d52b07b599323b", "c" : {"1" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"test" : "a/t1.json"}
json_instruct
{"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {"forFile:inItem:": {"type": "string"}}, "required": ["forFile:inItem:"]}, "instance": {"type": "object", "properties": {"buildUrl": {"type": "string"}, "content": {"type": "string"}, "content:": {"type": "string"}, "contentStream": {"type": "string"}, "displayJpeg": {"type": "string"}, "displayJpegInWindow": {"type": "string"}, "downloadJpegIntoForm": {"type": "string"}, "file": {"type": "string"}, "file:": {"type": "string"}, "fileName": {"type": "string"}, "getContent": {"type": "string"}, "getResponse": {"type": "string"}, "initialize": {"type": "string"}, "item": {"type": "string"}, "item:": {"type": "string"}, "reportResponseCode": {"type": "string"}, "response": {"type": "string"}, "response:": {"type": "string"}, "saveFileToDefaultPath": {"type": "string"}, "saveFileToDirectory:": {"type": "string"}, "saveToDisk": {"type": "string"}, "streamResponseOn:": {"type": "string"}, "url": {"type": "string"}, "url:": {"type": "string"}}, "required": ["buildUrl", "content", "content:", "contentStream", "displayJpeg", "displayJpegInWindow", "downloadJpegIntoForm", "file", "file:", "fileName", "getContent", "getResponse", "initialize", "item", "item:", "reportResponseCode", "response", "response:", "saveFileToDefaultPath", "saveFileToDirectory:", "saveToDisk", "streamResponseOn:", "url", "url:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {"forFile:inItem:" : "tcj 12/22/2016 15:27"}, "instance" : {"buildUrl" : "tcj 2/24/2019 20:56", "content" : "tcj 2/24/2019 22:17", "content:" : "tcj 2/24/2019 21:20", "contentStream" : "tcj 2/24/2019 22:17", "displayJpeg" : "tcj 2/24/2019 22:47", "displayJpegInWindow" : "tcj 4/2/2019 08:27", "downloadJpegIntoForm" : "tcj 2/24/2019 22:37", "file" : "tcj 12/20/2016 21:58", "file:" : "tcj 12/20/2016 21:58", "fileName" : "tcj 12/25/2016 17:37", "getContent" : "tcj 2/24/2019 22:17", "getResponse" : "tcj 2/24/2019 22:17", "initialize" : "tcj 2/24/2019 21:04", "item" : "tcj 12/20/2016 21:58", "item:" : "tcj 12/20/2016 21:58", "reportResponseCode" : "tcj 2/24/2019 22:17", "response" : "tcj 12/22/2016 15:51", "response:" : "tcj 12/22/2016 15:51", "saveFileToDefaultPath" : "tcj 2/25/2019 10:06", "saveFileToDirectory:" : "tcj 2/25/2019 10:05", "saveToDisk" : "tcj 2/25/2019 12:54", "streamResponseOn:" : "tcj 2/24/2019 22:17", "url" : "tcj 2/24/2019 21:05", "url:" : "tcj 2/25/2019 10:04"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {"forFile:inItem:": {"type": "string"}}, "required": ["forFile:inItem:"]}, "instance": {"type": "object", "properties": {"buildUrl": {"type": "string"}, "content": {"type": "string"}, "content:": {"type": "string"}, "contentStream": {"type": "string"}, "displayJpeg": {"type": "string"}, "displayJpegInWindow": {"type": "string"}, "downloadJpegIntoForm": {"type": "string"}, "file": {"type": "string"}, "file:": {"type": "string"}, "fileName": {"type": "string"}, "getContent": {"type": "string"}, "getResponse": {"type": "string"}, "initialize": {"type": "string"}, "item": {"type": "string"}, "item:": {"type": "string"}, "reportResponseCode": {"type": "string"}, "response": {"type": "string"}, "response:": {"type": "string"}, "saveFileToDefaultPath": {"type": "string"}, "saveFileToDirectory:": {"type": "string"}, "saveToDisk": {"type": "string"}, "streamResponseOn:": {"type": "string"}, "url": {"type": "string"}, "url:": {"type": "string"}}, "required": ["buildUrl", "content", "content:", "contentStream", "displayJpeg", "displayJpegInWindow", "downloadJpegIntoForm", "file", "file:", "fileName", "getContent", "getResponse", "initialize", "item", "item:", "reportResponseCode", "response", "response:", "saveFileToDefaultPath", "saveFileToDirectory:", "saveToDisk", "streamResponseOn:", "url", "url:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"10-19": {"type": "integer"}, "20-29": {"type": "integer"}, "30-39": {"type": "integer"}, "40-49": {"type": "integer"}, "50-59": {"type": "integer"}, "60-69": {"type": "integer"}, "70-79": {"type": "integer"}, "80+": {"type": "integer"}, "0-9": {"type": "integer"}}, "required": ["10-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+", "0-9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"10-19" : 0, "20-29" : 0, "30-39" : 0, "40-49" : 1, "50-59" : 2, "60-69" : 4, "70-79" : 10, "80+" : 14, "0-9" : 0}
json_instruct
{"type": "object", "properties": {"10-19": {"type": "integer"}, "20-29": {"type": "integer"}, "30-39": {"type": "integer"}, "40-49": {"type": "integer"}, "50-59": {"type": "integer"}, "60-69": {"type": "integer"}, "70-79": {"type": "integer"}, "80+": {"type": "integer"}, "0-9": {"type": "integer"}}, "required": ["10-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+", "0-9"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"loading-bar.css": {"type": "string"}, "loading-bar.js": {"type": "string"}, "loading-bar.min.css": {"type": "string"}, "loading-bar.min.js": {"type": "string"}}, "required": ["loading-bar.css", "loading-bar.js", "loading-bar.min.css", "loading-bar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loading-bar.css" : "sha512-oqGjd8fI7h5F3fCqUeGMzvZZQDOVCKvFXwNpBx544TIXtUKdfcpfmsa/JcrFOfgFmgAP3TfxDadLA7AYSYVNhg==", "loading-bar.js" : "sha512-wkvoTleR4G2LwomtCVv5rFxXKxEn6aKe4AsJahWtOni6TIpq3xKvIjCsCCC9+cm6owD8DMKOO0c2I5fKT0ONLw==", "loading-bar.min.css" : "sha512-9tBcvPMIhqZqqSgFQRirirgrt1ztkODx3ihn3OOHGUDslaH4ZX//e6eRDbVORt6H3IWCQHveQVJvUGJLIXtxyA==", "loading-bar.min.js" : "sha512-5Fq3gBBUq0LEQ35HvI639zoEEjvVwKqg6S5P67ICP9wkShrj8hwzjratKo8O09nNZNaY4RTtAlP7nKFhW/TifQ=="}
json_instruct
{"type": "object", "properties": {"loading-bar.css": {"type": "string"}, "loading-bar.js": {"type": "string"}, "loading-bar.min.css": {"type": "string"}, "loading-bar.min.js": {"type": "string"}}, "required": ["loading-bar.css", "loading-bar.js", "loading-bar.min.css", "loading-bar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"tags": {"type": "object", "properties": {"allowUnknownTags": {"type": "boolean"}, "dictionaries": {"type": "array", "items": {"type": "string"}}}, "required": ["allowUnknownTags", "dictionaries"]}, "source": {"type": "object", "properties": {"includePattern": {"type": "string"}}, "required": ["includePattern"]}, "plugins": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "object", "properties": {"default": {"type": "object", "properties": {"staticFiles": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}}, "required": ["staticFiles"]}, "title": {"type": "string"}, "logo": {"type": "object", "properties": {"url": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["url", "width", "height"]}, "name": {"type": "string"}, "footerText": {"type": "string"}, "useCollapsibles": {"type": "boolean"}, "tabNames": {"type": "object", "properties": {"api": {"type": "string"}, "tutorials": {"type": "string"}}, "required": ["api", "tutorials"]}}, "required": ["default", "title", "logo", "name", "footerText", "useCollapsibles", "tabNames"]}, "opts": {"type": "object", "properties": {"encoding": {"type": "string"}, "private": {"type": "boolean"}, "recurse": {"type": "boolean"}, "template": {"type": "string"}, "tutorials": {"type": "string"}}, "required": ["encoding", "private", "recurse", "template", "tutorials"]}}, "required": ["tags", "source", "plugins", "templates", "opts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tags" : {"allowUnknownTags" : true, "dictionaries" : ["jsdoc"]}, "source" : {"includePattern" : ".js$"}, "plugins" : ["plugins/markdown"], "templates" : {"default" : {"staticFiles" : {"include" : ["./src/brand/vialer/img/logo-64.png"]}}, "title" : "Vialer-js", "logo" : {"url" : "logo-64.png", "width" : "72px", "height" : "72px"}, "name" : "Vialer-js", "footerText" : "© Devhouse Spindle", "useCollapsibles" : true, "tabNames" : {"api" : "Code", "tutorials" : "Manuals"}}, "opts" : {"encoding" : "utf8", "private" : true, "recurse" : true, "template" : "node_modules/jsdoc-rtd", "tutorials" : "./docs/manuals"}}
json_instruct
{"type": "object", "properties": {"tags": {"type": "object", "properties": {"allowUnknownTags": {"type": "boolean"}, "dictionaries": {"type": "array", "items": {"type": "string"}}}, "required": ["allowUnknownTags", "dictionaries"]}, "source": {"type": "object", "properties": {"includePattern": {"type": "string"}}, "required": ["includePattern"]}, "plugins": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "object", "properties": {"default": {"type": "object", "properties": {"staticFiles": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}}, "required": ["staticFiles"]}, "title": {"type": "string"}, "logo": {"type": "object", "properties": {"url": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}}, "required": ["url", "width", "height"]}, "name": {"type": "string"}, "footerText": {"type": "string"}, "useCollapsibles": {"type": "boolean"}, "tabNames": {"type": "object", "properties": {"api": {"type": "string"}, "tutorials": {"type": "string"}}, "required": ["api", "tutorials"]}}, "required": ["default", "title", "logo", "name", "footerText", "useCollapsibles", "tabNames"]}, "opts": {"type": "object", "properties": {"encoding": {"type": "string"}, "private": {"type": "boolean"}, "recurse": {"type": "boolean"}, "template": {"type": "string"}, "tutorials": {"type": "string"}}, "required": ["encoding", "private", "recurse", "template", "tutorials"]}}, "required": ["tags", "source", "plugins", "templates", "opts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"browser-polyfill.js": {"type": "string"}, "browser.js": {"type": "string"}}, "required": ["browser-polyfill.js", "browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"browser-polyfill.js" : "sha512-+glaNZQr3kIDcyXbOWCV3m/EJk/dFJWkQIG2fAjPNp2dPDCm+SH1BXPc7VEkjn7Lj2/UP0OKAFrtUK65LyCfag==", "browser.js" : "sha512-VLjI5FU/wc0+u8bQMgtomTAI6B/cNxVDRtzXRFcSBTUNURfmcvHzZXjUxKQZt27GgNTnncX1B23b/Bns0qtq5A=="}
json_instruct
{"type": "object", "properties": {"browser-polyfill.js": {"type": "string"}, "browser.js": {"type": "string"}}, "required": ["browser-polyfill.js", "browser.js"], "$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"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "type", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "greenido/Air-Qulity-in-the-bay-area", "description" : "An example for a mobile web app and action on google for AQI in the bay area", "type" : "project", "authors" : [{"name" : "Ido Green", "email" : "greenido@gmail.com"}], "require" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "type", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"lineId": {"type": "integer"}, "name": {"type": "string"}, "stations": {"type": "array", "items": {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}}, "required": ["stationId", "stationGroupId"]}}}, "required": ["lineId", "name", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lineId" : 11312, "name" : "JR\u4e2d\u592e\u7dda(\u5feb\u901f)", "stations" : [{"stationId" : 1131201, "stationGroupId" : 1130101}, {"stationId" : 1131202, "stationGroupId" : 1130223}, {"stationId" : 1131203, "stationGroupId" : 1131203}, {"stationId" : 1131207, "stationGroupId" : 1131102}, {"stationId" : 1131211, "stationGroupId" : 1130208}, {"stationId" : 1131214, "stationGroupId" : 1131214}, {"stationId" : 1131215, "stationGroupId" : 1131215}, {"stationId" : 1131216, "stationGroupId" : 1131216}, {"stationId" : 1131217, "stationGroupId" : 1131217}, {"stationId" : 1131218, "stationGroupId" : 1131218}, {"stationId" : 1131219, "stationGroupId" : 1131104}, {"stationId" : 1131220, "stationGroupId" : 1131105}, {"stationId" : 1131221, "stationGroupId" : 1131221}, {"stationId" : 1131222, "stationGroupId" : 1131222}, {"stationId" : 1131223, "stationGroupId" : 1131223}, {"stationId" : 1131224, "stationGroupId" : 1131106}, {"stationId" : 1131225, "stationGroupId" : 1130503}, {"stationId" : 1131226, "stationGroupId" : 1131226}, {"stationId" : 1131227, "stationGroupId" : 1130325}, {"stationId" : 1131228, "stationGroupId" : 1131108}, {"stationId" : 1131229, "stationGroupId" : 1131109}, {"stationId" : 1131230, "stationGroupId" : 1130620}, {"stationId" : 1131231, "stationGroupId" : 1131111}, {"stationId" : 1131232, "stationGroupId" : 1131112}]}
json_instruct
{"type": "object", "properties": {"lineId": {"type": "integer"}, "name": {"type": "string"}, "stations": {"type": "array", "items": {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}}, "required": ["stationId", "stationGroupId"]}}}, "required": ["lineId", "name", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Nasunogan, Dao, Capiz, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.capiz.dao.nasunogan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "22", "province_reference" : "22", "province_name" : "Capiz", "city_id" : "387", "city_reference" : "390", "city_name" : "Dao", "barangay_id" : "10897", "barangay_reference" : "9187", "barangay_name" : "Nasunogan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.678108, 11.39009], [122.682022, 11.38757], [122.682037, 11.38686], [122.681351, 11.38665], [122.681259, 11.38588], [122.681442, 11.38486], [122.681892, 11.38401], [122.682426, 11.3832], [122.68261, 11.38274], [122.683243, 11.38127], [122.68383, 11.38003], [122.684143, 11.3786], [122.684441, 11.37715], [122.684341, 11.37491], [122.684052, 11.37391], [122.68351, 11.37308], [122.6828, 11.37242], [122.682167, 11.37191], [122.681602, 11.37153], [122.68074, 11.3711], [122.679848, 11.3707], [122.679199, 11.37029], [122.678749, 11.36934], [122.67881, 11.3684], [122.678871, 11.36672], [122.679092, 11.36483], [122.679443, 11.36428], [122.679741, 11.36385], [122.680008, 11.36324], [122.680099, 11.36217], [122.680283, 11.36106], [122.680527, 11.35996], [122.680656, 11.35945], [122.680771, 11.35871], [122.680077, 11.35902], [122.664192, 11.36391], [122.668213, 11.38414], [122.668747, 11.38555], [122.668961, 11.38633], [122.669327, 11.38745], [122.669388, 11.38849], [122.669548, 11.38959], [122.669983, 11.39022], [122.670601, 11.39177], [122.671356, 11.39273], [122.67189, 11.39358], [122.671448, 11.39448], [122.678108, 11.39009]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "null"}, "numberOfColumns": {"type": "integer"}, "offsetColumns": {"type": "integer"}, "showInNotebook": {"type": "boolean"}, "showInNotebookAt": {"type": "string"}, "renderOrder": {"type": "integer"}, "page": {"type": "null"}, "markdownContent": {"type": "string"}}, "required": ["id", "numberOfColumns", "offsetColumns", "showInNotebook", "showInNotebookAt", "renderOrder", "page", "markdownContent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : null, "numberOfColumns" : 8, "offsetColumns" : 2, "showInNotebook" : true, "showInNotebookAt" : "pageExit", "renderOrder" : 1, "page" : null, "markdownContent" : "This page has checkbox exercise. In this case we have minimum selection solution mode. You need to select at least 2 options"}
json_instruct
{"type": "object", "properties": {"id": {"type": "null"}, "numberOfColumns": {"type": "integer"}, "offsetColumns": {"type": "integer"}, "showInNotebook": {"type": "boolean"}, "showInNotebookAt": {"type": "string"}, "renderOrder": {"type": "integer"}, "page": {"type": "null"}, "markdownContent": {"type": "string"}}, "required": ["id", "numberOfColumns", "offsetColumns", "showInNotebook", "showInNotebookAt", "renderOrder", "page", "markdownContent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : "Lootable_00138", "IsStatic" : true, "useGravity" : true, "randomRotation" : false, "Position" : {"x" : 0, "y" : 0, "z" : 0}, "Rotation" : {"x" : 0, "y" : 0, "z" : 0}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5e68b2b186f7745c395bea77", "Items" : [{"_id" : "5e68b2b186f7745c395bea77", "_tpl" : "5909d5ef86f77467974efbd8"}, {"_id" : "5e68b2b186f7745c395bea78", "_tpl" : "5b7bef1e5acfc43d82528402", "parentId" : "5e68b2b186f7745c395bea77", "slotId" : "main", "location" : {"x" : 0, "y" : 0, "r" : 0}}, {"_id" : "5e68b2b186f7745c395bea79", "_tpl" : "5c501a4d2e221602b412b540", "parentId" : "5e68b2b186f7745c395bea77", "slotId" : "main", "location" : {"x" : 0, "y" : 1, "r" : 0}, "upd" : {"FireMode" : {"FireMode" : "single"}}}, {"_id" : "5e68b2b186f7745c395bea7a", "_tpl" : "5c5039be2e221602b177c9ff", "parentId" : "5e68b2b186f7745c395bea79", "slotId" : "mod_gas_block"}, {"_id" : "5e68b2b186f7745c395bea7b", "_tpl" : "5c503d0a2e221602b542b7ef", "parentId" : "5e68b2b186f7745c395bea79", "slotId" : "mod_reciever"}, {"_id" : "5e68b2b186f7745c395bea7c", "_tpl" : "5c503b1c2e221602b21d6e9d", "parentId" : "5e68b2b186f7745c395bea79", "slotId" : "mod_sight_rear"}, {"_id" : "5e68b2b186f7745c395bea7d", "_tpl" : "5c503af12e221602b177ca02", "parentId" : "5e68b2b186f7745c395bea79", "slotId" : "mod_stock"}, {"_id" : "5e68b2b186f7745c395bea7e", "_tpl" : "5c503ac82e221602b21d6e9a", "parentId" : "5e68b2b186f7745c395bea79", "slotId" : "mod_magazine"}, {"_id" : "5e68b2b186f7745c395bea7f", "_tpl" : "5a6086ea4f39f99cd479502f", "parentId" : "5e68b2b186f7745c395bea7e", "slotId" : "cartridges", "upd" : {"StackObjectsCount" : 2}}]}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Milam County", "fips" : "48331", "state_code" : 48, "county_code" : 331, "population" : 24823, "countrylevel_id" : "fips:48331", "census_data" : {"COUNTYNS" : "01383951", "AFFGEOID" : "0500000US48331", "LSAD" : "06", "ALAND" : 2633798227, "AWATER" : 12758772}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-97.315507, 30.752371], [-97.25908199999999, 30.889595999999997], [-97.070188, 30.98622], [-96.84907899999999, 31.100471], [-96.829121, 31.105870999999997], [-96.793139, 31.065717999999997], [-96.75632999999999, 30.927205999999998], [-96.68496999999999, 30.906191], [-96.694853, 30.864517], [-96.611097, 30.757354], [-96.621281, 30.730819], [-96.963629, 30.557169], [-97.155219, 30.457344], [-97.271418, 30.735692], [-97.315507, 30.752371]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"index": {"type": "string"}, "class": {"type": "object", "properties": {"index": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["index", "name", "url"]}, "name": {"type": "string"}, "level": {"type": "integer"}, "prerequisites": {"type": "array", "items": {}}, "desc": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["index", "class", "name", "level", "prerequisites", "desc", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : "superior-inspiration", "class" : {"index" : "bard", "name" : "Bard", "url" : "/api/classes/bard"}, "name" : "Superior Inspiration", "level" : 20, "prerequisites" : [], "desc" : ["At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use."], "url" : "/api/features/superior-inspiration"}
json_instruct
{"type": "object", "properties": {"index": {"type": "string"}, "class": {"type": "object", "properties": {"index": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["index", "name", "url"]}, "name": {"type": "string"}, "level": {"type": "integer"}, "prerequisites": {"type": "array", "items": {}}, "desc": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}}, "required": ["index", "class", "name", "level", "prerequisites", "desc", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 45139, "cartId" : "22152cf4-c7ed-4a1b-9cda-9ac9fbbf2960", "preferredProducts" : [1948, 3751, 2689, 2577, 4679], "productReviews" : [{"productId" : 4127, "reviewText" : "i use it until further notice when i'm in my station.", "reviewDate" : "2019-09-19T03:37:36.3968071+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Tim G Carlson": {"type": "string"}}, "required": ["Tim G Carlson"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"TCTableViewSearchController": {"type": "array", "items": {"type": "string"}}}, "required": ["TCTableViewSearchController"]}, "public_header_files": {"type": "string"}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "resource_bundles", "public_header_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "TCTableViewSearchController", "version" : "0.1.0", "summary" : "A subclass of UITableViewController that handles basic search bar functionality to make searching a table a painless process.", "description" : " Sometimes all you want is a table view that will handle most of the basic searching for you. That's where TCTableViewSearchController comes in. It handles most of the UISearchController requirements for you. All that you will need to do is implement one method that tells it which properties to search in the objects populatiung your table view. Currently only supports searching strings and numbers. Also has basic, optional, scope bar support.\n\n **This includes a demo project to show you the ropes. See the README file for usage instructions.**\n", "homepage" : "https://github.com/timgcarlson/TCTableViewSearchController", "license" : "MIT", "authors" : {"Tim G Carlson" : "timgcarlson@gmail.com"}, "source" : {"git" : "https://github.com/timgcarlson/TCTableViewSearchController.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "7.0"}, "requires_arc" : true, "source_files" : "Pod/Classes", "resource_bundles" : {"TCTableViewSearchController" : ["Pod/Assets/*.png"]}, "public_header_files" : "Pod/Classes/TCTableViewSearchController.h", "frameworks" : "UIKit"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Tim G Carlson": {"type": "string"}}, "required": ["Tim G Carlson"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"TCTableViewSearchController": {"type": "array", "items": {"type": "string"}}}, "required": ["TCTableViewSearchController"]}, "public_header_files": {"type": "string"}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "resource_bundles", "public_header_files", "frameworks"], "$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"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "homepage", "authors", "description", "main", "keywords", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mocha-test", "version" : "2.0.2", "homepage" : "https://github.com/matthewp/mocha-test", "authors" : ["Matthew Phillips <matthew@matthewphillips.info>"], "description" : "A custom element for running mocha tests", "main" : "mocha-test.html", "keywords" : ["web-components", "mocha"], "license" : "BSD-2-Clause", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "homepage", "authors", "description", "main", "keywords", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-r82m-h3gc-v8vr", "modified" : "2021-11-19T00:00:33Z", "published" : "2021-11-19T00:00:33Z", "aliases" : ["CVE-2021-0667"], "details" : "In apusys, there is a possible memory corruption due to a use after free. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation. Patch ID: ALPS05670581; Issue ID: ALPS05670581.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-0667"}, {"type" : "WEB", "url" : "https://corp.mediatek.com/product-security-bulletin/November-2021"}], "database_specific" : {"cwe_ids" : [], "severity" : null, "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"base.css": {"type": "string"}}, "required": ["base.css"]}, "devDependencies": {"type": "object", "properties": {"@fullhuman/postcss-purgecss": {"type": "string"}, "autoprefixer": {"type": "string"}, "parcel-bundler": {"type": "string"}, "parcel-plugin-static-files-copy": {"type": "string"}, "postcss-import": {"type": "string"}, "prettier": {"type": "string"}, "pug": {"type": "string"}, "tailwindcss": {"type": "string"}, "tailwindcss-font-inter": {"type": "string"}}, "required": ["@fullhuman/postcss-purgecss", "autoprefixer", "parcel-bundler", "parcel-plugin-static-files-copy", "postcss-import", "prettier", "pug", "tailwindcss", "tailwindcss-font-inter"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "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"}}, "required": ["name", "version", "description", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "iljapanic-cv", "version" : "1.0.0", "description" : "personal curriculum vitae", "dependencies" : {"base.css" : "^1.0.0"}, "devDependencies" : {"@fullhuman/postcss-purgecss" : "^2.0.5", "autoprefixer" : "^9.7.4", "parcel-bundler" : "^1.12.4", "parcel-plugin-static-files-copy" : "^2.3.1", "postcss-import" : "^12.0.1", "prettier" : "^1.19.1", "pug" : "^2.0.4", "tailwindcss" : "^1.1.4", "tailwindcss-font-inter" : "^1.0.8"}, "scripts" : {"dev" : "parcel src/index.pug", "build" : "parcel build src/index.pug"}, "repository" : {"type" : "git", "url" : "git+https://github.com/iljapanic/iljapanic-cv.git"}, "keywords" : ["resume", "curriculum", "vitae", "personal"], "author" : "Ilja Panic <ilja@iljapanic.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/iljapanic/cv/issues"}, "homepage" : "https://github.com/iljapanic/cv#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"base.css": {"type": "string"}}, "required": ["base.css"]}, "devDependencies": {"type": "object", "properties": {"@fullhuman/postcss-purgecss": {"type": "string"}, "autoprefixer": {"type": "string"}, "parcel-bundler": {"type": "string"}, "parcel-plugin-static-files-copy": {"type": "string"}, "postcss-import": {"type": "string"}, "prettier": {"type": "string"}, "pug": {"type": "string"}, "tailwindcss": {"type": "string"}, "tailwindcss-font-inter": {"type": "string"}}, "required": ["@fullhuman/postcss-purgecss", "autoprefixer", "parcel-bundler", "parcel-plugin-static-files-copy", "postcss-import", "prettier", "pug", "tailwindcss", "tailwindcss-font-inter"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "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"}}, "required": ["name", "version", "description", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "MATEO", "frequency" : 65437, "males" : "99.98624631324786 %", "females" : "0.013753686752143281 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Prop": {"type": "string"}}, "required": ["Prop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Prop" : "https://mobilebuildtools.com"}
json_instruct
{"type": "object", "properties": {"Prop": {"type": "string"}}, "required": ["Prop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"customer": {"type": "object", "properties": {"address": {"type": "object", "properties": {"street": {"type": "string"}}, "required": ["street"]}}, "required": ["address"]}}, "required": ["customer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"customer" : {"address" : {"street" : "A"}}}
json_instruct
{"type": "object", "properties": {"customer": {"type": "object", "properties": {"address": {"type": "object", "properties": {"street": {"type": "string"}}, "required": ["street"]}}, "required": ["address"]}}, "required": ["customer"], "$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"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DoruDB\\": {"type": "string"}}, "required": ["DoruDB\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "punarinta/doru-db", "description" : "A simple file-based database storing data in JSON.", "license" : "MIT", "keywords" : ["database", "JSON", "NoSQL"], "authors" : [{"name" : "Vladimir Osipov", "email" : "vladimir.g.osipov@gmail.com"}], "require" : {"php" : ">=7.2.0"}, "require-dev" : {}, "autoload" : {"psr-4" : {"DoruDB\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {}, "required": []}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DoruDB\\": {"type": "string"}}, "required": ["DoruDB\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"illustration": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["illustration", "title", "description"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : [{"illustration" : "illustration/new/sleek.svg", "title" : "Sleek and responsive", "description" : "Looks amazing on all types of devices. User can switch between dark and light color modes."}, {"illustration" : "illustration/new/free.svg", "title" : "Free and open source", "description" : "Infinite reserve is free for both personal and commercial purposes. You can extend the functionality by writing on top of our code base."}, {"illustration" : "illustration/new/knowledge_network.svg", "title" : "Knowledge network", "description" : "Provide a platform to your users for sharing knowledge with each other."}, {"illustration" : "illustration/new/duplicate.svg", "title" : "Eliminate redundancy", "description" : "With an open platform and state of the art machine learning, reduce the volume of similar issues that are already answered in the community."}, {"illustration" : "illustration/new/customer_insights.svg", "title" : "Get customer insights", "description" : "Infinite reserve is not just a tool to help you with customer support. It also provides insights into the user issues with different statistics and community discussions about a topic."}, {"illustration" : "illustration/new/wiki.svg", "title" : "Wiki for internal articles", "description" : "Maintain your internal documentation with the Wiki module. Wiki module is accessible only to your employees and not for your users."}]}
json_instruct
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"illustration": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["illustration", "title", "description"]}}}, "required": ["data"], "$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"]}}, "required": ["name", "version", "description", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "monaco-webpack-test", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "../node_modules/.bin/webpack --config webpack.config.js"}}
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"]}}, "required": ["name", "version", "description", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "examples": {"type": "string"}}, "required": ["test", "examples"]}, "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"}, "jest": {"type": "object", "properties": {"testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testPathIgnorePatterns"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "jest", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jest-duration-reporter", "version" : "1.0.0", "description" : "A jest reporter that warns you about tests exceeding a duration.", "main" : "index.js", "scripts" : {"test" : "jest", "examples" : "cd examples && jest"}, "repository" : {"type" : "git", "url" : "git+https://github.com/inside/jest-duration-reporter.git"}, "keywords" : ["jest", "duration", "reporter"], "author" : "Yann THOMAS-GERARD", "license" : "MIT", "bugs" : {"url" : "https://github.com/inside/jest-duration-reporter/issues"}, "homepage" : "https://github.com/inside/jest-duration-reporter#readme", "jest" : {"testPathIgnorePatterns" : ["node_modules/", "examples/"]}, "devDependencies" : {"jest" : "22.4.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "examples": {"type": "string"}}, "required": ["test", "examples"]}, "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"}, "jest": {"type": "object", "properties": {"testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testPathIgnorePatterns"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "jest", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/js/recipes.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/js/recipes.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/js/recipes.js" : "/js/recipes.js"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/js/recipes.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/js/recipes.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "MAURYA", "frequency" : 138, "males" : "5.797101449275362 %", "females" : "94.20289855072464 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "required": ["best_index", "auroc", "acc", "aps", "f1", "auprc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"best_index" : [84, 122, 98, 150, 93], "auroc" : [0.3724007561436673, 0.39886578449905474, 0.44801512287334594, 0.4328922495274102, 0.42911153119092627], "acc" : [0.5, 0.45652173913043476, 0.41304347826086957, 0.41304347826086957, 0.43478260869565216], "aps" : [0.4283033471345105, 0.45154007593101414, 0.4588381096585829, 0.4610531763029613, 0.44521380884729994], "f1" : [0.08, 0.24242424242424243, 0.06896551724137931, 0.12903225806451613, 0.07142857142857142], "auprc" : [0.40370576364832056, 0.430190066484332, 0.4366238569047448, 0.4348265671306611, 0.42490753986284135]}
json_instruct
{"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "required": ["best_index", "auroc", "acc", "aps", "f1", "auprc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "philomathic", "definition" : "1. Of or pertaining to philomathy. 2. Having love of learning or letters."}
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": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "install": {"type": "string"}}, "required": ["test", "install"]}, "dependencies": {"type": "object", "properties": {"colony-compiler": {"type": "string"}}, "required": ["colony-compiler"]}, "private": {"type": "boolean"}}, "required": ["name", "version", "scripts", "dependencies", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tessel-firmware", "version" : "v0.1.26", "scripts" : {"test" : "cd test; npm install; npm test", "install" : "true"}, "dependencies" : {"colony-compiler" : "~0.6.23"}, "private" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "install": {"type": "string"}}, "required": ["test", "install"]}, "dependencies": {"type": "object", "properties": {"colony-compiler": {"type": "string"}}, "required": ["colony-compiler"]}, "private": {"type": "boolean"}}, "required": ["name", "version", "scripts", "dependencies", "private"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@koa/router": {"type": "string"}, "dayjs": {"type": "string"}, "koa": {"type": "string"}, "koa-bodyparser": {"type": "string"}, "koa-static-cache": {"type": "string"}, "mysql2": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@koa/router", "dayjs", "koa", "koa-bodyparser", "koa-static-cache", "mysql2", "uuid"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "prettier"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "format", "lint"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "billboard-hypervisor-dispatch", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/ovaphlow/billboard-hypervisor-dispatch.git", "author" : "ovaphlow <ovaphlow@live.com>", "license" : "MIT", "dependencies" : {"@koa/router" : "^10.0.0", "dayjs" : "^1.10.4", "koa" : "^2.13.1", "koa-bodyparser" : "^4.3.0", "koa-static-cache" : "^5.1.4", "mysql2" : "^2.2.5", "uuid" : "^8.3.2"}, "devDependencies" : {"eslint" : "^7.23.0", "prettier" : "^2.2.1"}, "scripts" : {"start" : "node server.js", "format" : "prettier --write .", "lint" : "eslint ."}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@koa/router": {"type": "string"}, "dayjs": {"type": "string"}, "koa": {"type": "string"}, "koa-bodyparser": {"type": "string"}, "koa-static-cache": {"type": "string"}, "mysql2": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@koa/router", "dayjs", "koa", "koa-bodyparser", "koa-static-cache", "mysql2", "uuid"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "prettier"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "format", "lint"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"develop": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["develop", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"apollo-link-http": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-link": {"type": "string"}, "gatsby-source-graphql": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["apollo-link-http", "gatsby", "gatsby-link", "gatsby-source-graphql", "react", "react-dom"]}}, "required": ["name", "description", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gatsby-postgres-graphql", "description" : "Gatsby simple source hasura graphql cms", "license" : "MIT", "scripts" : {"develop" : "gatsby develop", "build" : "gatsby build", "serve" : "gatsby serve"}, "dependencies" : {"apollo-link-http" : "^1.5.5", "gatsby" : "^2.0.9", "gatsby-link" : "^2.0.2", "gatsby-source-graphql" : "^2.0.2", "react" : "^16.5.2", "react-dom" : "^16.5.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"develop": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["develop", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"apollo-link-http": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-link": {"type": "string"}, "gatsby-source-graphql": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["apollo-link-http", "gatsby", "gatsby-link", "gatsby-source-graphql", "react", "react-dom"]}}, "required": ["name", "description", "license", "scripts", "dependencies"], "$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": {"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" : 1970, "sex" : "F", "n" : 5, "prop" : 2.73e-06}, {"year" : 1972, "sex" : "F", "n" : 7, "prop" : 4.34e-06}, {"year" : 1973, "sex" : "F", "n" : 5, "prop" : 3.22e-06}, {"year" : 1976, "sex" : "F", "n" : 7, "prop" : 4.45e-06}, {"year" : 1977, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1978, "sex" : "F", "n" : 10, "prop" : 6.08e-06}, {"year" : 1979, "sex" : "F", "n" : 10, "prop" : 5.8e-06}, {"year" : 1980, "sex" : "F", "n" : 5, "prop" : 2.81e-06}, {"year" : 1981, "sex" : "F", "n" : 6, "prop" : 3.36e-06}, {"year" : 1986, "sex" : "F", "n" : 6, "prop" : 3.25e-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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "server": {"type": "object", "properties": {"coreVersion": {"type": "string"}, "scriptAttributes": {"type": "object", "properties": {"executioncontexttype": {"type": "string"}}, "required": ["executioncontexttype"]}, "dependencies": {"type": "object", "properties": {"other": {"type": "array", "items": {}}, "ssjs": {"type": "array", "items": {}}}, "required": ["other", "ssjs"]}, "src": {"type": "array", "items": {"type": "string"}}}, "required": ["coreVersion", "scriptAttributes", "dependencies", "src"]}, "public": {"type": "array", "items": {}}, "dest": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "author", "server", "public", "dest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lib.numberToLocaleString", "author" : "joern.berkefeld@gmail.com", "server" : {"coreVersion" : "1.1.1", "scriptAttributes" : {"executioncontexttype" : "get"}, "dependencies" : {"other" : [], "ssjs" : []}, "src" : ["lib.numberToLocaleString.ssjs"]}, "public" : [], "dest" : ["lib.numberToLocaleString.min.html"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "server": {"type": "object", "properties": {"coreVersion": {"type": "string"}, "scriptAttributes": {"type": "object", "properties": {"executioncontexttype": {"type": "string"}}, "required": ["executioncontexttype"]}, "dependencies": {"type": "object", "properties": {"other": {"type": "array", "items": {}}, "ssjs": {"type": "array", "items": {}}}, "required": ["other", "ssjs"]}, "src": {"type": "array", "items": {"type": "string"}}}, "required": ["coreVersion", "scriptAttributes", "dependencies", "src"]}, "public": {"type": "array", "items": {}}, "dest": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "author", "server", "public", "dest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "integer"}, "Title": {"type": "string"}}, "required": ["Id", "Title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Id" : 932, "Title" : "Add ICollection<T> Assertions"}, {"Id" : 933, "Title" : "Add DateTime Assertions"}, {"Id" : 934, "Title" : "Add Expression Driven Assertions"}, {"Id" : 2425, "Title" : "Testing.ShouldThrowException should return TExceptionType not Exception"}, {"Id" : 2431, "Title" : "DateTime extensions"}, {"Id" : 7740, "Title" : "Cannot see methods in Object Browser"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "integer"}, "Title": {"type": "string"}}, "required": ["Id", "Title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1NmkVyqBJX6a82YQFYkCNgQpE9AWsmeppp": {"type": "string"}}, "required": ["1NmkVyqBJX6a82YQFYkCNgQpE9AWsmeppp"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL", "cert_auth_type" : "web", "cert_sign" : "GxhGfbSSve0YFB31YpaCSD384xVZRRDVWaG4linMMtM30BjH91vrntzTyBO8Vhv1DjWAwEz8++bEHzeqmfY+/aQ=", "cert_user_id" : "ivesen@zeroid.bit", "files" : {"data.json" : {"sha512" : "66525c94f6c60395086edf8efb701562b3644a35ad7abe8e95fb8fcf2a6d29e6", "size" : 1494}}, "inner_path" : "data/users/1NmkVyqBJX6a82YQFYkCNgQpE9AWsmeppp/content.json", "modified" : 1493995395, "signs" : {"1NmkVyqBJX6a82YQFYkCNgQpE9AWsmeppp" : "G3veiUd6hAXFUclxUBkSwkik1DX7GHOhlv/V3ozxUxx8H9yeQDuk6HTEgayJAHtc0tlz9Ox7SqKx05lz9lV84KQ="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1NmkVyqBJX6a82YQFYkCNgQpE9AWsmeppp": {"type": "string"}}, "required": ["1NmkVyqBJX6a82YQFYkCNgQpE9AWsmeppp"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "icons": {"type": "array", "items": {"type": "string"}}, "lightSideIcons": {"type": "integer"}, "darkSideIcons": {"type": "integer"}, "gametext": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "uniqueness", "destiny", "icons", "lightSideIcons", "darkSideIcons", "gametext"]}, "pulls": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulls", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 663, "gempId" : "9_147", "side" : "Dark", "rarity" : "R", "set" : "9", "printings" : [{"set" : "9"}], "front" : {"title" : "\u2022Death Star II: Throne Room", "imageUrl" : "https://res.starwarsccg.org/cards/DeathStarII-Dark/large/deathstariithroneroom.gif", "type" : "Location", "subType" : "Site", "uniqueness" : "*", "destiny" : "0", "icons" : ["Interior", "Mobile", "Scomp Link"], "lightSideIcons" : 0, "darkSideIcons" : 2, "gametext" : "Dark: Once per game, you may take Emperor's Power into hand from Reserve Deck; reshuffle. Light: Immune to Revolution."}, "pulls" : ["Emperor's Power"], "legacy" : false}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "icons": {"type": "array", "items": {"type": "string"}}, "lightSideIcons": {"type": "integer"}, "darkSideIcons": {"type": "integer"}, "gametext": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "uniqueness", "destiny", "icons", "lightSideIcons", "darkSideIcons", "gametext"]}, "pulls": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulls", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"siteId" : "964f87fe-d916-410d-88d0-ef131d3851f2"}
json_instruct
{"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"short_name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "uuid": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "authority": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"active_roles": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "enum"]}}, "required": ["type", "items"]}}, "required": ["active_roles"]}}, "required": ["type", "properties"]}, "policies": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id_quota": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}, "description": {"type": "string"}, "minimum": {"type": "integer"}, "maximum": {"type": "integer"}}, "required": ["type", "format", "description", "minimum", "maximum"]}}, "required": ["id_quota"]}}, "required": ["type", "properties"]}}, "required": ["short_name", "name", "uuid", "authority", "policies"]}}, "required": ["$schema", "type", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-04/schema", "type" : "object", "required" : ["short_name", "name"], "properties" : {"short_name" : {"type" : "string", "description" : "The short name of the organization."}, "name" : {"type" : "string", "description" : "The name of the organization."}, "uuid" : {"type" : "string", "description" : "The organization identifier."}, "authority" : {"type" : "object", "properties" : {"active_roles" : {"type" : "array", "items" : {"type" : "string", "description" : "The active roles of the organization.", "enum" : ["CNA", "SECRETARIAT", "ROOT_CNA", "ADP"]}}}}, "policies" : {"type" : "object", "properties" : {"id_quota" : {"type" : "integer", "format" : "int32", "description" : "The CVE ID quota of the organization.", "minimum" : 0, "maximum" : 100000}}}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"short_name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "uuid": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "authority": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"active_roles": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "enum"]}}, "required": ["type", "items"]}}, "required": ["active_roles"]}}, "required": ["type", "properties"]}, "policies": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id_quota": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}, "description": {"type": "string"}, "minimum": {"type": "integer"}, "maximum": {"type": "integer"}}, "required": ["type", "format", "description", "minimum", "maximum"]}}, "required": ["id_quota"]}}, "required": ["type", "properties"]}}, "required": ["short_name", "name", "uuid", "authority", "policies"]}}, "required": ["$schema", "type", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"created_at": {"type": "integer"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "updated_at": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["created_at", "tags", "title", "updated_at", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"created_at" : 1484055949, "tags" : [], "title" : "Center Image", "updated_at" : 1484056017, "uuid" : "6DD3D578-F2C6-4AB4-ABEF-9E09BCB32E5C"}
json_instruct
{"type": "object", "properties": {"created_at": {"type": "integer"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "updated_at": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["created_at", "tags", "title", "updated_at", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "string"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"department" : "GERM", "description" : ["Students hone their skills of analyzing the forms and contexts of production and reception of", "German-language literary works of various genres. Coursework includes close reading, discussion,", "analysis, and interpretation of visual and/or written texts. Recent topics: authors as public", "intellectuals. Taught in German. May be repeated if topic is different. Offered in alternate", "years. Prerequisite: at least one 270-level course."], "fullname" : "Topics in German Literature", "number" : "371", "section" : "", "semester" : "3", "shortname" : "Top: German Literature", "type" : "T", "year" : "2021"}
json_instruct
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "string"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"places.js": {"type": "string"}, "places.min.js": {"type": "string"}, "placesAutocompleteDataset.js": {"type": "string"}, "placesAutocompleteDataset.min.js": {"type": "string"}}, "required": ["places.js", "places.min.js", "placesAutocompleteDataset.js", "placesAutocompleteDataset.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"places.js" : "sha512-GY0CRlF2OY/YMm/lbsbdyNwCJQiSwlqDtZDMbWPRwB9+fvY+qM4VF3rWntAqZW1Y8P9XE2Mid9JkKPqLMt4RLA==", "places.min.js" : "sha512-yEZZVh3s6xrj81dWA/ORMWX4FJlpDtA9BCCQ15vYePxujvcPMbTuDQ32jZHRQKr5j3q9HF9ZFSjL9SPWr29cFw==", "placesAutocompleteDataset.js" : "sha512-xIDu32kDms7e299cxv2pVWn3s5OVuxKW9tS1ab1zV6xc36DOmFjKKhw4CepFfbE6E6CILtqK+Fp45o4qgZo8mA==", "placesAutocompleteDataset.min.js" : "sha512-/WqVTekocM1tdRFCIzhOWksOQjZgFnehejNLislIPri0LN6mkG/IEzRQ3QZg4XtXupVf4ZHH2xc7krR4uy/m1Q=="}
json_instruct
{"type": "object", "properties": {"places.js": {"type": "string"}, "places.min.js": {"type": "string"}, "placesAutocompleteDataset.js": {"type": "string"}, "placesAutocompleteDataset.min.js": {"type": "string"}}, "required": ["places.js", "places.min.js", "placesAutocompleteDataset.js", "placesAutocompleteDataset.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"d3-force.js": {"type": "string"}, "d3-force.min.js": {"type": "string"}}, "required": ["d3-force.js", "d3-force.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"d3-force.js" : "sha256-NuLk1K9PD9BeilzdXFVmimrPbt5kURq5mhCqb8WQ8qk=", "d3-force.min.js" : "sha256-WYmckBv0+sEr0YsPm2Z3OC2WfCZIcD045KlXN/tbBmA="}
json_instruct
{"type": "object", "properties": {"d3-force.js": {"type": "string"}, "d3-force.min.js": {"type": "string"}}, "required": ["d3-force.js", "d3-force.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"csg": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-scripts": {"type": "string"}, "redux": {"type": "string"}, "three": {"type": "string"}, "three-dragcontrols": {"type": "string"}, "three-js-csg": {"type": "string"}, "three-orbitcontrols": {"type": "string"}}, "required": ["csg", "react", "react-dom", "react-redux", "react-scripts", "redux", "three", "three-dragcontrols", "three-js-csg", "three-orbitcontrols"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "predeploy": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "test", "eject", "predeploy", "deploy"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-react-app": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "gh-pages": {"type": "string"}}, "required": ["eslint", "eslint-config-react-app", "eslint-loader", "eslint-plugin-import", "eslint-plugin-react", "gh-pages"]}}, "required": ["name", "version", "private", "homepage", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "3dscene-creator", "version" : "1.3.0", "private" : true, "homepage" : "https://kulanah.github.io/3dscene-creator", "dependencies" : {"csg" : "^1.0.1", "react" : "^16.4.1", "react-dom" : "^16.4.1", "react-redux" : "^5.0.7", "react-scripts" : "1.1.4", "redux" : "^4.0.0", "three" : "^0.94.0", "three-dragcontrols" : "^0.88.2", "three-js-csg" : "^72.0.0", "three-orbitcontrols" : "^2.1.2"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject", "predeploy" : "npm run build", "deploy" : "gh-pages -d build"}, "devDependencies" : {"eslint" : "^5.1.0", "eslint-config-react-app" : "^2.1.0", "eslint-loader" : "^2.0.0", "eslint-plugin-import" : "^2.13.0", "eslint-plugin-react" : "^7.10.0", "gh-pages" : "^1.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"csg": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-scripts": {"type": "string"}, "redux": {"type": "string"}, "three": {"type": "string"}, "three-dragcontrols": {"type": "string"}, "three-js-csg": {"type": "string"}, "three-orbitcontrols": {"type": "string"}}, "required": ["csg", "react", "react-dom", "react-redux", "react-scripts", "redux", "three", "three-dragcontrols", "three-js-csg", "three-orbitcontrols"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "predeploy": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "test", "eject", "predeploy", "deploy"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-react-app": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "gh-pages": {"type": "string"}}, "required": ["eslint", "eslint-config-react-app", "eslint-loader", "eslint-plugin-import", "eslint-plugin-react", "gh-pages"]}}, "required": ["name", "version", "private", "homepage", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["adddetails"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[495, 178]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "tonicExample": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "fix": {"type": "string"}, "test:int": {"type": "string"}, "test:all": {"type": "string"}, "coveralls": {"type": "string"}}, "required": ["test", "fix", "test:int", "test:all", "coveralls"]}, "jest": {"type": "object", "properties": {"testRegex": {"type": "string"}, "clearMocks": {"type": "boolean"}}, "required": ["testRegex", "clearMocks"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "standard": {"type": "object", "properties": {"env": {"type": "string"}}, "required": ["env"]}, "devDependencies": {"type": "object", "properties": {"coveralls": {"type": "string"}, "jest": {"type": "string"}, "nock": {"type": "string"}, "standard": {"type": "string"}}, "required": ["coveralls", "jest", "nock", "standard"]}, "dependencies": {"type": "object", "properties": {"dot-prop": {"type": "string"}, "jsforce": {"type": "string"}, "ramda": {"type": "string"}, "superstruct": {"type": "string"}, "type-detect": {"type": "string"}}, "required": ["dot-prop", "jsforce", "ramda", "superstruct", "type-detect"]}}, "required": ["name", "version", "description", "main", "tonicExample", "engines", "repository", "scripts", "jest", "keywords", "author", "license", "standard", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "arbiter", "version" : "2.0.1", "description" : "A Salesforce ORM powered by jsforce", "main" : "index.js", "tonicExample" : "const arbiter = require('arbiter')", "engines" : {"node" : ">= 6.0"}, "repository" : {"type" : "git", "url" : "git://github.com/skbolton/Arbiter"}, "scripts" : {"test" : "standard && jest", "fix" : "standard --fix", "test:int" : "jest -c=jest-integration-config.json", "test:all" : "jest -c=jest-all-config.json", "coveralls" : "cat ./coverage/lcov.info | coveralls"}, "jest" : {"testRegex" : "/__test__/.*.js", "clearMocks" : true}, "keywords" : ["ORM", "Salesforce", "JSForce", "Query"], "author" : "Stephen Bolton", "license" : "ISC", "standard" : {"env" : "jest"}, "devDependencies" : {"coveralls" : "^3.0.0", "jest" : "^22.4.2", "nock" : "^9.2.3", "standard" : "^10.0.2"}, "dependencies" : {"dot-prop" : "^4.1.1", "jsforce" : "^1.8.0", "ramda" : "^0.25.0", "superstruct" : "^0.5.1", "type-detect" : "^4.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "tonicExample": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "fix": {"type": "string"}, "test:int": {"type": "string"}, "test:all": {"type": "string"}, "coveralls": {"type": "string"}}, "required": ["test", "fix", "test:int", "test:all", "coveralls"]}, "jest": {"type": "object", "properties": {"testRegex": {"type": "string"}, "clearMocks": {"type": "boolean"}}, "required": ["testRegex", "clearMocks"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "standard": {"type": "object", "properties": {"env": {"type": "string"}}, "required": ["env"]}, "devDependencies": {"type": "object", "properties": {"coveralls": {"type": "string"}, "jest": {"type": "string"}, "nock": {"type": "string"}, "standard": {"type": "string"}}, "required": ["coveralls", "jest", "nock", "standard"]}, "dependencies": {"type": "object", "properties": {"dot-prop": {"type": "string"}, "jsforce": {"type": "string"}, "ramda": {"type": "string"}, "superstruct": {"type": "string"}, "type-detect": {"type": "string"}}, "required": ["dot-prop", "jsforce", "ramda", "superstruct", "type-detect"]}}, "required": ["name", "version", "description", "main", "tonicExample", "engines", "repository", "scripts", "jest", "keywords", "author", "license", "standard", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["node-cljs"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "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" : "PIDIE", "originalFilename" : "1.Hasan Basri.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 102084, "noUrut" : 1, "nama" : "HASAN BASRI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PIDIE", "originalFilename" : "2.Jailani.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 114685, "noUrut" : 2, "nama" : "JAILANI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PIDIE", "originalFilename" : "3.Nurliana.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 102265, "noUrut" : 3, "nama" : "NURLIANA, S.P.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "PIDIE", "originalFilename" : "5.Safira.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 241119, "noUrut" : 5, "nama" : "SAFIRA", "stringJenisKelamin" : "Perempuan"}]
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": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "chipped:block/red_stained_glass_1"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : "0x8c39afdf7b17f12c553208555e51ab86e69c35aa", "tool" : "osiris", "start" : 1564594081.4105098, "end" : 1564594084.7063205, "duration" : 3.2958106994628906, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"content" : "<p>Should these two be simp lemmas?</p>\n<div class=\"codehilite\"><pre><span></span><span class=\"kn\">theorem</span> <span class=\"n\">subset_union_left</span> <span class=\"o\">{</span><span class=\"n\">s\u2081</span> <span class=\"n\">s\u2082</span> <span class=\"o\">:</span> <span class=\"n\">finset</span> <span class=\"n\">\u03b1</span><span class=\"o\">}</span> <span class=\"o\">:</span> <span class=\"n\">s\u2081</span> <span class=\"err\">\u2286</span> <span class=\"n\">s\u2081</span> <span class=\"err\">\u222a</span> <span class=\"n\">s\u2082</span> <span class=\"o\">:=</span> <span class=\"bp\">\u03bb</span> <span class=\"n\">x</span><span class=\"o\">,</span> <span class=\"n\">mem_union_left</span> <span class=\"bp\">_</span>\n\n<span class=\"kn\">theorem</span> <span class=\"n\">subset_union_right</span> <span class=\"o\">{</span><span class=\"n\">s\u2081</span> <span class=\"n\">s\u2082</span> <span class=\"o\">:</span> <span class=\"n\">finset</span> <span class=\"n\">\u03b1</span><span class=\"o\">}</span> <span class=\"o\">:</span> <span class=\"n\">s\u2082</span> <span class=\"err\">\u2286</span> <span class=\"n\">s\u2081</span> <span class=\"err\">\u222a</span> <span class=\"n\">s\u2082</span> <span class=\"o\">:=</span> <span class=\"bp\">\u03bb</span> <span class=\"n\">x</span><span class=\"o\">,</span> <span class=\"n\">mem_union_right</span> <span class=\"bp\">_</span>\n</pre></div>", "id" : 133500344, "sender_full_name" : "Kenny Lau", "timestamp" : 1536313205}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"danfort": {"type": "string"}}, "required": ["danfort"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {}}, "MJExtension": {"type": "array", "items": {}}, "DFLogManager": {"type": "array", "items": {}}, "GTMBase64": {"type": "array", "items": {}}, "LSPopView": {"type": "array", "items": {}}, "SocketRocket": {"type": "array", "items": {}}}, "required": ["AFNetworking", "MJExtension", "DFLogManager", "GTMBase64", "LSPopView", "SocketRocket"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "LSRequest", "version" : "1.0.0", "summary" : "\u4e1a\u52a1\u5de5\u5177 - \u7f51\u7edc\u8bf7\u6c42", "description" : "\u7f51\u7edc\u8bf7\u6c42\u5de5\u5177\n\u66f4\u65b0\u8bf4\u660e\uff1a\n\u4ed3\u5e93\u8fc1\u79fb", "homepage" : "http://gitlab.evshine.cn/new-energy/ios/lskit/lsrequest", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"danfort" : "quanchengk@163.com"}, "source" : {"git" : "ssh://git@gitlab.evshine.cn:2022/new-energy/ios/lskit/lsrequest.git", "tag" : "1.0.0"}, "platforms" : {"ios" : "9.0"}, "source_files" : "LSRequest/Classes/**/*", "frameworks" : ["UIKit", "CoreTelephony"], "dependencies" : {"AFNetworking" : [], "MJExtension" : [], "DFLogManager" : [], "GTMBase64" : [], "LSPopView" : [], "SocketRocket" : []}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"danfort": {"type": "string"}}, "required": ["danfort"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {}}, "MJExtension": {"type": "array", "items": {}}, "DFLogManager": {"type": "array", "items": {}}, "GTMBase64": {"type": "array", "items": {}}, "LSPopView": {"type": "array", "items": {}}, "SocketRocket": {"type": "array", "items": {}}}, "required": ["AFNetworking", "MJExtension", "DFLogManager", "GTMBase64", "LSPopView", "SocketRocket"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"FFMC": {"type": "number"}, "ISI": {"type": "number"}, "BUI": {"type": "number"}, "season": {"type": "object", "properties": {"start_month": {"type": "integer"}, "start_day": {"type": "integer"}, "end_month": {"type": "integer"}, "end_day": {"type": "integer"}}, "required": ["start_month", "start_day", "end_month", "end_day"]}, "years": {"type": "array", "items": {"type": "integer"}}, "station_name": {"type": "string"}}, "required": ["FFMC", "ISI", "BUI", "season", "years", "station_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"FFMC" : 76.74332275390626, "ISI" : 1.709042870998383, "BUI" : 5.7091676235199, "season" : {"start_month" : 5, "start_day" : 1, "end_month" : 8, "end_day" : 31}, "years" : [2000], "station_name" : "ZZ COPPER CANYON (NEC)"}
json_instruct
{"type": "object", "properties": {"FFMC": {"type": "number"}, "ISI": {"type": "number"}, "BUI": {"type": "number"}, "season": {"type": "object", "properties": {"start_month": {"type": "integer"}, "start_day": {"type": "integer"}, "end_month": {"type": "integer"}, "end_day": {"type": "integer"}}, "required": ["start_month", "start_day", "end_month", "end_day"]}, "years": {"type": "array", "items": {"type": "integer"}}, "station_name": {"type": "string"}}, "required": ["FFMC", "ISI", "BUI", "season", "years", "station_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"taskToken": {"type": "string"}, "cause": {"type": "string"}}, "required": ["taskToken", "cause"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"taskToken" : "taskToken1234", "cause" : "Export for consignment 50df01e6-2e5e-4269-97e7-531a755b417d failed: No valid user found b2657adf-6e93-424f-b0f1-aadd26762a96: HTTP 404 Not Found"}
json_instruct
{"type": "object", "properties": {"taskToken": {"type": "string"}, "cause": {"type": "string"}}, "required": ["taskToken", "cause"], "$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": {"t_start": {"type": "number"}, "t_end": {"type": "number"}, "text": {"type": "string"}}, "required": ["t_start", "t_end", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"t_start" : 0.0, "t_end" : 4.507, "text" : "Die Rechnung, die Sie l\u00f6sen sollen, finden Sie hier."}, {"t_start" : 4.607, "t_end" : 9.607, "text" : "Ihre L\u00f6sung k\u00f6nnen Sie mit der Tastatur unten am Bildschirm eingeben."}, {"t_start" : 9.707, "t_end" : 14.707, "text" : "Sie k\u00f6nnen Ihre Eingabe best\u00e4tigen, indem Sie auf das H\u00e4ckchen tippen."}, {"t_start" : 14.807, "t_end" : 19.807, "text" : "Falls Sie sich vertippt haben, k\u00f6nnen Sie das mit dem Pfeil auf der rechten Seite wieder ausbessern."}, {"t_start" : 19.907, "t_end" : 24.907, "text" : "Sie sollen nun innerhalb von 5 Minuten so viele Aufgaben wie m\u00f6glich l\u00f6sen."}, {"t_start" : 24.907, "t_end" : 29.907, "text" : "Nach dieser ersten folgen noch einige \u00dcbungsaufgaben."}, {"t_start" : 30.007, "t_end" : 35.007, "text" : "Bitte nehmen Sie Ihr Ger\u00e4t in beide H\u00e4nde, sodass Sie den Bildschirm mit den Daumen gut erreichen k\u00f6nnen."}, {"t_start" : 35.007, "t_end" : 40.007, "text" : "Sobald dieser Text verschwunden ist, k\u00f6nnen Sie Ihre L\u00f6sung eingeben."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"t_start": {"type": "number"}, "t_end": {"type": "number"}, "text": {"type": "string"}}, "required": ["t_start", "t_end", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 1173030013, "parent" : 1173030, "name" : "TUALANG TEUNGOH", "latitude" : null, "longitude" : null, "postal" : [24414], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "source": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}}, "required": ["prepare"]}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@arisencore/js": {"type": "string"}, "fast-sha256": {"type": "string"}}, "required": ["@arisencore/js", "fast-sha256"]}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "microbundle": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "tslint-plugin-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/mocha", "@types/node", "microbundle", "mocha", "prettier", "ts-node", "tslint", "tslint-config-prettier", "tslint-plugin-prettier", "typescript"]}}, "required": ["name", "version", "description", "license", "module", "main", "types", "source", "scripts", "files", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "arisen-signing-request", "version" : "1.0.0", "description" : "ARISEN Signing Request (ASR / EEP-7) encoder and decoder", "license" : "MIT", "module" : "lib/index.js", "main" : "lib/index.umd.js", "types" : "lib/index.d.ts", "source" : "src/index.ts", "scripts" : {"prepare" : "make lib"}, "files" : ["lib/*", "src/*"], "dependencies" : {"@arisencore/js" : "1.0.2", "fast-sha256" : "^1.1.1"}, "devDependencies" : {"@types/mocha" : "^7.0.2", "@types/node" : "^13.9.0", "microbundle" : "^0.12.0-next.8", "mocha" : "^7.1.0", "prettier" : "^1.19.1", "ts-node" : "^8.2.0", "tslint" : "^6.0.0", "tslint-config-prettier" : "^1.18.0", "tslint-plugin-prettier" : "^2.0.1", "typescript" : "^3.8.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "source": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}}, "required": ["prepare"]}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@arisencore/js": {"type": "string"}, "fast-sha256": {"type": "string"}}, "required": ["@arisencore/js", "fast-sha256"]}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "microbundle": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "tslint-plugin-prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/mocha", "@types/node", "microbundle", "mocha", "prettier", "ts-node", "tslint", "tslint-config-prettier", "tslint-plugin-prettier", "typescript"]}}, "required": ["name", "version", "description", "license", "module", "main", "types", "source", "scripts", "files", "dependencies", "devDependencies"], "$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"}, "author": {"type": "string"}, "license": {"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"}}, "dependencies": {"type": "object", "properties": {"dot-prop": {"type": "string"}, "pkg-up": {"type": "string"}}, "required": ["dot-prop", "pkg-up"]}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "repository", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "homeconfjs", "version" : "0.1.2", "description" : "Global config files for cli apps helper", "main" : "index.js", "author" : "Mohammad Fares <faressoft.com@gmail.com>", "license" : "MIT", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/faressoft/homeconf.git"}, "keywords" : ["config", "configs", "configuration", "home", "root", "profile", "json", "appdata", "dotenv", "dot", "env", "cli", "tool", "dev", "terminal"], "dependencies" : {"dot-prop" : "^5.2.0", "pkg-up" : "^3.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "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"}}, "dependencies": {"type": "object", "properties": {"dot-prop": {"type": "string"}, "pkg-up": {"type": "string"}}, "required": ["dot-prop", "pkg-up"]}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "repository", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.75, 45.0], [137.75, 45.083333333333336], [137.875, 45.083333333333336], [137.875, 45.0], [137.75, 45.0]]]}, "properties" : {"code" : 673746, "url" : "http://madefor.github.io/0410/api/v1/673746.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/673746.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "docs": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "watch", "test", "docs", "prepublishOnly"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["type", "url", "homepage"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}}, "required": ["node-fetch"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-plugin-module-resolver": {"type": "string"}, "babel-preset-env": {"type": "string"}, "docma": {"type": "string"}, "jsdoc": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-plugin-add-module-exports", "babel-plugin-module-resolver", "babel-preset-env", "docma", "jsdoc", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "popcorn-api", "version" : "1.1.1", "description" : "A library to access the PopcornTime API", "main" : "dist/PopCorn", "types" : "./typings/index.d.ts", "scripts" : {"build" : "rm -rf ./dist && babel src --out-dir dist --copy-files", "watch" : "npm run build -- --watch", "test" : "node ./examples/example.js", "docs" : "node docs.js", "prepublishOnly" : "npm run build"}, "repository" : {"type" : "git", "url" : "git+https://github.com/nirewen/popcorn-api.git", "homepage" : "https://github.com/nirewen/popcorn-api"}, "keywords" : ["popcorn", "time", "api", "nodejs"], "author" : "nirewen", "license" : "MIT", "bugs" : {"url" : "https://github.com/nirewen/popcorn-api/issues"}, "homepage" : "https://github.com/nirewen/popcorn-api#readme", "dependencies" : {"node-fetch" : "^2.2.0"}, "devDependencies" : {"babel-cli" : "^6.26.0", "babel-core" : "^6.26.3", "babel-plugin-add-module-exports" : "^1.0.0", "babel-plugin-module-resolver" : "^3.1.1", "babel-preset-env" : "^1.7.0", "docma" : "^2.1.0", "jsdoc" : "^3.5.5", "typescript" : "^3.1.3"}}
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"}, "watch": {"type": "string"}, "test": {"type": "string"}, "docs": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "watch", "test", "docs", "prepublishOnly"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["type", "url", "homepage"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}}, "required": ["node-fetch"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-plugin-module-resolver": {"type": "string"}, "babel-preset-env": {"type": "string"}, "docma": {"type": "string"}, "jsdoc": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["babel-cli", "babel-core", "babel-plugin-add-module-exports", "babel-plugin-module-resolver", "babel-preset-env", "docma", "jsdoc", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 262487, "node" : [{"id" : 262487, "name" : "\u9ec4\u9017\u83cc", "nameCN" : "\u9ec4\u9017\u83cc", "image" : "//lain.bgm.tv/pic/cover/m/40/85/262487_CDHs4.jpg", "date" : "2017-05-20"}, {"id" : 262490, "name" : "\u9ec4\u9017\u83cc \u7b2c2\u5b63", "nameCN" : "\u9ec4\u9017\u83cc \u7b2c\u4e8c\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/78/31/262490_T7q61.jpg", "date" : "2018-09-19"}], "relate" : [{"relate" : "\u7eed\u96c6", "src" : 262487, "dst" : 262490}, {"relate" : "\u524d\u4f20", "src" : 262490, "dst" : 262487}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"1.2.0-beta.1": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.2": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.3": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.4": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.8": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.9": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}}, "required": ["1.2.0-beta.1", "1.2.0-beta.2", "1.2.0-beta.3", "1.2.0-beta.4", "1.2.0-beta.8", "1.2.0-beta.9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"1.2.0-beta.1" : {"memory" : 229010, "better-sqlite3" : 950, "memory-100x" : 175, "better-sqlite3-100x" : 19}, "1.2.0-beta.2" : {"memory" : 229935, "better-sqlite3" : 990, "memory-100x" : 165, "better-sqlite3-100x" : 20}, "1.2.0-beta.3" : {"memory" : 233524, "better-sqlite3" : 953, "memory-100x" : 176, "better-sqlite3-100x" : 21}, "1.2.0-beta.4" : {"memory" : 228319, "better-sqlite3" : 984, "memory-100x" : 176, "better-sqlite3-100x" : 22}, "1.2.0-beta.8" : {"memory" : 262831, "better-sqlite3" : 887, "memory-100x" : 172, "better-sqlite3-100x" : 20}, "1.2.0-beta.9" : {"memory" : 221915, "better-sqlite3" : 925, "memory-100x" : 158, "better-sqlite3-100x" : 20}}
json_instruct
{"type": "object", "properties": {"1.2.0-beta.1": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.2": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.3": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.4": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.8": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}, "1.2.0-beta.9": {"type": "object", "properties": {"memory": {"type": "integer"}, "better-sqlite3": {"type": "integer"}, "memory-100x": {"type": "integer"}, "better-sqlite3-100x": {"type": "integer"}}, "required": ["memory", "better-sqlite3", "memory-100x", "better-sqlite3-100x"]}}, "required": ["1.2.0-beta.1", "1.2.0-beta.2", "1.2.0-beta.3", "1.2.0-beta.4", "1.2.0-beta.8", "1.2.0-beta.9"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See df-sgn on Metamath](http://us.metamath.org/mpegif/df-sgn.html)"}], "names" : ["df-sgn"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_csgn", "#T_wceq", "#T_vx", "#T_cmpt--1", "#T_cxr", "#T_cmpt--2", "#T_cif--1", "#T_vx", "#T_wceq", "#T_cc0", "#T_cif--2", "#T_cc0", "#T_cif--3", "#T_cif--1", "#T_vx", "#T_clt", "#T_cc0", "#T_cif--2", "#T_cneg", "#T_c1", "#T_cif--3", "#T_c1"], "metaLanguage" : "METAMATH", "remarks" : " Signum function. Pronounced \"signum\" , otherwise it might be confused with \"sine\". Defined as \"sgn\" in ISO 80000-2:2009(E) operation 2-9.13. It is named \"sign\" (with the same definition) in the \"NIST Digital Library of Mathematical Functions\" , front introduction, \"Common Notations and Definitions\" section at ~ http://dlmf.nist.gov/front/introduction#Sx4 . We define this over ` RR* ` ( ~ df-xr ) instead of ` RR ` so that it can accept ` +oo ` and ` -oo ` . Note that ~ df-psgn defines the sign of a permutation, which is different. Value shown in ~ sgnval . (Contributed by David A. Wheeler, 15-May-2015.) ", "statement" : "df-sgn $p |- sgn = ( x e. RR* |-> if ( x = 0 , 0 , if ( x < 0 , -u 1 , 1 ) ) ) $."}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=993ef1c93df68cf3569d", "/css/app.css" : "/css/app.css?id=4b38067418198d81ede4"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"eventVersion": {"type": "string"}, "userIdentity": {"type": "object", "properties": {"type": {"type": "string"}, "principalId": {"type": "string"}, "arn": {"type": "string"}, "accountId": {"type": "string"}, "accessKeyId": {"type": "string"}, "userName": {"type": "string"}, "sessionContext": {"type": "object", "properties": {"sessionIssuer": {"type": "object", "properties": {}, "required": []}, "webIdFederationData": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"mfaAuthenticated": {"type": "string"}, "creationDate": {"type": "string"}}, "required": ["mfaAuthenticated", "creationDate"]}}, "required": ["sessionIssuer", "webIdFederationData", "attributes"]}}, "required": ["type", "principalId", "arn", "accountId", "accessKeyId", "userName", "sessionContext"]}, "eventTime": {"type": "string"}, "eventSource": {"type": "string"}, "eventName": {"type": "string"}, "awsRegion": {"type": "string"}, "sourceIPAddress": {"type": "string"}, "userAgent": {"type": "string"}, "requestParameters": {"type": "object", "properties": {"userName": {"type": "string"}, "sSHPublicKeyId": {"type": "string"}, "status": {"type": "string"}}, "required": ["userName", "sSHPublicKeyId", "status"]}, "responseElements": {"type": "null"}, "requestID": {"type": "string"}, "eventID": {"type": "string"}, "eventType": {"type": "string"}, "recipientAccountId": {"type": "string"}}, "required": ["eventVersion", "userIdentity", "eventTime", "eventSource", "eventName", "awsRegion", "sourceIPAddress", "userAgent", "requestParameters", "responseElements", "requestID", "eventID", "eventType", "recipientAccountId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"eventVersion" : "1.05", "userIdentity" : {"type" : "IAMUser", "principalId" : "AIDAQG3KU4HV6AOKCVI3N", "arn" : "arn:aws:iam::014719181291:user/users/fvogt", "accountId" : "014719181291", "accessKeyId" : "ASIAQG3KU4HV3WFP7HB3", "userName" : "fvogt", "sessionContext" : {"sessionIssuer" : {}, "webIdFederationData" : {}, "attributes" : {"mfaAuthenticated" : "true", "creationDate" : "2020-05-17T19:22:22Z"}}}, "eventTime" : "2020-05-17T21:47:11Z", "eventSource" : "iam.amazonaws.com", "eventName" : "UpdateSSHPublicKey", "awsRegion" : "us-east-1", "sourceIPAddress" : "198.27.223.45", "userAgent" : "console.amazonaws.com", "requestParameters" : {"userName" : "fvogt", "sSHPublicKeyId" : "APKAQG3KU4HV53DUBJ5X", "status" : "Inactive"}, "responseElements" : null, "requestID" : "5098d6cf-b767-473e-b156-dae0d589cb52", "eventID" : "2068cda6-4497-4309-9da4-5380f5e2d4f7", "eventType" : "AwsApiCall", "recipientAccountId" : "014719181291"}
json_instruct
{"type": "object", "properties": {"eventVersion": {"type": "string"}, "userIdentity": {"type": "object", "properties": {"type": {"type": "string"}, "principalId": {"type": "string"}, "arn": {"type": "string"}, "accountId": {"type": "string"}, "accessKeyId": {"type": "string"}, "userName": {"type": "string"}, "sessionContext": {"type": "object", "properties": {"sessionIssuer": {"type": "object", "properties": {}, "required": []}, "webIdFederationData": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"mfaAuthenticated": {"type": "string"}, "creationDate": {"type": "string"}}, "required": ["mfaAuthenticated", "creationDate"]}}, "required": ["sessionIssuer", "webIdFederationData", "attributes"]}}, "required": ["type", "principalId", "arn", "accountId", "accessKeyId", "userName", "sessionContext"]}, "eventTime": {"type": "string"}, "eventSource": {"type": "string"}, "eventName": {"type": "string"}, "awsRegion": {"type": "string"}, "sourceIPAddress": {"type": "string"}, "userAgent": {"type": "string"}, "requestParameters": {"type": "object", "properties": {"userName": {"type": "string"}, "sSHPublicKeyId": {"type": "string"}, "status": {"type": "string"}}, "required": ["userName", "sSHPublicKeyId", "status"]}, "responseElements": {"type": "null"}, "requestID": {"type": "string"}, "eventID": {"type": "string"}, "eventType": {"type": "string"}, "recipientAccountId": {"type": "string"}}, "required": ["eventVersion", "userIdentity", "eventTime", "eventSource", "eventName", "awsRegion", "sourceIPAddress", "userAgent", "requestParameters", "responseElements", "requestID", "eventID", "eventType", "recipientAccountId"], "$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#"}
["docker-mock", "etherworld", "level-net-client", "level-net-server", "peer-emitter", "peerjs-lobby", "procmon", "rp-voxel-server", "thunderstore", "verbose", "voxel-backup", "voxel-client", "voxel-server", "walkietalkie"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1905, 5], [1917, 6], [1918, 6], [1919, 10], [1922, 6], [1925, 6], [1926, 7], [1928, 7], [1930, 9], [1933, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"features": {"type": "object", "properties": {"name": {"type": "string"}, "vendor": {"type": "string"}}, "required": ["name", "vendor"]}}, "required": ["features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"features" : {"name" : "Trident Microsystems Blade 3D PCI/AGP (rev 3a)", "vendor" : "Trident"}}
json_instruct
{"type": "object", "properties": {"features": {"type": "object", "properties": {"name": {"type": "string"}, "vendor": {"type": "string"}}, "required": ["name", "vendor"]}}, "required": ["features"], "$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"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "FERTIN TABLET", "harga" : " Rp. 157.300/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Clomiphene citrate / Klomifen sitrat.", "indikasi" : "Infertilitas anovulatori, oligospermia.", "kontraindikasi" : "Hipersensitif atau alergi terhadap klomifen sitrat atau komponennya, hamil, gangguan hati, pendarahan abnormal pada uterus, disfungsi ovarium dan pituitari, kista ovarium, karsinoma endometrial.", "perhatian" : "Kemungkinan kehamilan ganda.", "efeksamping" : "Pembesaran ovarium reversibel, nyeri atau rasa tidak nyaman pada abdomen, mual, muntah, gangguan visual sementara, sakit kepala, pendarahan uterus abnormal, pusing , fatigue, insomnia, vertigo.", "indeksamanwanitahamil" : "X: Penelitian pada manusia dan hewan telah menunjukkan janin yang abnormal atau ada kejadian berbahaya pada janin berdasarkan pengalaman manusia atau keduanya, dan risiko penggunaan obat pada wanita hamil jelas melampaui keuntungannya. Obat dikontraindikasikan pada wanita yang sedang atau akan hamil.", "kemasan" : "Tablet 50 mg x 10.", "dosis" : "Infertilitas anovulatori : 1 x sehari 1 tablet selama 5 hari mulai hari ke-5 siklus haid atau setiap saat pada kasus amenore. Ovulasi biasanya terjadi dalam waktu 6-10 hari, setelah dosis terakhir. Jika tidak dapat ditambah 2 x sehari 1 tablet, selama 5 hari. Oligospermia : 1 x sehari 1 tablet selam 40 - 90 hari.", "penyajian" : "Dikonsumsi bersamaan dengan makanan atau tidak", "pabrik" : "Interbat.", "id" : "8127", "category_id" : "5"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}}, "required": ["docs:dev", "docs:build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}}, "required": ["vuepress"]}}, "required": ["name", "version", "description", "main", "directories", "repository", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cms-guide", "version" : "1.0.0", "description" : "CSC Mod Server Guide", "main" : "index.js", "directories" : {"doc" : "docs"}, "repository" : {"type" : "git", "url" : "git+https://github.com/hhui64/cms-guide.git"}, "scripts" : {"docs:dev" : "vuepress dev docs", "docs:build" : "vuepress build docs"}, "author" : "hhui64", "license" : "MIT", "devDependencies" : {"vuepress" : "^1.4.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}}, "required": ["docs:dev", "docs:build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}}, "required": ["vuepress"]}}, "required": ["name", "version", "description", "main", "directories", "repository", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/all.css": {"type": "string"}}, "required": ["/js/app.js", "/css/all.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=c3ae2e600243a35f1305", "/css/all.css" : "/css/all.css?id=5e8b7386cd80050cdc77"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/all.css": {"type": "string"}}, "required": ["/js/app.js", "/css/all.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 25725, "cartId" : "84dbaf06-5235-487e-a406-c431b0dce93f", "preferredProducts" : [], "productReviews" : [{"productId" : 2541, "reviewText" : "this payment is gracious.", "reviewDate" : "2017-11-17T13:54:00.1625423+02:00"}, {"productId" : 1981, "reviewText" : "this Assistant is brown.", "reviewDate" : "2019-01-07T18:04:01.2391768+02:00"}, {"productId" : 4989, "reviewText" : "heard about this on balearic beat radio, decided to give it a try.", "reviewDate" : "2019-12-28T20:29:56.7783954+02:00"}, {"productId" : 3730, "reviewText" : "My macaroni penguin loves to play with it.", "reviewDate" : "2019-12-17T07:53:06.6953816+02:00"}, {"productId" : 547, "reviewText" : "this methodical is nifty.", "reviewDate" : "2016-10-31T11:34:56.7996266+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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "key": {"type": "string"}, "secret": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "source": {"type": "string"}}, "required": ["height", "width", "source"]}}, "synclets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}}, "required": ["name", "frequency"]}}}, "required": ["name", "desc", "key", "secret", "icons", "synclets"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Yammer", "desc" : "Sync messages, users, and groups", "key" : "Client ID", "secret" : "Client secret", "icons" : [{"height" : 16, "width" : 16, "source" : "http://assets.singly.com/service-icons/16px/yammer.png"}, {"height" : 24, "width" : 24, "source" : "http://assets.singly.com/service-icons/24px/yammer.png"}, {"height" : 32, "width" : 32, "source" : "http://assets.singly.com/service-icons/32px/yammer.png"}], "synclets" : [{"name" : "self", "frequency" : 7200}, {"name" : "messages", "frequency" : 600}, {"name" : "users", "frequency" : 7200}, {"name" : "groups", "frequency" : 7200}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "key": {"type": "string"}, "secret": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "source": {"type": "string"}}, "required": ["height", "width", "source"]}}, "synclets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}}, "required": ["name", "frequency"]}}}, "required": ["name", "desc", "key", "secret", "icons", "synclets"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"site_name": {"type": "string"}, "contact_email": {"type": "string"}, "seo_description": {"type": "null"}, "seo_keyword": {"type": "null"}}, "required": ["site_name", "contact_email", "seo_description", "seo_keyword"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"site_name" : "answer - Powered by answer", "contact_email" : "719768607@qq.com", "seo_description" : null, "seo_keyword" : null}
json_instruct
{"type": "object", "properties": {"site_name": {"type": "string"}, "contact_email": {"type": "string"}, "seo_description": {"type": "null"}, "seo_keyword": {"type": "null"}}, "required": ["site_name", "contact_email", "seo_description", "seo_keyword"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"jsx": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "sourceMap": {"type": "boolean"}, "declaration": {"type": "boolean"}, "declarationDir": {"type": "string"}}, "required": ["jsx", "esModuleInterop", "resolveJsonModule", "sourceMap", "declaration", "declarationDir"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compilerOptions" : {"jsx" : "react", "esModuleInterop" : true, "resolveJsonModule" : true, "sourceMap" : true, "declaration" : true, "declarationDir" : "dist"}}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"jsx": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "sourceMap": {"type": "boolean"}, "declaration": {"type": "boolean"}, "declarationDir": {"type": "string"}}, "required": ["jsx", "esModuleInterop", "resolveJsonModule", "sourceMap", "declaration", "declarationDir"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nvar RightCircleOutline = {\n name: 'right-circle',\n theme: 'outline',\n icon: {\n tag: 'svg',\n attrs: {\n viewBox: '64 64 896 896',\n focusable: false\n },\n children: [{\n tag: 'path',\n attrs: {\n d: 'M666.7 505.5l-246-178A8 8 0 0 0 408 334v46.9c0 10.2 4.9 19.9 13.2 25.9L566.6 512 421.2 617.2c-8.3 6-13.2 15.6-13.2 25.9V690c0 6.5 7.4 10.3 12.7 6.5l246-178c4.4-3.2 4.4-9.8 0-13z'\n }\n }, {\n tag: 'path',\n attrs: {\n d: 'M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z'\n }\n }]\n }\n};\nexports.default = RightCircleOutline;", "map" : null, "metadata" : {}, "sourceType" : "script"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "friendsofphp/php-cs-fixer": {"type": "string"}, "infection/infection": {"type": "string"}, "phly/keep-a-changelog": {"type": "string"}}, "required": ["phpunit/phpunit", "phpstan/phpstan", "friendsofphp/php-cs-fixer", "infection/infection", "phly/keep-a-changelog"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Gravatalonga\\Hydrator\\": {"type": "string"}}, "required": ["Gravatalonga\\Hydrator\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "scripts": {"type": "object", "properties": {"phpstan": {"type": "string"}, "fix-style": {"type": "string"}, "test": {"type": "string"}}, "required": ["phpstan", "fix-style", "test"]}}, "required": ["name", "description", "type", "require-dev", "autoload", "autoload-dev", "minimum-stability", "license", "authors", "require", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gravatalonga/hydrator", "description" : "Hydrator class from array to object or objecto to array", "type" : "library", "require-dev" : {"phpunit/phpunit" : "^9.5", "phpstan/phpstan" : "^0.12.83", "friendsofphp/php-cs-fixer" : "^2.18", "infection/infection" : "^0.21.5", "phly/keep-a-changelog" : "^2.11"}, "autoload" : {"psr-4" : {"Gravatalonga\\Hydrator\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Tests\\" : "tests/"}}, "minimum-stability" : "stable", "license" : "MIT", "authors" : [{"name" : "Jonathan Fontes", "email" : "jonathan.alexey16@gmail.com"}], "require" : {"php" : "^8.0 || ^7.4"}, "scripts" : {"phpstan" : "phpstan analyze -l max src", "fix-style" : "php-cs-fixer fix", "test" : "XDEBUG_MODE=coverage phpunit"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "friendsofphp/php-cs-fixer": {"type": "string"}, "infection/infection": {"type": "string"}, "phly/keep-a-changelog": {"type": "string"}}, "required": ["phpunit/phpunit", "phpstan/phpstan", "friendsofphp/php-cs-fixer", "infection/infection", "phly/keep-a-changelog"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Gravatalonga\\Hydrator\\": {"type": "string"}}, "required": ["Gravatalonga\\Hydrator\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "scripts": {"type": "object", "properties": {"phpstan": {"type": "string"}, "fix-style": {"type": "string"}, "test": {"type": "string"}}, "required": ["phpstan", "fix-style", "test"]}}, "required": ["name", "description", "type", "require-dev", "autoload", "autoload-dev", "minimum-stability", "license", "authors", "require", "scripts"], "$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"}, "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" : "Raiden Shogun Dancing Senorita While Some Other Two Doesn't Care About It\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "genshinmmd4u", "description" : "Hi!undefinedIundefinedamundefinedcreatingundefinedcontentsundefinedofundefinedMMDundefinedforundefinedGenshinundefinedImpact.<br>Followundefinedmeundefinedonundefinedpatreonundefinedtoundefinedreceiveundefinedexclusiveundefinedvideos.<br><aundefinedhref='https://www.patreon.com/genshinmmd4u'>https://www.patreon.com/genshinmmd4u</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2357777/thumbnail-2357777_0004.jpg?itok=9QQ2teDc", "download" : "https://ecchi.iwara.tv/api/video/bykjpczl06flqxqbq", "origin" : "https://ecchi.iwara.tv/videos/bykjpczl06flqxqbq"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"mermaid": {"type": "string"}}, "required": ["mermaid"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : {"mermaid" : "^8.4.0"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"mermaid": {"type": "string"}}, "required": ["mermaid"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"bucket": {"type": "string"}, "source": {"type": "string"}, "directory": {"type": "string"}, "destination": {"type": "string"}, "object_prefix": {"type": "string"}, "dml": {"type": "string"}, "header": {"type": "boolean"}, "sfts_path": {"type": "string"}, "extension": {"type": "string"}, "sql_parse_key": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["bucket", "source", "directory", "destination", "object_prefix", "dml", "header", "sfts_path", "extension", "sql_parse_key", "start_date", "end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bucket" : "sp-ca-bc-gov-131565110619-12-microservices", "source" : "client", "directory" : "pmrp_gdx/pmrp_all", "destination" : "processed", "object_prefix" : "pmrp", "dml" : "pmrp_date_range.sql", "header" : false, "sfts_path" : "SBC/Shared/Secured/SS_BI/SS_GDX_IN", "extension" : ".csv", "sql_parse_key" : "pmrp_date_range", "start_date" : "min", "end_date" : "max"}
json_instruct
{"type": "object", "properties": {"bucket": {"type": "string"}, "source": {"type": "string"}, "directory": {"type": "string"}, "destination": {"type": "string"}, "object_prefix": {"type": "string"}, "dml": {"type": "string"}, "header": {"type": "boolean"}, "sfts_path": {"type": "string"}, "extension": {"type": "string"}, "sql_parse_key": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}}, "required": ["bucket", "source", "directory", "destination", "object_prefix", "dml", "header", "sfts_path", "extension", "sql_parse_key", "start_date", "end_date"], "$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"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"johnitvn\\cliruntime\\": {"type": "string"}}, "required": ["johnitvn\\cliruntime\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "johnitvn/cli-runtime", "description" : "PHP runtime execute command library", "type" : "library", "keywords" : ["cli", "runtime", "execute"], "license" : "Apache-2.0", "authors" : [{"name" : "John Martin", "email" : "john.itvn@gmail.com", "homepage" : "https://github.com/johnitvn?tab=repositories"}], "require" : {"php" : ">=5.3.2"}, "autoload" : {"psr-4" : {"johnitvn\\cliruntime\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"johnitvn\\cliruntime\\": {"type": "string"}}, "required": ["johnitvn\\cliruntime\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 2, "nazev" : "Bene\ufffdov"}, "clipped" : true, "id" : "7eadc77a14"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 5, "nazev" : "Kol\ufffdn"}, "clipped" : true, "id" : "1e458db862"}]}}, "type" : "Topology", "transform" : {"translate" : [14.853515624999972, 49.86631672953868], "scale" : [4.291534423826737e-05, 2.7653970894075952e-05]}, "arcs" : [[[0, 745], [31, -1], [66, -74], [11, -224], [60, -57], [128, -71], [142, 114], [67, 44], [7, 90], [313, 91], [101, 80], [-1, 249], [99, 32], [0, -1018], [-1024, 0], [0, 745]], [[1024, 1018], [-99, -32], [1, -249], [-101, -80], [-313, -91], [-7, -90], [-67, -44], [-142, -114], [-128, 71], [-60, 57], [-11, 224], [-66, 74], [-31, 1], [0, 279], [1024, 0], [0, -6]]]}
json_instruct
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nazev": {"type": "string"}}, "required": ["id", "nazev"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "mitihtihan", "h" : [{"d" : [{"f" : "\u628a\u2026\u6296\u843d\u4e86\u3001\u5f48\u53bb\u4e86\u3001\u62cd\u6389\u4e86\u3002"}, {"f" : "\u6307\u6240\u6296\u843d\u7684\u3001\u5f48\u6389\u7684\uff08\u6771\u897f\uff09\u3002", "s" : ["`mitiktikan~"]}]}], "stem" : "tihtih"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type": "string"}, "Language": {"type": "string"}, "Country": {"type": "string"}, "Awards": {"type": "string"}, "Poster": {"type": "string"}, "Ratings": {"type": "array", "items": {"type": "object", "properties": {"Source": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Source", "Value"]}}, "Metascore": {"type": "string"}, "imdbRating": {"type": "string"}, "imdbVotes": {"type": "string"}, "imdbID": {"type": "string"}, "Type": {"type": "string"}, "DVD": {"type": "string"}, "BoxOffice": {"type": "string"}, "Production": {"type": "string"}, "Website": {"type": "string"}, "Response": {"type": "string"}}, "required": ["Title", "Year", "Rated", "Released", "Runtime", "Genre", "Director", "Writer", "Actors", "Plot", "Language", "Country", "Awards", "Poster", "Ratings", "Metascore", "imdbRating", "imdbVotes", "imdbID", "Type", "DVD", "BoxOffice", "Production", "Website", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Title" : "Star Wars: Episode IV - A New Hope", "Year" : "1977", "Rated" : "PG", "Released" : "25 May 1977", "Runtime" : "121 min", "Genre" : "Action, Adventure, Fantasy, Sci-Fi", "Director" : "George Lucas", "Writer" : "George Lucas", "Actors" : "Mark Hamill, Harrison Ford, Carrie Fisher, Peter Cushing", "Plot" : "Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth Vader.", "Language" : "English", "Country" : "USA", "Awards" : "Won 6 Oscars. Another 50 wins & 28 nominations.", "Poster" : "https://m.media-amazon.com/images/M/MV5BNzVlY2MwMjktM2E4OS00Y2Y3LWE3ZjctYzhkZGM3YzA1ZWM2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg", "Ratings" : [{"Source" : "Internet Movie Database", "Value" : "8.6/10"}, {"Source" : "Rotten Tomatoes", "Value" : "93%"}, {"Source" : "Metacritic", "Value" : "90/100"}], "Metascore" : "90", "imdbRating" : "8.6", "imdbVotes" : "1,092,532", "imdbID" : "tt0076759", "Type" : "movie", "DVD" : "21 Sep 2004", "BoxOffice" : "N/A", "Production" : "20th Century Fox", "Website" : "http://www.starwars.com/episode-iv/", "Response" : "True"}
json_instruct
{"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type": "string"}, "Language": {"type": "string"}, "Country": {"type": "string"}, "Awards": {"type": "string"}, "Poster": {"type": "string"}, "Ratings": {"type": "array", "items": {"type": "object", "properties": {"Source": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Source", "Value"]}}, "Metascore": {"type": "string"}, "imdbRating": {"type": "string"}, "imdbVotes": {"type": "string"}, "imdbID": {"type": "string"}, "Type": {"type": "string"}, "DVD": {"type": "string"}, "BoxOffice": {"type": "string"}, "Production": {"type": "string"}, "Website": {"type": "string"}, "Response": {"type": "string"}}, "required": ["Title", "Year", "Rated", "Released", "Runtime", "Genre", "Director", "Writer", "Actors", "Plot", "Language", "Country", "Awards", "Poster", "Ratings", "Metascore", "imdbRating", "imdbVotes", "imdbID", "Type", "DVD", "BoxOffice", "Production", "Website", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"}