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": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "material_elements:block/rods/steel_rod_tee"}
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": {"main": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"main": {"type": "string"}, "test": {"type": "string"}, "openUrl": {"type": "string"}}, "required": ["main", "test", "openUrl"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bufferutil": {"type": "string"}, "cheerio": {"type": "string"}, "mysql2": {"type": "string"}, "puppeteer": {"type": "string"}, "utf-8-validate": {"type": "string"}}, "required": ["bufferutil", "cheerio", "mysql2", "puppeteer", "utf-8-validate"]}}, "required": ["main", "name", "version", "description", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : "src/okooo.js", "name" : "bolool", "version" : "1.0.0", "description" : "bolool data jingcai", "scripts" : {"main" : "node src/okooo.js", "test" : "node test/main.js", "openUrl" : "node test/openUrl.js"}, "author" : "zw", "license" : "ISC", "dependencies" : {"bufferutil" : "^4.0.1", "cheerio" : "^1.0.0-rc.5", "mysql2" : "^2.2.5", "puppeteer" : "^5.5.0", "utf-8-validate" : "^5.0.2"}}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"main": {"type": "string"}, "test": {"type": "string"}, "openUrl": {"type": "string"}}, "required": ["main", "test", "openUrl"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bufferutil": {"type": "string"}, "cheerio": {"type": "string"}, "mysql2": {"type": "string"}, "puppeteer": {"type": "string"}, "utf-8-validate": {"type": "string"}}, "required": ["bufferutil", "cheerio", "mysql2", "puppeteer", "utf-8-validate"]}}, "required": ["main", "name", "version", "description", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"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": {"meritoo/common-bundle": {"type": "string"}}, "required": ["meritoo/common-bundle"]}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "infection/infection": {"type": "string"}, "php-coveralls/php-coveralls": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "sebastian/phpcpd": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "symfony/phpunit-bridge": {"type": "string"}, "vimeo/psalm": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "infection/infection", "php-coveralls/php-coveralls", "phpstan/phpstan", "phpunit/phpunit", "sebastian/phpcpd", "squizlabs/php_codesniffer", "symfony/phpunit-bridge", "vimeo/psalm"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Meritoo\\AdminBundle\\": {"type": "string"}}, "required": ["Meritoo\\AdminBundle\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Meritoo\\Test\\AdminBundle\\": {"type": "string"}}, "required": ["Meritoo\\Test\\AdminBundle\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "description", "type", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "meritoo/admin-bundle", "description" : "Admin panel. Free, customizable. Based on Symfony framework & Bootstrap.", "type" : "symfony-bundle", "license" : "MIT", "authors" : [{"name" : "Meritoo.pl", "email" : "github@meritoo.pl", "homepage" : "http://www.meritoo.pl"}], "require" : {"meritoo/common-bundle" : "^0.1.24"}, "require-dev" : {"friendsofphp/php-cs-fixer" : "^2.15", "infection/infection" : "^0.13.1", "php-coveralls/php-coveralls" : "^2.1", "phpstan/phpstan" : "^0.11.8", "phpunit/phpunit" : "^8.1", "sebastian/phpcpd" : "^4.1", "squizlabs/php_codesniffer" : "^3.4", "symfony/phpunit-bridge" : "^4.3", "vimeo/psalm" : "^3.3"}, "autoload" : {"psr-4" : {"Meritoo\\AdminBundle\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Meritoo\\Test\\AdminBundle\\" : "tests/"}}, "config" : {"sort-packages" : true}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"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": {"meritoo/common-bundle": {"type": "string"}}, "required": ["meritoo/common-bundle"]}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "infection/infection": {"type": "string"}, "php-coveralls/php-coveralls": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "sebastian/phpcpd": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "symfony/phpunit-bridge": {"type": "string"}, "vimeo/psalm": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "infection/infection", "php-coveralls/php-coveralls", "phpstan/phpstan", "phpunit/phpunit", "sebastian/phpcpd", "squizlabs/php_codesniffer", "symfony/phpunit-bridge", "vimeo/psalm"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Meritoo\\AdminBundle\\": {"type": "string"}}, "required": ["Meritoo\\AdminBundle\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Meritoo\\Test\\AdminBundle\\": {"type": "string"}}, "required": ["Meritoo\\Test\\AdminBundle\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "description", "type", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"1465": {"type": "string"}}, "required": ["1465"]}, "timeto": {"type": "object", "properties": {"1465": {"type": "number"}}, "required": ["1465"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9295, "title" : ["[Bagorom's Cartage]"], "description" : ["Exposed oak rafters line the ceiling and house large crates adorned with packing labels written in various tongues. Resting at an angle over a low counter is a wide rung ladder, its hooked end binding it to track upon one of the rafters. A low bookshelf is set behind the counter holding journals and neatly stacked shipping documents. Dusty windows set to either side of the entryway allow a bit of sunlight to stream into the room.", "Exposed oak rafters line the ceiling, their depths shrouded in inky blackness. Resting at an angle over a low counter is a wide rung ladder, its hooked end binding it to track upon one of the rafters. The low bookshelf that is set behind the counter houses a small brass lamp, which illuminates some journals and neatly stacked shipping documents that rest upon its shelves. Dusty windows set to either side of the entryway allow a bit of moonlight to stream into the room."], "paths" : ["Obvious exits: out"], "location" : "Solhaven", "wayto" : {"1465" : "out"}, "timeto" : {"1465" : 0.2}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"1465": {"type": "string"}}, "required": ["1465"]}, "timeto": {"type": "object", "properties": {"1465": {"type": "number"}}, "required": ["1465"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-pg96-vwx3-63fm", "modified" : "2022-05-01T01:51:07Z", "published" : "2022-05-01T01:51:07Z", "aliases" : ["CVE-2005-0653"], "details" : "phpMyAdmin 2.6.1 does not properly grant permissions on tables with an underscore in the name, which grants remote authenticated users more privileges than intended.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-0653"}, {"type" : "WEB", "url" : "http://bugs.gentoo.org/show_bug.cgi?id=83792"}, {"type" : "WEB", "url" : "http://www.gentoo.org/security/en/glsa/glsa-200503-07.xml"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author_metadata": {"type": "object", "properties": {"username": {"type": "string"}, "id": {"type": "string"}}, "required": ["username", "id"]}, "question_metadata": {"type": "object", "properties": {"score": {"type": "integer"}, "id": {"type": "string"}, "tags": {"type": "string"}, "views": {"type": "integer"}}, "required": ["score", "id", "tags", "views"]}, "text": {"type": "string"}, "question": {"type": "object", "properties": {"subtitle": {"type": "string"}, "title": {"type": "string"}}, "required": ["subtitle", "title"]}, "user_metadata": {"type": "object", "properties": {"username": {"type": "string"}, "reputation": {"type": "integer"}, "id": {"type": "string"}}, "required": ["username", "reputation", "id"]}, "answer_metadata": {"type": "object", "properties": {"accepted": {"type": "integer"}, "length": {"type": "integer"}, "score": {"type": "integer"}, "upModVotes": {"type": "integer"}, "downModVotes": {"type": "integer"}, "id": {"type": "string"}}, "required": ["accepted", "length", "score", "upModVotes", "downModVotes", "id"]}, "id": {"type": "string"}}, "required": ["author_metadata", "question_metadata", "text", "question", "user_metadata", "answer_metadata", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author_metadata" : {"username" : "MrDatabase", "id" : "72"}, "question_metadata" : {"score" : 37, "id" : "110", "tags" : "<usa><money><exchange><eu><eurozone>", "views" : 47131}, "text" : "I asked this question earlier and it would seem that the consensus is exchange some money before you go and take it with you, and then get the rest from ATM's while in the country.\n", "question" : {"subtitle" : "I'm traveling from the US to Europe in a few weeks. When and what is the best method of exchanging dollars for Euros? \nI imagine there's options like:\n\nat the airport when you arrive in Europe\nat a bank in the US before you leave\nat a bank in Europe upon arriving\n\n", "title" : "What is the best method for exchanging dollars for Euros?"}, "user_metadata" : {"username" : "Darren Kopp", "reputation" : 1124, "id" : "10"}, "answer_metadata" : {"accepted" : 0, "length" : 181, "score" : 7, "upModVotes" : 10, "downModVotes" : 3, "id" : "113"}, "id" : "db614f4175663c9e77808c48348ffb1f"}
json_instruct
{"type": "object", "properties": {"author_metadata": {"type": "object", "properties": {"username": {"type": "string"}, "id": {"type": "string"}}, "required": ["username", "id"]}, "question_metadata": {"type": "object", "properties": {"score": {"type": "integer"}, "id": {"type": "string"}, "tags": {"type": "string"}, "views": {"type": "integer"}}, "required": ["score", "id", "tags", "views"]}, "text": {"type": "string"}, "question": {"type": "object", "properties": {"subtitle": {"type": "string"}, "title": {"type": "string"}}, "required": ["subtitle", "title"]}, "user_metadata": {"type": "object", "properties": {"username": {"type": "string"}, "reputation": {"type": "integer"}, "id": {"type": "string"}}, "required": ["username", "reputation", "id"]}, "answer_metadata": {"type": "object", "properties": {"accepted": {"type": "integer"}, "length": {"type": "integer"}, "score": {"type": "integer"}, "upModVotes": {"type": "integer"}, "downModVotes": {"type": "integer"}, "id": {"type": "string"}}, "required": ["accepted", "length", "score", "upModVotes", "downModVotes", "id"]}, "id": {"type": "string"}}, "required": ["author_metadata", "question_metadata", "text", "question", "user_metadata", "answer_metadata", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : 92983, "cartId" : "457691bf-1609-4a34-b01a-82653c8edf13", "preferredProducts" : [4542, 4127, 219, 4359, 2629, 2819, 464, 1813, 854, 562], "productReviews" : [{"productId" : 962, "reviewText" : "My co-worker Alek has one of these. He says it looks white.", "reviewDate" : "2016-12-09T02:39:30.813682+02:00"}, {"productId" : 4324, "reviewText" : "This Lake works really well. It sympathetically improves my baseball by a lot.", "reviewDate" : "2016-12-31T09:24:23.966382+02: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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-03-08T18:00:00Z", "Temp" : 13.4, "RelHum" : 84, "WindSpeed" : 0.6, "WindDir" : 330}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "arcanogeology:block/cobbled_skiratite"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ClassName": {"type": "string"}, "Size": {"type": "integer"}, "Grade": {"type": "integer"}, "Type": {"type": "string"}, "Classification": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}, "Manufacturer": {"type": "object", "properties": {"Code": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Code", "Name"]}, "Cooler": {"type": "object", "properties": {"Rate": {"type": "number"}}, "required": ["Rate"]}, "Durability": {"type": "object", "properties": {"Health": {"type": "number"}, "Lifetime": {"type": "number"}}, "required": ["Health", "Lifetime"]}, "PowerConnection": {"type": "object", "properties": {"PowerBase": {"type": "number"}, "PowerDraw": {"type": "number"}}, "required": ["PowerBase", "PowerDraw"]}, "HeatConnection": {"type": "object", "properties": {"ThermalEnergyBase": {"type": "number"}, "ThermalEnergyDraw": {"type": "number"}, "CoolingRate": {"type": "number"}}, "required": ["ThermalEnergyBase", "ThermalEnergyDraw", "CoolingRate"]}}, "required": ["ClassName", "Size", "Grade", "Type", "Classification", "Name", "Description", "Manufacturer", "Cooler", "Durability", "PowerConnection", "HeatConnection"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ClassName" : "COOL_LPLT_S02_ColdSnap_SCItem", "Size" : 2, "Grade" : 3, "Type" : "Cooler.UNDEFINED", "Classification" : "Ship.Cooler", "Name" : "ColdSnap", "Description" : "Item Type: Cooler\nManufacturer: Lightning Power Ltd. \nSize: 2\nGrade: C\nClass: Civilian\n\nWell-balanced performance is the hallmark of the ColdSnap cooler from Lightning Power Ltd., thanks to its ability to easily process the extra heat your ship generates during your day-to-day travels.", "Manufacturer" : {"Code" : "LPLT", "Name" : "Lightning Power Ltd."}, "Cooler" : {"Rate" : 4000000.0}, "Durability" : {"Health" : 500.0, "Lifetime" : 40.0}, "PowerConnection" : {"PowerBase" : 16.0, "PowerDraw" : 24.0}, "HeatConnection" : {"ThermalEnergyBase" : 10.0, "ThermalEnergyDraw" : 20.0, "CoolingRate" : 1.0}}
json_instruct
{"type": "object", "properties": {"ClassName": {"type": "string"}, "Size": {"type": "integer"}, "Grade": {"type": "integer"}, "Type": {"type": "string"}, "Classification": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}, "Manufacturer": {"type": "object", "properties": {"Code": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Code", "Name"]}, "Cooler": {"type": "object", "properties": {"Rate": {"type": "number"}}, "required": ["Rate"]}, "Durability": {"type": "object", "properties": {"Health": {"type": "number"}, "Lifetime": {"type": "number"}}, "required": ["Health", "Lifetime"]}, "PowerConnection": {"type": "object", "properties": {"PowerBase": {"type": "number"}, "PowerDraw": {"type": "number"}}, "required": ["PowerBase", "PowerDraw"]}, "HeatConnection": {"type": "object", "properties": {"ThermalEnergyBase": {"type": "number"}, "ThermalEnergyDraw": {"type": "number"}, "CoolingRate": {"type": "number"}}, "required": ["ThermalEnergyBase", "ThermalEnergyDraw", "CoolingRate"]}}, "required": ["ClassName", "Size", "Grade", "Type", "Classification", "Name", "Description", "Manufacturer", "Cooler", "Durability", "PowerConnection", "HeatConnection"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "header": {"type": "array", "items": {}}, "url": {"type": "object", "properties": {"raw": {"type": "string"}, "protocol": {"type": "string"}, "host": {"type": "array", "items": {"type": "string"}}, "port": {"type": "string"}, "path": {"type": "array", "items": {"type": "string"}}}, "required": ["raw", "protocol", "host", "port", "path"]}, "description": {"type": "string"}}, "required": ["method", "header", "url", "description"]}, "response": {"type": "array", "items": {}}}, "required": ["name", "request", "response"]}}, "protocolProfileBehavior": {"type": "object", "properties": {}, "required": []}}, "required": ["info", "item", "protocolProfileBehavior"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"info" : {"_postman_id" : "3aa3d7ef-c9a3-43cf-96ce-cd48c86e0b73", "name" : "X4RestServer", "schema" : "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"}, "item" : [{"name" : "http://localhost:3000/stop", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "http://localhost:3000/stop", "protocol" : "http", "host" : ["localhost"], "port" : "3000", "path" : ["stop"]}, "description" : "Stops the server and ejects dll"}, "response" : []}, {"name" : "http://localhost:3000/soft-target", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "http://localhost:3000/soft-target", "protocol" : "http", "host" : ["localhost"], "port" : "3000", "path" : ["soft-target"]}, "description" : "Get universeId of current target"}, "response" : []}, {"name" : "http://localhost:3000/component-details", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "http://localhost:3000/component-details?componentId=9427879&connectionName=gibberish", "protocol" : "http", "host" : ["localhost"], "port" : "3000", "path" : ["component-details"], "query" : [{"key" : "componentId", "value" : "9427879"}, {"key" : "connectionName", "value" : "gibberish"}]}, "description" : "Get Info about universe object"}, "response" : []}], "protocolProfileBehavior" : {}}
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "header": {"type": "array", "items": {}}, "url": {"type": "object", "properties": {"raw": {"type": "string"}, "protocol": {"type": "string"}, "host": {"type": "array", "items": {"type": "string"}}, "port": {"type": "string"}, "path": {"type": "array", "items": {"type": "string"}}}, "required": ["raw", "protocol", "host", "port", "path"]}, "description": {"type": "string"}}, "required": ["method", "header", "url", "description"]}, "response": {"type": "array", "items": {}}}, "required": ["name", "request", "response"]}}, "protocolProfileBehavior": {"type": "object", "properties": {}, "required": []}}, "required": ["info", "item", "protocolProfileBehavior"], "$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": {}, "required": []}, "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", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gf-loader", "version" : "2.0.2", "description" : "Unofficial library to manage and load Google Fonts.", "main" : "gf-loader.js", "scripts" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/ezaca/gf-loader.git"}, "keywords" : ["google", "fonts", "api", "javascript", "browser"], "author" : "Eliakim Zacarias", "license" : "MIT", "bugs" : {"url" : "https://github.com/ezaca/gf-loader/issues"}, "homepage" : "https://github.com/ezaca/gf-loader#README.MD"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "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", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "encryption": {"type": "array", "items": {"type": "object", "properties": {"wep": {"type": "string"}, "count": {"type": "integer"}}, "required": ["wep", "count"]}}}, "required": ["name", "code", "encryption"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Croatia", "code" : "HR", "encryption" : [{"wep" : "2", "count" : 418540}, {"wep" : "Y", "count" : 90255}, {"wep" : "?", "count" : 67781}, {"wep" : "W", "count" : 57192}, {"wep" : "N", "count" : 10657}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "encryption": {"type": "array", "items": {"type": "object", "properties": {"wep": {"type": "string"}, "count": {"type": "integer"}}, "required": ["wep", "count"]}}}, "required": ["name", "code", "encryption"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1971, 7], [1972, 11], [1973, 11], [1974, 14], [1975, 17], [1976, 19], [1977, 31], [1978, 33], [1979, 38], [1980, 33], [1981, 57], [1982, 54], [1983, 37], [1984, 51], [1985, 43], [1986, 60], [1987, 61], [1988, 64], [1989, 66], [1990, 66], [1991, 59], [1992, 61], [1993, 47], [1994, 49], [1995, 44], [1996, 40], [1997, 38], [1998, 45], [1999, 54], [2000, 30], [2001, 47], [2002, 37], [2003, 42], [2004, 36], [2005, 39], [2006, 33], [2007, 40], [2008, 14], [2009, 22], [2010, 18], [2011, 12], [2012, 10], [2013, 8], [2014, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Bourr\u00e9ac", "circ" : "2\u00e8me circonscription", "dpt" : "Hautes-Pyr\u00e9n\u00e9es", "inscrits" : 74, "abs" : 20, "votants" : 54, "blancs" : 2, "nuls" : 0, "exp" : 52, "res" : [{"nuance" : "RDG", "nom" : "Mme Jeanine DUBI\u00c9", "voix" : 36}, {"nuance" : "REM", "nom" : "Mme Marie-Agn\u00e8s STARICKY", "voix" : 16}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"coupon_amount": {"type": "null"}, "coupon_description": {"type": "null"}, "created_at": {"type": "string"}, "description": {"type": "string"}, "gift_card_amount": {"type": "null"}, "outstanding_balance": {"type": "string"}, "price": {"type": "string"}, "quantity": {"type": "integer"}, "status": {"type": "string"}, "subtotal": {"type": "string"}, "tax": {"type": "string"}, "tax_percentage": {"type": "string"}, "total": {"type": "string"}, "updated_at": {"type": "string"}, "verification_code": {"type": "null"}}, "required": ["coupon_amount", "coupon_description", "created_at", "description", "gift_card_amount", "outstanding_balance", "price", "quantity", "status", "subtotal", "tax", "tax_percentage", "total", "updated_at", "verification_code"]}, "relationships": {"type": "object", "properties": {"transactions": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "relationships": {"type": "object", "properties": {"payment_method": {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["data"]}}, "required": ["payment_method"]}}, "required": ["type", "id", "relationships"]}}, "links": {"type": "object", "properties": {"self": {"type": "string"}, "related": {"type": "string"}}, "required": ["self", "related"]}}, "required": ["data", "links"]}}, "required": ["transactions"]}, "links": {"type": "object", "properties": {"self": {"type": "string"}}, "required": ["self"]}}, "required": ["id", "type", "attributes", "relationships", "links"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : "f23skvy8", "type" : "orders", "attributes" : {"coupon_amount" : null, "coupon_description" : null, "created_at" : "2018-02-22T14:29:13.610-06:00", "description" : "1-On-1 Coaching Session", "gift_card_amount" : null, "outstanding_balance" : "5.0", "price" : "10.0", "quantity" : 1, "status" : "initialized", "subtotal" : "10.0", "tax" : "0.0", "tax_percentage" : "0.0", "total" : "10.0", "updated_at" : "2018-02-22T14:29:13.610-06:00", "verification_code" : null}, "relationships" : {"transactions" : {"data" : [{"type" : "transactions", "id" : "bas638js", "relationships" : {"payment_method" : {"data" : {"id" : "h17sle6", "type" : "gift_cards"}}}}], "links" : {"self" : "http://lvh.me:3000/api/v1/orders/f23skvy8/relationships/transactions", "related" : "http://lvh.me:3000/api/v1/orders/f23skvy8/transactions"}}}, "links" : {"self" : "http://lvh.me:3000/api/v1/orders/f23skvy8"}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"coupon_amount": {"type": "null"}, "coupon_description": {"type": "null"}, "created_at": {"type": "string"}, "description": {"type": "string"}, "gift_card_amount": {"type": "null"}, "outstanding_balance": {"type": "string"}, "price": {"type": "string"}, "quantity": {"type": "integer"}, "status": {"type": "string"}, "subtotal": {"type": "string"}, "tax": {"type": "string"}, "tax_percentage": {"type": "string"}, "total": {"type": "string"}, "updated_at": {"type": "string"}, "verification_code": {"type": "null"}}, "required": ["coupon_amount", "coupon_description", "created_at", "description", "gift_card_amount", "outstanding_balance", "price", "quantity", "status", "subtotal", "tax", "tax_percentage", "total", "updated_at", "verification_code"]}, "relationships": {"type": "object", "properties": {"transactions": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "relationships": {"type": "object", "properties": {"payment_method": {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "type"]}}, "required": ["data"]}}, "required": ["payment_method"]}}, "required": ["type", "id", "relationships"]}}, "links": {"type": "object", "properties": {"self": {"type": "string"}, "related": {"type": "string"}}, "required": ["self", "related"]}}, "required": ["data", "links"]}}, "required": ["transactions"]}, "links": {"type": "object", "properties": {"self": {"type": "string"}}, "required": ["self"]}}, "required": ["id", "type", "attributes", "relationships", "links"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Tangible bots: interaction with active tangibles in tabletop interfaces.", "fields" : ["haptic technology", "human computer interaction", "interaction technique", "multimedia", "tangible user interface"], "abstract" : "We present interaction techniques for tangible tabletop interfaces that use active, motorized tangibles, what we call Tangible Bots. Tangible Bots can reflect changes in the digital model and assist users by haptic feedback, by correcting errors, by multi-touch control, and by allowing efficient interaction with multiple tangibles. A first study shows that Tangible Bots are usable for fine-grained manipulation (e.g., rotating tangibles to a particular orientation); for coarse movements, Tangible Bots become useful only when several tangibles are controlled simultaneously. Participants prefer Tangible Bots and find them less taxing than passive, non-motorized tangibles. A second study focuses on usefulness by studying how electronic musicians use Tangible Bots to create music with a tangible tabletop application. We conclude by discussing the further potential of active tangibles, and their relative benefits over passive tangibles and multi-touch.", "citation" : "Citations (72)", "year" : "2011", "departments" : ["University of Copenhagen", "University of Copenhagen"], "conf" : "chi", "authors" : ["Esben Warming Pedersen.....http://dblp.org/pers/hd/p/Pedersen:Esben_Warming", "Kasper Hornb\u00e6k.....http://dblp.org/pers/hd/h/Hornb=aelig=k:Kasper"], "pages" : 10}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"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"}}, "required": ["id"]}, "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" : 105}, "clipped" : true, "id" : "618ccaca3f"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : 115}, "clipped" : true, "id" : "fcbfdcad85"}]}}, "type" : "Topology", "transform" : {"translate" : [16.259765624999975, 50.17689812200107], "scale" : [8.583068847655903e-05, 5.4935264132006945e-05]}, "arcs" : [[[788, 1024], [236, -636], [0, -388], [-1024, 0], [0, 1024], [788, 0]], [[1024, 388], [-236, 636], [236, 0], [0, -636]]]}
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"}}, "required": ["id"]}, "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}, "sourceRoot": {"type": "string"}}, "required": ["version", "sources", "names", "mappings", "sourcesContent", "sourceRoot"]}, "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});\nexports.escapeAttribute = void 0;\n/**\n * Escapes characters that can not be in an XML attribute.\n */\n\nfunction escapeAttribute(value) {\n return value.replace(/&/g, \"&amp;\").replace(/</g, \"&lt;\").replace(/>/g, \"&gt;\").replace(/\"/g, \"&quot;\");\n}\n\nexports.escapeAttribute = escapeAttribute;", "map" : {"version" : 3, "sources" : ["../../src/escape-attribute.ts"], "names" : [], "mappings" : ";;;;;;AAAA;;;;AAGA,SAAgB,eAAhB,CAAgC,KAAhC,EAA6C;AAC3C,SAAO,KAAK,CAAC,OAAN,CAAc,IAAd,EAAoB,OAApB,EAA6B,OAA7B,CAAqC,IAArC,EAA2C,MAA3C,EAAmD,OAAnD,CAA2D,IAA3D,EAAiE,MAAjE,EAAyE,OAAzE,CAAiF,IAAjF,EAAuF,QAAvF,CAAP;AACD;;AAFD,OAAA,CAAA,eAAA,GAAA,eAAA", "sourcesContent" : ["/**\n * Escapes characters that can not be in an XML attribute.\n */\nexport function escapeAttribute(value: string): string {\n return value.replace(/&/g, \"&amp;\").replace(/</g, \"&lt;\").replace(/>/g, \"&gt;\").replace(/\"/g, \"&quot;\");\n}\n"], "sourceRoot" : ""}, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}, "sourceRoot": {"type": "string"}}, "required": ["version", "sources", "names", "mappings", "sourcesContent", "sourceRoot"]}, "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"}, "version": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "autoprefixer": {"type": "string"}, "parcel-bundler": {"type": "string"}, "rimraf": {"type": "string"}, "sass": {"type": "string"}}, "required": ["@babel/core", "autoprefixer", "parcel-bundler", "rimraf", "sass"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "prebuild": {"type": "string"}, "build": {"type": "string"}, "clean": {"type": "string"}}, "required": ["dev", "prebuild", "build", "clean"]}, "author": {"type": "string"}}, "required": ["name", "version", "main", "devDependencies", "scripts", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "example", "version" : "1.0.0", "main" : "index.html", "devDependencies" : {"@babel/core" : "^7.9.6", "autoprefixer" : "^9.8.0", "parcel-bundler" : "^1.12.4", "rimraf" : "^3.0.2", "sass" : "^1.26.9"}, "scripts" : {"dev" : "parcel ./src/index.html --open", "prebuild" : "npm run clean", "build" : "parcel build ./src/index.html --out-dir dist --no-source-maps", "clean" : "rimraf .cache dist"}, "author" : "Armand Sall\u00e9"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "autoprefixer": {"type": "string"}, "parcel-bundler": {"type": "string"}, "rimraf": {"type": "string"}, "sass": {"type": "string"}}, "required": ["@babel/core", "autoprefixer", "parcel-bundler", "rimraf", "sass"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "prebuild": {"type": "string"}, "build": {"type": "string"}, "clean": {"type": "string"}}, "required": ["dev", "prebuild", "build", "clean"]}, "author": {"type": "string"}}, "required": ["name", "version", "main", "devDependencies", "scripts", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Bellac", "circ" : "3\u00e8me circonscription", "dpt" : "Haute-Vienne", "inscrits" : 2739, "abs" : 1399, "votants" : 1340, "blancs" : 113, "nuls" : 93, "exp" : 1134, "res" : [{"nuance" : "REM", "nom" : "Mme Marie-Ange MAGNE", "voix" : 675}, {"nuance" : "LR", "nom" : "M. Guillaume GUERIN", "voix" : 459}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Bile", "definitions" : ["A bitter greenish-brown alkaline fluid which aids digestion and is secreted by the liver and stored in the gall bladder.", "Anger, bitterness, or irritability."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Oliver Letterer": {"type": "string"}}, "required": ["Oliver Letterer"]}, "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"}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "UIAlertControllerConvenienceAPI", "version" : "0.2.2", "summary" : "Convenience API for UIAlertController.", "homepage" : "https://github.com/OliverLetterer/UIAlertController-Convenience", "license" : "MIT", "authors" : {"Oliver Letterer" : "oliver.letterer@gmail.com"}, "source" : {"git" : "https://github.com/OliverLetterer/UIAlertController-Convenience.git", "tag" : "0.2.2"}, "platforms" : {"ios" : "8.0"}, "requires_arc" : true, "source_files" : "Pod/Classes", "frameworks" : "UIKit"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Oliver Letterer": {"type": "string"}}, "required": ["Oliver Letterer"]}, "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"}, "frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "frameworks"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Hai Feng Kao": {"type": "string"}}, "required": ["Hai Feng Kao"]}, "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"}, "exclude_files": {"type": "string"}, "subspecs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "requires_arc", "source_files"]}}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "exclude_files", "subspecs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "LeakCanaryiOS", "version" : "0.8.0", "summary" : "Memory leak detection in iOS unit test cases", "description" : "Memory leak detection in XCTest, no problem!", "homepage" : "https://github.com/haifengkao/LeakCanaryiOS", "license" : "MIT", "authors" : {"Hai Feng Kao" : "haifeng@cocoaspice.in"}, "source" : {"git" : "https://github.com/haifengkao/LeakCanaryiOS.git", "tag" : "0.8.0"}, "platforms" : {"ios" : "7.0"}, "requires_arc" : true, "source_files" : "Pod/Classes/**/*", "exclude_files" : "Pod/Classes/NSObject+HeapInspector.{h,m}", "subspecs" : [{"name" : "no-arc", "requires_arc" : false, "source_files" : "Pod/Classes/NSObject+HeapInspector.{h,m}"}]}
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": {"Hai Feng Kao": {"type": "string"}}, "required": ["Hai Feng Kao"]}, "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"}, "exclude_files": {"type": "string"}, "subspecs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "requires_arc", "source_files"]}}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "exclude_files", "subspecs"], "$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": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "function canUseDOM() {\n return !!(typeof window !== \"undefined\" && window.document && window.document.createElement);\n}\n\nexport { canUseDOM };", "map" : {"version" : 3, "sources" : ["/Users/warrenmason/Documents/MoonWalkerSwap/FINAL/MoonWalkerSwap-Interface-new/node_modules/@reach/utils/can-use-dom/dist/reach-utils-can-use-dom.esm.js"], "names" : ["canUseDOM", "window", "document", "createElement"], "mappings" : "AAAA,SAASA,SAAT,GAAqB;AACnB,SAAO,CAAC,EAAE,OAAOC,MAAP,KAAkB,WAAlB,IAAiCA,MAAM,CAACC,QAAxC,IAAoDD,MAAM,CAACC,QAAP,CAAgBC,aAAtE,CAAR;AACD;;AAED,SAASH,SAAT", "sourcesContent" : ["function canUseDOM() {\n return !!(typeof window !== \"undefined\" && window.document && window.document.createElement);\n}\n\nexport { canUseDOM };\n"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "top": {"type": "string"}, "side": {"type": "string"}}, "required": ["bottom", "top", "side"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "block/outer_stairs", "textures" : {"bottom" : "conquest:block/9_organic/6_waste/bone_wall_with_skeleton_top", "top" : "conquest:block/9_organic/6_waste/bone_wall_with_skeleton_top", "side" : "conquest:block/9_organic/6_waste/bone_wall_with_skeleton"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "top": {"type": "string"}, "side": {"type": "string"}}, "required": ["bottom", "top", "side"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"android": {"type": "string"}, "codename": {"type": "string"}, "device": {"type": "string"}, "download": {"type": "string"}, "filename": {"type": "string"}, "md5": {"type": "string"}, "size": {"type": "string"}, "version": {"type": "string"}}, "required": ["android", "codename", "device", "download", "filename", "md5", "size", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"android" : "9.0", "codename" : "lavender", "device" : "Redmi Note 7 China", "download" : "http://bigota.d.miui.com/V10.3.3.0.PFGCNXM/lavender_images_V10.3.3.0.PFGCNXM_20190716.0000.00_9.0_cn_090bc6b0ad.tgz", "filename" : "lavender_images_V10.3.3.0.PFGCNXM_20190716.0000.00_9.0_cn_090bc6b0ad.tgz", "md5" : "090bc6b0adfd00ba20539be99dd8c994", "size" : "2.3G", "version" : "V10.3.3.0.PFGCNXM"}
json_instruct
{"type": "object", "properties": {"android": {"type": "string"}, "codename": {"type": "string"}, "device": {"type": "string"}, "download": {"type": "string"}, "filename": {"type": "string"}, "md5": {"type": "string"}, "size": {"type": "string"}, "version": {"type": "string"}}, "required": ["android", "codename", "device", "download", "filename", "md5", "size", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101843273, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "83c865fcf75b443d3c5014ebb8c121e1", "wof:id" : 101843273, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-2.81999003926484, 48.4465886204776, -2.80240753411613, 48.45521791986414], "geometry" : {"coordinates" : [[[-2.8037424915513, 48.4541782202183], [-2.8035141284812, 48.45329410941912], [-2.80484905583535, 48.45313850984326], [-2.80462068038816, 48.45225440119742], [-2.80595557766264, 48.45209878873993], [-2.80549881221407, 48.45033057474404], [-2.80950332357133, 48.44986366008777], [-2.80927488843327, 48.44897956106485], [-2.81327926452076, 48.44851251151039], [-2.81282228943979, 48.44674432941849], [-2.81415702132063, 48.4465886204776], [-2.8148425669433, 48.44924088260416], [-2.81617735901307, 48.44908514812568], [-2.81686306416998, 48.45173739165341], [-2.81819791643346, 48.45158163163416], [-2.81842652780028, 48.45246570762095], [-2.81976139511983, 48.4523099283918], [-2.81999003926484, 48.45319400020026], [-2.81865514937493, 48.45334978259615], [-2.81888378115787, 48.45423385655988], [-2.81354405617532, 48.45485683836523], [-2.8133155146827, 48.45397275173713], [-2.8026358848071, 48.45521791986414], [-2.80240753411613, 48.45433380691202], [-2.8037424915513, 48.4541782202183]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"voce": {"type": "string"}, "giochi": {"type": "array", "items": {"type": "string"}}}, "required": ["voce", "giochi"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"voce" : "Soprannominato \u201cTiranno del mare\u201d, SHARPEDO \u00e8 molto temuto. Se perde qualcuno dei suoi temibili denti, questo ricresce all'istante. Uno di questi POK\u00e9MON da solo riesce ad affondare una superpetroliera.", "giochi" : ["rubino"]}, {"voce" : "SHARPEDO riesce a nuotare fino alla velocit\u00e0 di 120 km/h, espellendo acqua di mare dalla parte posteriore del corpo come un propulsore. La sua unica debolezza \u00e8 la mancanza di resistenza sulle lunghe distanze.", "giochi" : ["zaffiro", "zaffiro_alpha"]}, {"voce" : "Astuto e feroce tiranno dei mari, SHARPEDO ha una pelle speciale che gli permette di ridurre l'attrito in acqua e di raggiungere velocit\u00e0 di oltre 120 km/h.", "giochi" : ["smeraldo"]}, {"voce" : "Chiamato il \"Tiranno del mare\", spezza il ferro con i denti. Nuota rilasciando un getto d'acqua dalla parte posteriore.", "giochi" : ["rosso_fuoco", "verde_foglia"]}, {"voce" : "Con le sue zanne pu\u00f2 spezzare il ferro. Nuota a 120 km/h. \u00c8 noto come il \"Tiranno del mare\".", "giochi" : ["diamante", "perla", "platino", "nero", "bianco", "nero_2", "bianco_2", "x"]}, {"voce" : "\"Il tiranno del mare\"! Nuota a 120 km/h espellendo acqua marina dal didietro a mo' di propulsore..", "giochi" : ["heartgold", "soulsilver", "y"]}, {"voce" : "Soprannominato \"Tiranno del mare\", Sharpedo \u00e8 molto temuto. Se perde qualcuno dei suoi temibili denti, questo ricresce all'istante. Uno di questi Pok\u00e9mon da solo riesce ad affondare una superpetroliera.", "giochi" : ["rubino_omega"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"voce": {"type": "string"}, "giochi": {"type": "array", "items": {"type": "string"}}}, "required": ["voce", "giochi"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {}}, "sidebar_action": {"type": "object", "properties": {"default_page": {"type": "string"}, "default_icon": {"type": "object", "properties": {"16": {"type": "string"}}, "required": ["16"]}, "default_title": {"type": "string"}, "use_navigation_bar": {"type": "boolean"}, "mobile_user_agent": {"type": "boolean"}}, "required": ["default_page", "default_icon", "default_title", "use_navigation_bar", "mobile_user_agent"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}}, "required": ["name", "version", "manifest_version", "description", "icons", "permissions", "sidebar_action", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "peer whiteboard", "version" : "0.0.1", "manifest_version" : 2, "description" : "", "icons" : {"128" : "assets/images/icon.png"}, "permissions" : [], "sidebar_action" : {"default_page" : "dist/index.html", "default_icon" : {"16" : "assets/images/icon.png"}, "default_title" : "Peer Whiteboard", "use_navigation_bar" : false, "mobile_user_agent" : false}, "content_scripts" : [{"matches" : ["https://*/*"], "js" : ["dist/contentScript.js"]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {}}, "sidebar_action": {"type": "object", "properties": {"default_page": {"type": "string"}, "default_icon": {"type": "object", "properties": {"16": {"type": "string"}}, "required": ["16"]}, "default_title": {"type": "string"}, "use_navigation_bar": {"type": "boolean"}, "mobile_user_agent": {"type": "boolean"}}, "required": ["default_page", "default_icon", "default_title", "use_navigation_bar", "mobile_user_agent"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}}, "required": ["name", "version", "manifest_version", "description", "icons", "permissions", "sidebar_action", "content_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"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"mongodb": {"type": "string"}, "yargs": {"type": "string"}, "async": {"type": "string"}, "flat": {"type": "string"}, "shell-escape": {"type": "string"}}, "required": ["mongodb", "yargs", "async", "flat", "shell-escape"]}, "preferGlobal": {"type": "boolean"}, "private": {"type": "boolean"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "repository", "dependencies", "preferGlobal", "private", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "node-mongodb-scanner", "version" : "0.0.1", "description" : "a mongodb server scanner", "author" : "szalwia <szalwiaxd@gmail.com>", "repository" : {"type" : "git", "url" : "https://github.com/szalwia/node-mongodb-scanner"}, "dependencies" : {"mongodb" : "2.x", "yargs" : "3.x", "async" : "1.x", "flat" : "1.x", "shell-escape" : "0.2.0"}, "preferGlobal" : true, "private" : true, "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"mongodb": {"type": "string"}, "yargs": {"type": "string"}, "async": {"type": "string"}, "flat": {"type": "string"}, "shell-escape": {"type": "string"}}, "required": ["mongodb", "yargs", "async", "flat", "shell-escape"]}, "preferGlobal": {"type": "boolean"}, "private": {"type": "boolean"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "repository", "dependencies", "preferGlobal", "private", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"scenario": {"type": "string"}, "operation": {"type": "string"}, "product_id": {"type": "string"}, "elma_url": {"type": "string"}, "catalogue_url": {"type": "string"}, "trmf_url": {"type": "string"}, "place": {"type": "object", "properties": {"city": {"type": "string"}, "country": {"type": "string"}, "locality": {"type": "string"}, "geographicLocation": {"type": "object", "properties": {"name": {"type": "string"}, "geometryType": {"type": "string"}, "geometry": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "z": {"type": "string"}}, "required": ["x", "y", "z"]}}}, "required": ["name", "geometryType", "geometry"]}}, "required": ["city", "country", "locality", "geographicLocation"]}}, "required": ["scenario", "operation", "product_id", "elma_url", "catalogue_url", "trmf_url", "place"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scenario" : "uc12", "operation" : "scaleout", "product_id" : "4de1c4bd-8c95-49a2-9b11-57f984579d87", "elma_url" : "http://172.28.3.15:31880", "catalogue_url" : "http://172.28.3.15:31080", "trmf_url" : "http://172.28.3.15:31113", "place" : {"city" : "Pisa", "country" : "Italy", "locality" : "San Piero A Grado, Pisa", "geographicLocation" : {"name" : "Pisa Nextworks Area, Italy", "geometryType" : "string", "geometry" : [{"x" : "10.400000", "y" : "43.716667", "z" : "3388.0"}]}}}
json_instruct
{"type": "object", "properties": {"scenario": {"type": "string"}, "operation": {"type": "string"}, "product_id": {"type": "string"}, "elma_url": {"type": "string"}, "catalogue_url": {"type": "string"}, "trmf_url": {"type": "string"}, "place": {"type": "object", "properties": {"city": {"type": "string"}, "country": {"type": "string"}, "locality": {"type": "string"}, "geographicLocation": {"type": "object", "properties": {"name": {"type": "string"}, "geometryType": {"type": "string"}, "geometry": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "z": {"type": "string"}}, "required": ["x", "y", "z"]}}}, "required": ["name", "geometryType", "geometry"]}}, "required": ["city", "country", "locality", "geographicLocation"]}}, "required": ["scenario", "operation", "product_id", "elma_url", "catalogue_url", "trmf_url", "place"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "branded-qr-code": {"type": "string"}, "qrcode-logo": {"type": "string"}}, "required": ["babel-polyfill", "branded-qr-code", "qrcode-logo"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "qrcode-nodejs", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "huixisheng@gmail.com", "license" : "MIT", "dependencies" : {"babel-polyfill" : "^6.26.0", "branded-qr-code" : "^1.2.1", "qrcode-logo" : "^1.1.8"}, "devDependencies" : {"babel-cli" : "^6.26.0", "babel-preset-es2015" : "^6.24.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "branded-qr-code": {"type": "string"}, "qrcode-logo": {"type": "string"}}, "required": ["babel-polyfill", "branded-qr-code", "qrcode-logo"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "5 Million Miles From Io", "credit" : "Voyager Project, JPL, NASA", "explanation" : "Twenty years ago this month, NASA's Voyager 1 spacecraft flew past Jupiter and its moons. This sharp picture of moon Io against a background of gas giant Jupiter's diffuse swirling cloud bands was recorded by Voyager's camera from a distance of about 5 million miles. Even this early image shows curious round features on Io's surface with dark centers and bright rims more than 40 miles across. Now known to be volcanic in origin, these features were then thought likely to be impact craters, commonly seen on rocky bodies throughout the Solar System. But as Voyager continued to approach Io, close-up pictures revealed a bizarre world devoid of impact craters, frequently resurfaced by volcanic activity. In fact, Io's volcanism is so intense that subsequent Voyager images produced an astounding discovery - the first observed extraterrestrial volcanic eruptions.", "date" : "1999-03-11", "hdurl" : "https://apod.nasa.gov/apod/image/9903/iojup5mil_voyager_big.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/9903/iojup5mil_voyager.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Eminence, IN"], "state" : "IN", "postal_code" : "46125", "locality" : "Eminence, IN", "lat" : 39.521518, "region" : {"fips" : "18", "abbr" : "IN", "name" : "Indiana"}, "city" : "Eminence", "type" : "POBOX", "lng" : -86.641603, "counties" : [{"fips" : "109", "name" : "Morgan County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"msg": {"type": "string"}, "code": {"type": "string"}, "params": {"type": "object", "properties": {}, "required": []}}, "required": ["msg", "code", "params"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"msg" : "error mocked from cypress!", "code" : "CypressError", "params" : {}}
json_instruct
{"type": "object", "properties": {"msg": {"type": "string"}, "code": {"type": "string"}, "params": {"type": "object", "properties": {}, "required": []}}, "required": ["msg", "code", "params"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "altSpellings": {"type": "array", "items": {"type": "string"}}, "area": {"type": "integer"}, "borders": {"type": "array", "items": {"type": "string"}}, "callingCodes": {"type": "array", "items": {"type": "string"}}, "capital": {"type": "string"}, "currencies": {"type": "array", "items": {"type": "string"}}, "demonym": {"type": "string"}, "flag": {"type": "string"}, "geoJSON": {"type": "object", "properties": {}, "required": []}, "ISO": {"type": "object", "properties": {"alpha2": {"type": "string"}, "alpha3": {"type": "string"}}, "required": ["alpha2", "alpha3"]}, "languages": {"type": "array", "items": {"type": "string"}}, "latlng": {"type": "array", "items": {"type": "number"}}, "nativeName": {"type": "string"}, "population": {"type": "integer"}, "provinces": {"type": "array", "items": {"type": "string"}}, "region": {"type": "string"}, "subregion": {"type": "string"}, "timezones": {"type": "array", "items": {"type": "string"}}, "tld": {"type": "array", "items": {"type": "string"}}, "translations": {"type": "object", "properties": {"de": {"type": "string"}, "es": {"type": "string"}, "fr": {"type": "string"}, "ja": {"type": "string"}, "it": {"type": "string"}}, "required": ["de", "es", "fr", "ja", "it"]}, "wiki": {"type": "string"}}, "required": ["name", "altSpellings", "area", "borders", "callingCodes", "capital", "currencies", "demonym", "flag", "geoJSON", "ISO", "languages", "latlng", "nativeName", "population", "provinces", "region", "subregion", "timezones", "tld", "translations", "wiki"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Liechtenstein", "altSpellings" : ["LI", "Principality of Liechtenstein", "F\u00fcrstentum Liechtenstein"], "area" : 160, "borders" : ["AUT", "CHE"], "callingCodes" : ["423"], "capital" : "Vaduz", "currencies" : ["CHF"], "demonym" : "Liechtensteiner", "flag" : "", "geoJSON" : {}, "ISO" : {"alpha2" : "LI", "alpha3" : "LIE"}, "languages" : ["de"], "latlng" : [47.26666666, 9.53333333], "nativeName" : "Liechtenstein", "population" : 37132, "provinces" : ["Balzers", "Eschen", "Gamprin", "Mauren", "Planken", "Ruggell", "Schaan", "Schellenberg", "Triesen", "Triesenberg", "Vaduz"], "region" : "Europe", "subregion" : "Western Europe", "timezones" : ["UTC+01:00"], "tld" : [".li"], "translations" : {"de" : "Liechtenstein", "es" : "Liechtenstein", "fr" : "Liechtenstein", "ja" : "\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3", "it" : "Liechtenstein"}, "wiki" : "http://en.wikipedia.org/wiki/liechtenstein"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "altSpellings": {"type": "array", "items": {"type": "string"}}, "area": {"type": "integer"}, "borders": {"type": "array", "items": {"type": "string"}}, "callingCodes": {"type": "array", "items": {"type": "string"}}, "capital": {"type": "string"}, "currencies": {"type": "array", "items": {"type": "string"}}, "demonym": {"type": "string"}, "flag": {"type": "string"}, "geoJSON": {"type": "object", "properties": {}, "required": []}, "ISO": {"type": "object", "properties": {"alpha2": {"type": "string"}, "alpha3": {"type": "string"}}, "required": ["alpha2", "alpha3"]}, "languages": {"type": "array", "items": {"type": "string"}}, "latlng": {"type": "array", "items": {"type": "number"}}, "nativeName": {"type": "string"}, "population": {"type": "integer"}, "provinces": {"type": "array", "items": {"type": "string"}}, "region": {"type": "string"}, "subregion": {"type": "string"}, "timezones": {"type": "array", "items": {"type": "string"}}, "tld": {"type": "array", "items": {"type": "string"}}, "translations": {"type": "object", "properties": {"de": {"type": "string"}, "es": {"type": "string"}, "fr": {"type": "string"}, "ja": {"type": "string"}, "it": {"type": "string"}}, "required": ["de", "es", "fr", "ja", "it"]}, "wiki": {"type": "string"}}, "required": ["name", "altSpellings", "area", "borders", "callingCodes", "capital", "currencies", "demonym", "flag", "geoJSON", "ISO", "languages", "latlng", "nativeName", "population", "provinces", "region", "subregion", "timezones", "tld", "translations", "wiki"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "University of Toronto", "alt_name" : "(U of T)", "country" : "Canada", "state" : "Ontario", "address" : {"street" : "563 Spadina Crescent", "city" : "Toronto", "province" : "Ontario", "postal_code" : "M5S 2J7"}, "contact" : {"telephone" : "+1(416) 978-2011", "website" : "http://utoronto.ca", "email" : "ut.info@utoronto.ca", "fax" : "+1(416) 978-7022"}, "funding" : "Public", "languages" : null, "academic_year" : "September to August (September-December; January-May; May-June; July-August)", "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["030904"], "\uc81c\uc548\uc77c\uc790" : ["1955-01-12"], "\uc81c\uc548\uc790" : ["\uc870\ubcd1\uc625\uc758\uc6d0\uc67827\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c3\ub300(1954~1958)\uc81c19\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1955-01-13"], "\ud68c\uc758\uba85" : [""], "\ud68c\uc758\uacb0\uacfc" : ["\ud3d0\uae30"], "\ud68c\uc758\ub85d" : [""]}, "parsed_date" : "2021-02-17"}
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "psalmodize", "definition" : "To practice psalmody. \" The psalmodizing art.\" J. G. Cooper."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["build", "test", "coverage"]}, "dependencies": {"type": "object", "properties": {"brace-expansion": {"type": "string"}, "co": {"type": "string"}, "standard-http-error": {"type": "string"}}, "required": ["brace-expansion", "co", "standard-http-error"]}, "devDependencies": {"type": "object", "properties": {"awfltst": {"type": "string"}, "istanbul": {"type": "string"}, "pegjs": {"type": "string"}, "request": {"type": "string"}}, "required": ["awfltst", "istanbul", "pegjs", "request"]}, "license": {"type": "string"}}, "required": ["author", "name", "description", "version", "main", "repository", "scripts", "dependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Svein Inge Albrigtsen", "name" : "nnn", "description" : "nnn", "version" : "2.3.1", "main" : "./lib/index.js", "repository" : {"type" : "git", "url" : "https://github.com/Thhethssmuz/nnn.git"}, "scripts" : {"build" : "pegjs --allowed-start-rules route,pair,key,value,method parser/grammar.pegjs parser/index.js", "test" : "awfltst --filename --summary test/*.js", "coverage" : "istanbul cover awfltst test/*.js && cat coverage/lcov.info"}, "dependencies" : {"brace-expansion" : "^1.1.11", "co" : "^4.6.0", "standard-http-error" : "^2.0.1"}, "devDependencies" : {"awfltst" : "^0.6.0", "istanbul" : "^0.4.5", "pegjs" : "^0.9.0", "request" : "^2.88.0"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["build", "test", "coverage"]}, "dependencies": {"type": "object", "properties": {"brace-expansion": {"type": "string"}, "co": {"type": "string"}, "standard-http-error": {"type": "string"}}, "required": ["brace-expansion", "co", "standard-http-error"]}, "devDependencies": {"type": "object", "properties": {"awfltst": {"type": "string"}, "istanbul": {"type": "string"}, "pegjs": {"type": "string"}, "request": {"type": "string"}}, "required": ["awfltst", "istanbul", "pegjs", "request"]}, "license": {"type": "string"}}, "required": ["author", "name", "description", "version", "main", "repository", "scripts", "dependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 31516413, "ot" : 3, "alias" : 0, "setcode" : 105, "type" : 33, "atk" : 2000, "def" : 1600, "level" : 5, "race" : 8192, "attribute" : 16, "category" : 270338, "name" : "Hieratic Dragon of Nebthet", "desc" : "You can Special Summon this card (from your hand) by Tributing 1 \"Hieratic\" monster. Once per turn: You can Tribute 1 \"Hieratic\" monster, except this card, from your hand or your side of the field, to target 1 monster your opponent controls; destroy that target. When this card is Tributed: Special Summon 1 Dragon-Type Normal Monster from your hand, Deck, or Graveyard, and make its ATK and DEF 0.", "str1" : "Destroy", "str2" : "Special Summon", "str3" : "", "str4" : "", "str5" : "", "str6" : "", "str7" : "", "str8" : "", "str9" : "", "str10" : "", "str11" : "", "str12" : "", "str13" : "", "str14" : "", "str15" : "", "str16" : "", "links" : [], "cardpool" : "OCG/TCG", "ocg" : {"pack" : "Galactic Overlord", "pack_id" : "GAOV-JP021", "date" : "2012-02-18"}, "tcg" : {"pack" : "Galactic Overlord", "pack_id" : "GAOV-EN021", "date" : "2012-04-28"}, "picture" : "https://vignette.wikia.nocookie.net/yugioh/images/5/5d/HieraticDragonofNebthet-GAOV-EN-C-1E.png"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"board": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "scores": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["board", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"board" : [["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "G", "A", "R", "T", "E", "R", "", ""], ["", "", "", "", "", "", "", "A", "V", "E", "R", "S", "E", "", ""], ["", "", "", "", "", "", "", "R", "E", "C", "I", "T", "E", "", ""], ["", "", "", "", "", "", "", "T", "R", "I", "B", "A", "L", "", ""], ["", "", "", "", "", "", "", "E", "S", "T", "A", "T", "E", "", ""], ["", "", "", "", "", "", "", "R", "E", "E", "L", "E", "D", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]], "scores" : [[16, 32, 34, 36, 30, 28], [8, 19, 17, 16, 11]]}
json_instruct
{"type": "object", "properties": {"board": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "scores": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["board", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 28880, "cartId" : "3c97661d-ab6d-424d-a5c4-136e7958e3b5", "preferredProducts" : [4055, 3208, 1823, 302, 1668, 875, 2053, 2710, 1351], "productReviews" : [{"productId" : 91, "reviewText" : "I saw one of these in Canada and I bought one.", "reviewDate" : "2017-03-15T01:02:33.2477363+02:00"}, {"productId" : 115, "reviewText" : "I saw one of these in Saint Lucia and I bought one.", "reviewDate" : "2019-03-15T05:27:29.7423046+02:00"}, {"productId" : 267, "reviewText" : "This Station works so well. It imperfectly improves my baseball by a lot.", "reviewDate" : "2016-07-09T10:19:55.5728354+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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"appService.defaultWebAppToDeploy": {"type": "string"}, "appService.deploySubpath": {"type": "string"}}, "required": ["appService.defaultWebAppToDeploy", "appService.deploySubpath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appService.defaultWebAppToDeploy" : "/subscriptions/823c4d3b-974f-43f1-8e5c-bc61042bffb8/resourceGroups/ewoksamplepwa/providers/Microsoft.Web/sites/ewoksamplepwa", "appService.deploySubpath" : "."}
json_instruct
{"type": "object", "properties": {"appService.defaultWebAppToDeploy": {"type": "string"}, "appService.deploySubpath": {"type": "string"}}, "required": ["appService.defaultWebAppToDeploy", "appService.deploySubpath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"polyfill": {"type": "array", "items": {"type": "string"}}, "app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-jsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-to-club-jsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-to-man-jsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-vision-jsx": {"type": "array", "items": {"type": "string"}}}, "required": ["polyfill", "app", "component---src-pages-index-jsx", "component---src-pages-to-club-jsx", "component---src-pages-to-man-jsx", "component---src-pages-vision-jsx"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"polyfill" : ["/polyfill-303683f6c6a5fb752dca.js"], "app" : ["/app-812d18a2c738556db24b.js"], "component---src-pages-index-jsx" : ["/component---src-pages-index-jsx-ae3aee783ea43b8e32f0.js"], "component---src-pages-to-club-jsx" : ["/component---src-pages-to-club-jsx-e3be189dbba74b388456.js"], "component---src-pages-to-man-jsx" : ["/component---src-pages-to-man-jsx-e8cc9754d9d4bed4acca.js"], "component---src-pages-vision-jsx" : ["/component---src-pages-vision-jsx-1078ec4cb37875317646.js"]}
json_instruct
{"type": "object", "properties": {"polyfill": {"type": "array", "items": {"type": "string"}}, "app": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-jsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-to-club-jsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-to-man-jsx": {"type": "array", "items": {"type": "string"}}, "component---src-pages-vision-jsx": {"type": "array", "items": {"type": "string"}}}, "required": ["polyfill", "app", "component---src-pages-index-jsx", "component---src-pages-to-club-jsx", "component---src-pages-to-man-jsx", "component---src-pages-vision-jsx"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"numOperations": {"type": "integer"}, "releaseTimes": {"type": "array", "items": {"type": "integer"}}, "dueDates": {"type": "array", "items": {"type": "integer"}}, "processingTimes": {"type": "array", "items": {"type": "integer"}}, "powerConsumptions": {"type": "array", "items": {"type": "number"}}, "maxDeviation": {"type": "integer"}, "numMeteringIntervals": {"type": "integer"}, "lengthMeteringInterval": {"type": "integer"}, "maxEnergyConsumptions": {"type": "array", "items": {"type": "number"}}, "metadata": {"type": "object", "properties": {}, "required": []}}, "required": ["numOperations", "releaseTimes", "dueDates", "processingTimes", "powerConsumptions", "maxDeviation", "numMeteringIntervals", "lengthMeteringInterval", "maxEnergyConsumptions", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"numOperations" : 15, "releaseTimes" : [5, 7, 8, 9, 17, 24, 39, 42, 53, 63, 72, 81, 84, 85, 85], "dueDates" : [18, 24, 17, 26, 36, 27, 48, 68, 62, 82, 91, 91, 101, 92, 113], "processingTimes" : [5, 12, 6, 7, 14, 3, 3, 15, 1, 11, 14, 9, 9, 4, 15], "powerConsumptions" : [9.47930535084816, 5.0561318191378595, 11.980591925067264, 12.887007574635216, 3.8315106758992985, 21.802147184127964, 28.68473634716305, 3.16863642378867, 63.23630952535119, 4.188951003484214, 6.577260776118854, 3.7348321785701697, 10.873263216869214, 16.604143388714505, 5.782355576034096], "maxDeviation" : 0, "numMeteringIntervals" : 45, "lengthMeteringInterval" : 15, "maxEnergyConsumptions" : [100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0], "metadata" : {}}
json_instruct
{"type": "object", "properties": {"numOperations": {"type": "integer"}, "releaseTimes": {"type": "array", "items": {"type": "integer"}}, "dueDates": {"type": "array", "items": {"type": "integer"}}, "processingTimes": {"type": "array", "items": {"type": "integer"}}, "powerConsumptions": {"type": "array", "items": {"type": "number"}}, "maxDeviation": {"type": "integer"}, "numMeteringIntervals": {"type": "integer"}, "lengthMeteringInterval": {"type": "integer"}, "maxEnergyConsumptions": {"type": "array", "items": {"type": "number"}}, "metadata": {"type": "object", "properties": {}, "required": []}}, "required": ["numOperations", "releaseTimes", "dueDates", "processingTimes", "powerConsumptions", "maxDeviation", "numMeteringIntervals", "lengthMeteringInterval", "maxEnergyConsumptions", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "string"}, "ghcn": {"type": "string"}, "wban": {"type": "null"}, "usaf": {"type": "string"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "65167", "name" : {"en" : "Yola"}, "country" : "NG", "region" : "AD", "identifiers" : {"national" : null, "wmo" : "65167", "ghcn" : "NIM00065167", "wban" : null, "usaf" : "651670", "mosmix" : null, "icao" : "DNYO", "iata" : "YOL"}, "location" : {"latitude" : 9.2333, "longitude" : 12.4667, "elevation" : 191}, "timezone" : "Africa/Lagos", "history" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "string"}, "ghcn": {"type": "string"}, "wban": {"type": "null"}, "usaf": {"type": "string"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}, "test": {"type": "string"}}, "required": ["example", "test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp-rename", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular-ticking-clock", "version" : "1.0.2", "description" : "Angular Ticking Clock Directive ", "main" : "index.js", "directories" : {"example" : "examples", "test" : "tests"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ChristianKreuzberger/angular-ticking-clock.git"}, "keywords" : ["Angular", "Ticking", "Clock", "without", "digest", "cycles"], "author" : "Christian Kreuzberger", "license" : "MIT", "bugs" : {"url" : "https://github.com/ChristianKreuzberger/angular-ticking-clock/issues"}, "homepage" : "https://github.com/ChristianKreuzberger/angular-ticking-clock#readme", "devDependencies" : {"gulp-rename" : "^1.2.2", "gulp-uglify" : "^2.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}, "test": {"type": "string"}}, "required": ["example", "test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp-rename", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Csini Coin", "symbol" : "CSINI", "logoURI" : "https://raw.githubusercontent.com/MoTheCo/Csini-coin/main/csini.png", "decimals" : 9, "address" : "3kJ7goYo5Ezx9Vc2okRyVG8UF9RuAVLXHLKdpjpHuN4b", "chainId" : 101, "tags" : ["social-token", "meme-coin"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : 53379, "cartId" : "bb377800-2e26-465a-820e-8dedd817d63f", "preferredProducts" : [4931, 2066, 2253, 2021, 4960], "productReviews" : [{"productId" : 232, "reviewText" : "heard about this on chicha radio, decided to give it a try.", "reviewDate" : "2019-06-29T12:43:48.8014512+03:00"}, {"productId" : 2606, "reviewText" : "I saw one of these in Moldova and I bought one.", "reviewDate" : "2020-04-07T08:14:57.8809395+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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01020095": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01020095"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01020095" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00101752", "LAD11CD" : "E07000043"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00101764", "LAD11CD" : "E07000043"}, "arcs" : [[3, 4, 5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00101765", "LAD11CD" : "E07000043"}, "arcs" : [[7, 8, -5, 9, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00101766", "LAD11CD" : "E07000043"}, "arcs" : [[-7, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00101768", "LAD11CD" : "E07000043"}, "arcs" : [[-8, -3, 11]]}]}}, "arcs" : [[[5580, 5034], [23, 1222], [578, -432], [-475, 3451]], [[5706, 9275], [1861, 340], [1116, -51], [-184, -1144], [653, -2172]], [[9152, 6248], [-501, -3829], [-2241, 740], [-830, 1875]], [[1601, 9364], [387, 635], [1793, -2784]], [[3781, 7215], [382, -2619], [-606, -564], [-139, -1582]], [[3418, 2450], [-994, -1323], [131, -858], [-384, 519], [-635, 2409]], [[1536, 3197], [-32, 834], [981, 1145], [348, -691], [418, 982], [-248, 942], [-1031, -288], [-371, 3243]], [[5580, 5034], [127, -3462]], [[5707, 1572], [55, -1464], [-1278, 130], [-171, 1690], [-895, 522]], [[3781, 7215], [1925, 2060]], [[1536, 3197], [-954, -298], [-582, 3955], [1601, 2510]], [[9152, 6248], [653, -2525], [194, -3571], [-386, -123], [-3469, -29], [-437, 1572]]], "transform" : {"scale" : [1.0515015190271376e-06, 3.0148977119719906e-07], "translate" : [-4.059171244075499, 51.08109930936794]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01020095": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01020095"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : "/**\n * This file automatically generated from `pre-publish.js`.\n * Do not manually edit.\n */\nmodule.exports = {\n \"area\": true,\n \"base\": true,\n \"br\": true,\n \"col\": true,\n \"embed\": true,\n \"hr\": true,\n \"img\": true,\n \"input\": true,\n \"keygen\": true,\n \"link\": true,\n \"menuitem\": true,\n \"meta\": true,\n \"param\": true,\n \"source\": true,\n \"track\": true,\n \"wbr\": true\n};", "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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "email": {"type": "string"}, "website": {"type": "string"}, "whitepaper": {"type": "string"}, "state": {"type": "string"}, "published_on": {"type": "string"}, "links": {"type": "object", "properties": {"biyong": {"type": "string"}, "github": {"type": "string"}}, "required": ["biyong", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "whitepaper", "state", "published_on", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "AMO1", "address" : "0x9eE904e7B92c872aC5d3Eff3e6c5ec4dbe3c26b4", "overview" : {"en" : "Amodule network has designed a set of network standards for full commercial blockchain application mode, which follow the functions of hot plug, modular expansion, providing alternative smart contracts, consensus mechanism, P2P network transmission, big data encrypted storage, multi account, etc. Encapsulate the blockchain contract layer required by various industries in various fields, and use the visual operating system to facilitate developers of various languages to call it quickly. Business projects that need to carry out chain reform will quickly establish decentralized application scenarios, build business models according to their own needs, and no longer need to redevelop from bottom to top to save human and financial resources, which will rapidly promote the implementation of blockchain business applications and blockchain reconstruction projects in traditional industries.", "zh" : "Amodule Network\u8bbe\u8ba1\u4e86\u4e00\u5957\u5168\u5546\u4e1a\u533a\u5757\u94fe\u5e94\u7528\u6a21\u5f0f\u7684\u7f51\u7edc\u6807\u51c6\uff0c\u9075\u5faa\u70ed\u63d2\u62d4\u3001\u6a21\u5757\u5316\u6269\u5c55\u3001\u63d0 \u4f9b\u53ef\u66ff\u4ee3\u7684\u667a\u80fd\u5408\u7ea6\u3001\u5171\u8bc6\u673a\u5236\u3001P2P\u7f51\u7edc\u4f20\u8f93\u3001\u5927\u6570\u636e\u52a0\u5bc6\u5b58\u50a8\u3001\u591a\u8d26\u53f7\u7b49\u529f\u80fd\u3002\u5c06\u5404\u9886\u57df\u5404\u884c\u4e1a \u6240\u9700\u533a\u5757\u94fe\u5316\u7684\u5408\u7ea6\u5c42\u8fdb\u884c\u5c01\u88c5\uff0c\u642d\u914d\u53ef\u89c6\u5316\u64cd\u4f5c\u7cfb\u7edf\u65b9\u4fbf\u5404\u8bed\u79cd\u5f00\u53d1\u8005\u8fc5\u901f\u8c03\u7528\u3002\u9700\u8981\u8fdb\u884c\u94fe\u6539\u7684 \u4e1a\u52a1\u9879\u76ee\u5c06\u5feb\u901f\u5efa\u7acb\u53bb\u4e2d\u5fc3\u5316\u7684\u5e94\u7528\u573a\u666f\uff0c\u6839\u636e\u81ea\u8eab\u9700\u6c42\u642d\u5efa\u4e1a\u52a1\u6a21\u578b\uff0c\u800c\u4e0d\u518d\u9700\u8981\u4ece\u4e0b\u5230\u4e0a\u91cd\u65b0\u5f00 \u53d1\u8282\u7701\u4eba\u529b\u8d22\u529b\uff0c\u8fd9\u5c06\u6025\u901f\u7684\u63a8\u52a8\u533a\u5757\u94fe\u5546\u4e1a\u5e94\u7528\u843d\u5730\u4ee5\u53ca\u4f20\u7edf\u884c\u4e1a\u533a\u5757\u94fe\u6539\u9020\u5de5\u7a0b\u3002"}, "email" : "amodulenetwork@gmail.com", "website" : "http://www.amodule.io", "whitepaper" : "http://www.amodule.io/Amodule%20Network%20(v1.0).pdf", "state" : "NORMAL", "published_on" : "2019-10-30", "links" : {"biyong" : "https://0.plus/AmoDulea", "github" : "https://github.com/amodulenetwork/AmoduleNetwork"}}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "email": {"type": "string"}, "website": {"type": "string"}, "whitepaper": {"type": "string"}, "state": {"type": "string"}, "published_on": {"type": "string"}, "links": {"type": "object", "properties": {"biyong": {"type": "string"}, "github": {"type": "string"}}, "required": ["biyong", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "whitepaper", "state", "published_on", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"CustomPiwikJs": {"type": "object", "properties": {"PluginDescription": {"type": "string"}, "DiagnosticPiwikJsWritable": {"type": "string"}, "DiagnosticPiwikJsNotWritable": {"type": "string"}, "DiagnosticPiwikJsMakeWritable": {"type": "string"}}, "required": ["PluginDescription", "DiagnosticPiwikJsWritable", "DiagnosticPiwikJsNotWritable", "DiagnosticPiwikJsMakeWritable"]}}, "required": ["CustomPiwikJs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CustomPiwikJs" : {"PluginDescription" : "Omogu\u0107uje bilo kom Piwik dodatku da pro\u0161iri Piwik JavaScript datoteku za pra\u0107enje (piwik.js) i doda nove funkcionalnosti i mogu\u0107nosti za pra\u0107enje sajtova.", "DiagnosticPiwikJsWritable" : "JavaScript treker u koji je mogu\u0107e pisati (\"/piwik.js\")", "DiagnosticPiwikJsNotWritable" : "U Piwik JavaScript treker datoteku \"/piwik.js\" nije mogu\u0107e pisati \u0161to zna\u010di da ostali dodaci ne mogu da pro\u0161ire JavaScript treker. U budu\u0107nosti mo\u017eda \u010dak ni neke bazi\u010dne funkcije ne\u0107e raditi kako se o\u010dekuje.", "DiagnosticPiwikJsMakeWritable" : "Predla\u017eemo da omogu\u0107ite pisanje u piwik.js slede\u0107om komandom: %s"}}
json_instruct
{"type": "object", "properties": {"CustomPiwikJs": {"type": "object", "properties": {"PluginDescription": {"type": "string"}, "DiagnosticPiwikJsWritable": {"type": "string"}, "DiagnosticPiwikJsNotWritable": {"type": "string"}, "DiagnosticPiwikJsMakeWritable": {"type": "string"}}, "required": ["PluginDescription", "DiagnosticPiwikJsWritable", "DiagnosticPiwikJsNotWritable", "DiagnosticPiwikJsMakeWritable"]}}, "required": ["CustomPiwikJs"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema": {"type": "string"}, "source": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}, "changes": {"type": "string"}, "instructions": {"type": "string"}, "options": {"type": "object", "properties": {}, "required": []}}, "required": ["schema", "source", "type", "name", "path", "description", "version", "changes", "instructions", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema" : "https://opendesk.cc/schemata/process.json", "source" : "https://github.com/opendesk/collection", "type" : "process", "name" : "Fine Sanding", "path" : "/processes/fine-sanding", "description" : "fine sanding wood", "version" : [0, 0, 1], "changes" : "changes", "instructions" : "instructions.txt", "options" : {}}
json_instruct
{"type": "object", "properties": {"schema": {"type": "string"}, "source": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}, "changes": {"type": "string"}, "instructions": {"type": "string"}, "options": {"type": "object", "properties": {}, "required": []}}, "required": ["schema", "source", "type", "name", "path", "description", "version", "changes", "instructions", "options"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "firebase/php-jwt": {"type": "string"}, "ramsey/uuid": {"type": "string"}}, "required": ["php", "firebase/php-jwt", "ramsey/uuid"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Archisys\\ArtisApiClient\\": {"type": "string"}}, "required": ["Archisys\\ArtisApiClient\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "minimum-stability", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "archisys/artis-api-client", "description" : "Artis Api Client project", "keywords" : ["Archisys", "Artis", "Stallion Archisys Ltd"], "type" : "library", "license" : "MIT", "authors" : [{"name" : "Umesh", "email" : "umesh.chhatrala@archisys.in"}], "minimum-stability" : "dev", "require" : {"php" : ">=7.2.0", "firebase/php-jwt" : "dev-master", "ramsey/uuid" : "4.x-dev"}, "autoload" : {"psr-4" : {"Archisys\\ArtisApiClient\\" : "src/ArtisClients"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "firebase/php-jwt": {"type": "string"}, "ramsey/uuid": {"type": "string"}}, "required": ["php", "firebase/php-jwt", "ramsey/uuid"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Archisys\\ArtisApiClient\\": {"type": "string"}}, "required": ["Archisys\\ArtisApiClient\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "license", "authors", "minimum-stability", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"folders": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {}}, "indexByCategories": {"type": "object", "properties": {"characters": {"type": "array", "items": {"type": "string"}}, "weapons": {"type": "array", "items": {"type": "string"}}, "artifacts": {"type": "array", "items": {"type": "string"}}, "talents": {"type": "array", "items": {"type": "string"}}, "foods": {"type": "array", "items": {"type": "string"}}, "weaponmaterialtypes": {"type": "array", "items": {"type": "string"}}, "talentmaterialtypes": {"type": "array", "items": {"type": "string"}}, "materials": {"type": "array", "items": {"type": "string"}}, "domains": {"type": "array", "items": {"type": "string"}}, "enemies": {"type": "array", "items": {"type": "string"}}}, "required": ["characters", "weapons", "artifacts", "talents", "foods", "weaponmaterialtypes", "talentmaterialtypes", "materials", "domains", "enemies"]}, "altnames": {"type": "object", "properties": {"characters": {"type": "array", "items": {"type": "string"}}, "weaponmaterialtypes": {"type": "array", "items": {"type": "string"}}, "foods": {"type": "array", "items": {"type": "string"}}}, "required": ["characters", "weaponmaterialtypes", "foods"]}}, "required": ["folders", "exclude", "indexByCategories", "altnames"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"folders" : ["characters", "weapons", "elements", "rarity", "artifacts", "weaponmaterialtypes", "talentmaterialtypes", "materials", "constellations", "talents", "foods", "domains", "enemies"], "exclude" : [], "indexByCategories" : {"characters" : ["rarity", "element", "weapontype", "substat", "gender", "region", "birthday", "costs"], "weapons" : ["weapontype", "rarity", "substat", "costs"], "artifacts" : ["rarity"], "talents" : ["costs"], "foods" : ["rarity", "foodtype", "foodfilter", "foodcategory", "ingredients"], "weaponmaterialtypes" : ["day", "region", "domainofforgery"], "talentmaterialtypes" : ["day", "region", "domainofmastery"], "materials" : ["rarity", "category", "materialtype", "dropdomain", "daysofweek"], "domains" : ["region", "domainentrance", "domaintype", "recommendedelements", "daysofweek", "monsterlist"], "enemies" : ["enemytype", "category"]}, "altnames" : {"characters" : ["title", "constellation"], "weaponmaterialtypes" : ["2starname", "3starname", "4starname", "5starname"], "foods" : ["character"]}}
json_instruct
{"type": "object", "properties": {"folders": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {}}, "indexByCategories": {"type": "object", "properties": {"characters": {"type": "array", "items": {"type": "string"}}, "weapons": {"type": "array", "items": {"type": "string"}}, "artifacts": {"type": "array", "items": {"type": "string"}}, "talents": {"type": "array", "items": {"type": "string"}}, "foods": {"type": "array", "items": {"type": "string"}}, "weaponmaterialtypes": {"type": "array", "items": {"type": "string"}}, "talentmaterialtypes": {"type": "array", "items": {"type": "string"}}, "materials": {"type": "array", "items": {"type": "string"}}, "domains": {"type": "array", "items": {"type": "string"}}, "enemies": {"type": "array", "items": {"type": "string"}}}, "required": ["characters", "weapons", "artifacts", "talents", "foods", "weaponmaterialtypes", "talentmaterialtypes", "materials", "domains", "enemies"]}, "altnames": {"type": "object", "properties": {"characters": {"type": "array", "items": {"type": "string"}}, "weaponmaterialtypes": {"type": "array", "items": {"type": "string"}}, "foods": {"type": "array", "items": {"type": "string"}}}, "required": ["characters", "weaponmaterialtypes", "foods"]}}, "required": ["folders", "exclude", "indexByCategories", "altnames"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following 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" : "0x6bb545b8a2e869009487eb7e5e045178b7221e36", "tool" : "osiris", "start" : 1564606298.231733, "end" : 1564606300.9412067, "duration" : 2.7094736099243164, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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" : [[[147.0, 31.083333333333332], [147.0, 31.166666666666668], [147.125, 31.166666666666668], [147.125, 31.083333333333332], [147.0, 31.083333333333332]]]}, "properties" : {"code" : 464750, "url" : "http://madefor.github.io/0410/api/v1/464750.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/464750.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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 1, "pts" : 187, "connections" : 223074, "capacity" : 185892, "investments" : 18381664}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "manifest_version": {"type": "integer"}, "version": {"type": "string"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"page": {"type": "string"}, "persistent": {"type": "boolean"}}, "required": ["page", "persistent"]}, "homepage_url": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}}, "required": ["name", "author", "manifest_version", "version", "description", "background", "homepage_url", "permissions", "browser_action", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SendUrl", "author" : "Eugene Burmakin <http://frey.su>", "manifest_version" : 2, "version" : "0.1.1", "description" : "Utilities to send tabs urls to backend.", "background" : {"page" : "background.html", "persistent" : false}, "homepage_url" : "https://github.com/Freika/SendUrl", "permissions" : ["contextMenus", "tabs", "http://*/*", "https://*/*"], "browser_action" : {"default_icon" : "icon/icon-48.png", "default_title" : "Tab Urls", "default_popup" : "popup.html"}, "icons" : {"16" : "icon/icon-16.png", "48" : "icon/icon-48.png", "128" : "icon/icon-128.png"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "manifest_version": {"type": "integer"}, "version": {"type": "string"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"page": {"type": "string"}, "persistent": {"type": "boolean"}}, "required": ["page", "persistent"]}, "homepage_url": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}}, "required": ["name", "author", "manifest_version", "version", "description", "background", "homepage_url", "permissions", "browser_action", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "homepage", "role"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DrdPlus\\PropertiesByFate\\": {"type": "string"}}, "required": ["DrdPlus\\PropertiesByFate\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DrdPlus\\Tests\\PropertiesByFate\\": {"type": "string"}, "Granam\\Tests\\ExceptionsHierarchy\\": {"type": "string"}}, "required": ["DrdPlus\\Tests\\PropertiesByFate\\", "Granam\\Tests\\ExceptionsHierarchy\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "drdplus/professions": {"type": "string"}}, "required": ["php", "drdplus/professions"]}, "require-dev": {"type": "object", "properties": {"roave/security-advisories": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}, "granam/exceptions-hierarchy": {"type": "string"}, "granam/test-with-mockery": {"type": "string"}, "rector/rector": {"type": "string"}}, "required": ["roave/security-advisories", "phpunit/phpunit", "mockery/mockery", "granam/exceptions-hierarchy", "granam/test-with-mockery", "rector/rector"]}}, "required": ["name", "description", "license", "type", "authors", "autoload", "autoload-dev", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "drdplus/properties-by-fate", "description" : "Exceptional properties by choose or fortune for DrD+", "license" : "MIT", "type" : "library", "authors" : [{"name" : "Jaroslav T\u00fdc", "homepage" : "https://www.jaroslavtyc.com", "role" : "Original author"}], "autoload" : {"psr-4" : {"DrdPlus\\PropertiesByFate\\" : "src"}}, "autoload-dev" : {"psr-4" : {"DrdPlus\\Tests\\PropertiesByFate\\" : "tests/PropertiesByFate", "Granam\\Tests\\ExceptionsHierarchy\\" : "vendor/granam/exceptions-hierarchy/tests/ExceptionsHierarchy"}}, "require" : {"php" : ">=7.4", "drdplus/professions" : "^3.0"}, "require-dev" : {"roave/security-advisories" : "dev-latest", "phpunit/phpunit" : "^9.0", "mockery/mockery" : "~1.0", "granam/exceptions-hierarchy" : "^5.1", "granam/test-with-mockery" : "^2.0", "rector/rector" : "^0.11.57"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "homepage", "role"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DrdPlus\\PropertiesByFate\\": {"type": "string"}}, "required": ["DrdPlus\\PropertiesByFate\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DrdPlus\\Tests\\PropertiesByFate\\": {"type": "string"}, "Granam\\Tests\\ExceptionsHierarchy\\": {"type": "string"}}, "required": ["DrdPlus\\Tests\\PropertiesByFate\\", "Granam\\Tests\\ExceptionsHierarchy\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "drdplus/professions": {"type": "string"}}, "required": ["php", "drdplus/professions"]}, "require-dev": {"type": "object", "properties": {"roave/security-advisories": {"type": "string"}, "phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}, "granam/exceptions-hierarchy": {"type": "string"}, "granam/test-with-mockery": {"type": "string"}, "rector/rector": {"type": "string"}}, "required": ["roave/security-advisories", "phpunit/phpunit", "mockery/mockery", "granam/exceptions-hierarchy", "granam/test-with-mockery", "rector/rector"]}}, "required": ["name", "description", "license", "type", "authors", "autoload", "autoload-dev", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [{"name" : "Vivek Chavan", "email" : "", "designation" : "", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=8954", "name" : "MANAS BAHUDDESHIY SEVABHAVI SANSTHA", "primaryEmail" : "manasanstha@gmail.com", "organisationType" : ["Direct Service", "Intermediary"], "telephone" : ["919028915346"], "mainAddrress" : {"state" : "Maharashtra", "address" : ["Plot No. 56", "Mahajan Colony", "Aurangabad", "Maharashtra", "431003"]}}
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"clbid": {"type": "integer"}, "credits": {"type": "number"}, "crsid": {"type": "integer"}, "departments": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "gereqs": {"type": "array", "items": {"type": "string"}}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "locations": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "number": {"type": "integer"}, "pn": {"type": "boolean"}, "prerequisites": {"type": "string"}, "semester": {"type": "integer"}, "status": {"type": "string"}, "term": {"type": "integer"}, "times": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["clbid", "credits", "crsid", "departments", "description", "gereqs", "instructors", "level", "locations", "name", "number", "pn", "prerequisites", "semester", "status", "term", "times", "title", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clbid" : 119336, "credits" : 1.0, "crsid" : 17626, "departments" : ["REL"], "description" : ["A study of competing and complementary approaches to the study of religion prevalent in the contemporary academy, this course prepares sophomore and junior religion majors for more advanced research seminars. Paying attention to the emphases and presuppositions of each approach, students develop an improved ability to understand the way that these different approaches affect scholarship and contribute to agreements and disagreements about what religion is and should be. Prerequisites: BTS-T or permission of instructor."], "gereqs" : ["WRI"], "instructors" : ["David Booth"], "level" : 200, "locations" : ["OM 110"], "name" : "What is Religion?", "number" : 285, "pn" : false, "prerequisites" : "Prerequisites: BTS-T or permission of instructor.", "semester" : 1, "status" : "O", "term" : 20181, "times" : ["MWF 0200-0255PM"], "title" : "What is Religion? Approaches and Methods", "type" : "Research", "year" : 2018}
json_instruct
{"type": "object", "properties": {"clbid": {"type": "integer"}, "credits": {"type": "number"}, "crsid": {"type": "integer"}, "departments": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "gereqs": {"type": "array", "items": {"type": "string"}}, "instructors": {"type": "array", "items": {"type": "string"}}, "level": {"type": "integer"}, "locations": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "number": {"type": "integer"}, "pn": {"type": "boolean"}, "prerequisites": {"type": "string"}, "semester": {"type": "integer"}, "status": {"type": "string"}, "term": {"type": "integer"}, "times": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["clbid", "credits", "crsid", "departments", "description", "gereqs", "instructors", "level", "locations", "name", "number", "pn", "prerequisites", "semester", "status", "term", "times", "title", "type", "year"], "$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"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}}, "required": ["email", "name"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "license", "peerDependencies", "dependencies", "keywords", "author", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ngx-cloudinary-upload-widget", "version" : "0.0.6", "license" : "MIT", "peerDependencies" : {"@angular/common" : ">=5.0.0", "@angular/core" : ">=5.0.0"}, "dependencies" : {"tslib" : "^2.0.0"}, "keywords" : ["cloudinary", "upload-widget", "cloudinary-upload-widget", "angular-cloudinary"], "author" : {"email" : "shahid.bangash@hotmail.com", "name" : "Shahid ahmad"}, "bugs" : {"url" : "https://github.com/sa-bangash/ngx-cloudinary-upload-widget/issues"}, "homepage" : "https://github.com/sa-bangash/ngx-cloudinary-upload-widget/blob/master/README.md"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}}, "required": ["email", "name"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "license", "peerDependencies", "dependencies", "keywords", "author", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "jms/serializer-bundle": {"type": "string"}, "nelmio/api-doc-bundle": {"type": "string"}}, "required": ["php", "symfony/framework-bundle", "jms/serializer-bundle", "nelmio/api-doc-bundle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Igsem\\APIBundle": {"type": "string"}}, "required": ["Igsem\\APIBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "type", "homepage", "require", "require-dev", "license", "authors", "autoload", "target-dir", "prefer-stable", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "igsem/api-bundle", "description" : "A simple bundle to help Symfony API development. Provides a BaseController, BaseTest and a StatusCode helper", "type" : "symfony-bundle", "homepage" : "https://github.com/JuliusKoronci/IgsemAPIBundle", "require" : {"php" : ">=7.0.1", "symfony/framework-bundle" : "~2.3|~3.0", "jms/serializer-bundle" : "^1.1|~2.0", "nelmio/api-doc-bundle" : "^2.13|~3.0@beta"}, "require-dev" : {"phpunit/phpunit" : "^5.6"}, "license" : "MIT", "authors" : [{"name" : "Julius Koronci", "email" : "jk@web-solutions.sk"}], "autoload" : {"psr-0" : {"Igsem\\APIBundle" : ""}}, "target-dir" : "Igsem/APIBundle", "prefer-stable" : true, "minimum-stability" : "stable"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "jms/serializer-bundle": {"type": "string"}, "nelmio/api-doc-bundle": {"type": "string"}}, "required": ["php", "symfony/framework-bundle", "jms/serializer-bundle", "nelmio/api-doc-bundle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Igsem\\APIBundle": {"type": "string"}}, "required": ["Igsem\\APIBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "type", "homepage", "require", "require-dev", "license", "authors", "autoload", "target-dir", "prefer-stable", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "integer"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "ciphertext": {"type": "string"}, "kdf": {"type": "string"}, "kdfparams": {"type": "object", "properties": {"c": {"type": "integer"}, "dklen": {"type": "integer"}, "prf": {"type": "string"}, "salt": {"type": "string"}}, "required": ["c", "dklen", "prf", "salt"]}, "mac": {"type": "string"}}, "required": ["cipher", "cipherparams", "ciphertext", "kdf", "kdfparams", "mac"]}, "address": {"type": "string"}, "name": {"type": "string"}, "meta": {"type": "string"}}, "required": ["id", "version", "crypto", "address", "name", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "bd916436-bbf8-bf0a-4945-8d8502a44846", "version" : 3, "crypto" : {"cipher" : "aes-128-ctr", "cipherparams" : {"iv" : "b079f41a01118ae7eefcc2fa83103516"}, "ciphertext" : "0767f5bc7a117ac2d6369c646f469c96a5a1d197b106c31c42f10f477ccc4833", "kdf" : "pbkdf2", "kdfparams" : {"c" : 10240, "dklen" : 32, "prf" : "hmac-sha256", "salt" : "22197b38a6531e12de7d61cfc39eea2085f7802f68762d89177411a6bdb1ccf5"}, "mac" : "05ba36a2a3ddc78fb7962e89d7c2f284de5f91d8f3fd2d14af19d85988f7e80d"}, "address" : "5667d26d1e73bacbeab8a8a7bee1ace4b9818f31", "name" : "", "meta" : "{}"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "integer"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "ciphertext": {"type": "string"}, "kdf": {"type": "string"}, "kdfparams": {"type": "object", "properties": {"c": {"type": "integer"}, "dklen": {"type": "integer"}, "prf": {"type": "string"}, "salt": {"type": "string"}}, "required": ["c", "dklen", "prf", "salt"]}, "mac": {"type": "string"}}, "required": ["cipher", "cipherparams", "ciphertext", "kdf", "kdfparams", "mac"]}, "address": {"type": "string"}, "name": {"type": "string"}, "meta": {"type": "string"}}, "required": ["id", "version", "crypto", "address", "name", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "ep_font_color.color": {"type": "string"}, "ep_font_color.black": {"type": "string"}, "ep_font_color.red": {"type": "string"}, "ep_font_color.green": {"type": "string"}, "ep_font_color.blue": {"type": "string"}, "ep_font_color.yellow": {"type": "string"}, "ep_font_color.orange": {"type": "string"}}, "required": ["@metadata", "ep_font_color.color", "ep_font_color.black", "ep_font_color.red", "ep_font_color.green", "ep_font_color.blue", "ep_font_color.yellow", "ep_font_color.orange"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Mrkczr"]}, "ep_font_color.color" : "Kulay", "ep_font_color.black" : "itim", "ep_font_color.red" : "pula", "ep_font_color.green" : "berde", "ep_font_color.blue" : "asul", "ep_font_color.yellow" : "dilaw", "ep_font_color.orange" : "kahel"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "ep_font_color.color": {"type": "string"}, "ep_font_color.black": {"type": "string"}, "ep_font_color.red": {"type": "string"}, "ep_font_color.green": {"type": "string"}, "ep_font_color.blue": {"type": "string"}, "ep_font_color.yellow": {"type": "string"}, "ep_font_color.orange": {"type": "string"}}, "required": ["@metadata", "ep_font_color.color", "ep_font_color.black", "ep_font_color.red", "ep_font_color.green", "ep_font_color.blue", "ep_font_color.yellow", "ep_font_color.orange"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "yes": {"type": "string"}, "no": {"type": "string"}, "help-title": {"type": "string"}, "help-version": {"type": "string"}, "help-repo": {"type": "string"}, "help-aliases": {"type": "string"}, "help-arguments": {"type": "string"}, "help-default": {"type": "string"}, "help-optional": {"type": "string"}, "configuring-help-lang": {"type": "string"}, "eventstreams-diff": {"type": "string"}, "eventstreams-talk": {"type": "string"}, "eventstreams-contribs": {"type": "string"}, "eventstreams-new": {"type": "string"}, "eventstreams-bot": {"type": "string"}, "eventstreams-minor": {"type": "string"}, "linking-link": {"type": "string"}, "linking-links": {"type": "string"}, "streaming-stream-namespace": {"type": "string"}, "streaming-stream-title": {"type": "string"}, "streaming-key-namespace": {"type": "string"}, "streaming-key-title": {"type": "string"}, "streaming-key-type": {"type": "string"}, "translatewiki-header": {"type": "string"}}, "required": ["@metadata", "yes", "no", "help-title", "help-version", "help-repo", "help-aliases", "help-arguments", "help-default", "help-optional", "configuring-help-lang", "eventstreams-diff", "eventstreams-talk", "eventstreams-contribs", "eventstreams-new", "eventstreams-bot", "eventstreams-minor", "linking-link", "linking-links", "streaming-stream-namespace", "streaming-stream-title", "streaming-key-namespace", "streaming-key-title", "streaming-key-type", "translatewiki-header"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Robby"]}, "yes" : "jo", "no" : "neen", "help-title" : "H\u00ebllef", "help-version" : "Versioun {0}.", "help-repo" : "Quellcode: {0}", "help-aliases" : "Aliasen", "help-arguments" : "Argumenter", "help-default" : "Als Standard: '{0}'.", "help-optional" : "fakultativ", "configuring-help-lang" : "D'Sprooch vum Bot op d\u00ebsem Server \u00e4nneren.", "eventstreams-diff" : "\u00cbnnerscheed", "eventstreams-talk" : "Diskussioun", "eventstreams-contribs" : "Kontributiounen", "eventstreams-new" : "N", "eventstreams-bot" : "B", "eventstreams-minor" : "k", "linking-link" : "Link:", "linking-links" : "Linken:", "streaming-stream-namespace" : "vum Nummraum '{0}'", "streaming-stream-title" : "vun der S\u00e4it '{0}'", "streaming-key-namespace" : "Nummraum-Zuel", "streaming-key-title" : "Titel vun der S\u00e4it", "streaming-key-type" : "Typ vun der \u00c4nnerung", "translatewiki-header" : "{0} {1:Message|Message} vum {2} {2:Auteur|Auteuren}"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "yes": {"type": "string"}, "no": {"type": "string"}, "help-title": {"type": "string"}, "help-version": {"type": "string"}, "help-repo": {"type": "string"}, "help-aliases": {"type": "string"}, "help-arguments": {"type": "string"}, "help-default": {"type": "string"}, "help-optional": {"type": "string"}, "configuring-help-lang": {"type": "string"}, "eventstreams-diff": {"type": "string"}, "eventstreams-talk": {"type": "string"}, "eventstreams-contribs": {"type": "string"}, "eventstreams-new": {"type": "string"}, "eventstreams-bot": {"type": "string"}, "eventstreams-minor": {"type": "string"}, "linking-link": {"type": "string"}, "linking-links": {"type": "string"}, "streaming-stream-namespace": {"type": "string"}, "streaming-stream-title": {"type": "string"}, "streaming-key-namespace": {"type": "string"}, "streaming-key-title": {"type": "string"}, "streaming-key-type": {"type": "string"}, "translatewiki-header": {"type": "string"}}, "required": ["@metadata", "yes", "no", "help-title", "help-version", "help-repo", "help-aliases", "help-arguments", "help-default", "help-optional", "configuring-help-lang", "eventstreams-diff", "eventstreams-talk", "eventstreams-contribs", "eventstreams-new", "eventstreams-bot", "eventstreams-minor", "linking-link", "linking-links", "streaming-stream-namespace", "streaming-stream-title", "streaming-key-namespace", "streaming-key-title", "streaming-key-type", "translatewiki-header"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Pam\u011btn\u00ed deska v Lou\u010dn\u00e9 nad Desnou v \u010d\u00e1sti Koci\u00e1nov", "P31" : "http://www.wikidata.org/entity/Q721747", "P31^label:cs" : "Pam\u011btn\u00ed deska", "P131^label:cs" : "Lou\u010dn\u00e1 nad Desnou", "P6736" : "40863"}, "geometry" : {"type" : "Point", "coordinates" : [17.091, 50.07167]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "802876bd88b7e6c22258", "c" : {"main" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Coronha DSA BRS para SA-58", "ShortName" : "Coronha SA-58 BRS", "Description" : "Coronha BRS ( Coronha Rifle de Batalha) para SA-58, fabricado pela DS Arms."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"sinusbot-scripting-engine": {"type": "string"}}, "required": ["sinusbot-scripting-engine"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "scripts", "version" : "1.0.0", "description" : "Example scripts based on the new scripting engine of the SinusBot.", "main" : "index.js", "repository" : "https://github.com/sinusbot/scripts", "author" : "SinusBot", "license" : "MIT", "devDependencies" : {"sinusbot-scripting-engine" : "^1.0.18"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"sinusbot-scripting-engine": {"type": "string"}}, "required": ["sinusbot-scripting-engine"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"28168": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28171": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28167": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28166": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28173": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28169": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28170": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28172": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["28168", "28171", "28167", "28166", "28173", "28169", "28170", "28172"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"28168" : {"nama" : "BABAKANLOA", "dapil" : [32, 3211, 13214, 2320501]}, "28171" : {"nama" : "CIHUNI", "dapil" : [32, 3211, 13214, 2320501]}, "28167" : {"nama" : "CIMARAGAS", "dapil" : [32, 3211, 13214, 2320501]}, "28166" : {"nama" : "CITANGTU", "dapil" : [32, 3211, 13214, 2320501]}, "28173" : {"nama" : "KARANGSARI", "dapil" : [32, 3211, 13214, 2320501]}, "28169" : {"nama" : "SUKAHURIP", "dapil" : [32, 3211, 13214, 2320501]}, "28170" : {"nama" : "SUKAMULYA", "dapil" : [32, 3211, 13214, 2320501]}, "28172" : {"nama" : "SUKARASA", "dapil" : [32, 3211, 13214, 2320501]}}
json_instruct
{"type": "object", "properties": {"28168": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28171": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28167": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28166": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28173": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28169": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28170": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "28172": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["28168", "28171", "28167", "28166", "28173", "28169", "28170", "28172"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"index.js": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.js", "index.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index.js" : "sha512-s63RkjILz+xK1JkQMwOSx5jciz5x0fK9Jirep+0lUEf8W8210hYkUukBl6MXq8YlDzH9lNdewdZvqW1REXU0NA==", "index.min.js" : "sha512-v9kCzFegxpwB+BXE5wJUFChSBLJ4/yT5kAPEC9oJcUzV7LXD7K2dwx27RoUMMGik/kbaMLL8xQNeQ/qDltDVkg=="}
json_instruct
{"type": "object", "properties": {"index.js": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.js", "index.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items": {"type": "string"}}}, "required": ["datestamp", "title", "creator", "identifier", "description", "subject"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"datestamp" : "Wed Apr 14 21:22:22 EDT 2021", "title" : "Replication data for: Complex Tax Incentives", "creator" : "Johannes Abeler", "identifier" : ["116499", "116499", "https://doi.org/10.3886/E116499V1"], "description" : "How does complexity affect people's reaction to tax changes? To answer this question, we conduct an experiment in which subjects work for a piece rate and face taxes. One treatment features a simple tax system, the other a complex one. Subjects' economic incentives are identical across treatments. We introduce the same sequence of additional taxes in both treatments. Subjects in the complex treatment underreact to new taxes; some ignore new taxes entirely. The underreaction is stronger for subjects with lower cognitive ability. Contrary to predictions from models of rational inattention, subjects are equally likely to ignore large or small incentive changes (JEL D14, H24, H31)", "subject" : ["D14 Household Saving; Personal Finance", "H24 Personal Income and Other Nonbusiness Taxes and Subsidies; includes inheritance and gift taxes", "H31 Fiscal Policies and Behavior of Economic Agents: Household"]}
json_instruct
{"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items": {"type": "string"}}}, "required": ["datestamp", "title", "creator", "identifier", "description", "subject"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "bin": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"symfony/console": {"type": "string"}, "doctrine/dbal": {"type": "string"}, "linkorb/connector": {"type": "string"}}, "required": ["symfony/console", "doctrine/dbal", "linkorb/connector"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "linkorb/conventions-checker": {"type": "string"}}, "required": ["phpunit/phpunit", "linkorb/conventions-checker"]}, "extra": {"type": "object", "properties": {"grumphp": {"type": "object", "properties": {"config-default-path": {"type": "string"}}, "required": ["config-default-path"]}}, "required": ["grumphp"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DbTk\\SchemaLoader\\": {"type": "string"}}, "required": ["DbTk\\SchemaLoader\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DbTk\\SchemaLoader\\Tests\\": {"type": "string"}}, "required": ["DbTk\\SchemaLoader\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "bin", "minimum-stability", "require", "require-dev", "extra", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dbtk/schema-loader", "description" : "Load Database schema from XML", "keywords" : ["Database", "schema", "loader", "xml", "linkorb"], "license" : "MIT", "authors" : [{"name" : "Joost Faassen", "email" : "j.faassen@linkorb.com"}, {"name" : "LinkORB Engineering Team", "email" : "engineering@linkorb.com"}], "bin" : ["bin/dbtk-schema-loader"], "minimum-stability" : "stable", "require" : {"symfony/console" : "^2.4|^3.0|^4.0|^5.0", "doctrine/dbal" : "~2.5", "linkorb/connector" : "~1.0"}, "require-dev" : {"phpunit/phpunit" : "~4.6", "linkorb/conventions-checker" : "~1.1"}, "extra" : {"grumphp" : {"config-default-path" : "vendor/linkorb/conventions-checker/config/lib/grumphp.yml"}}, "autoload" : {"psr-4" : {"DbTk\\SchemaLoader\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"DbTk\\SchemaLoader\\Tests\\" : "tests/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "bin": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"symfony/console": {"type": "string"}, "doctrine/dbal": {"type": "string"}, "linkorb/connector": {"type": "string"}}, "required": ["symfony/console", "doctrine/dbal", "linkorb/connector"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "linkorb/conventions-checker": {"type": "string"}}, "required": ["phpunit/phpunit", "linkorb/conventions-checker"]}, "extra": {"type": "object", "properties": {"grumphp": {"type": "object", "properties": {"config-default-path": {"type": "string"}}, "required": ["config-default-path"]}}, "required": ["grumphp"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DbTk\\SchemaLoader\\": {"type": "string"}}, "required": ["DbTk\\SchemaLoader\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"DbTk\\SchemaLoader\\Tests\\": {"type": "string"}}, "required": ["DbTk\\SchemaLoader\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "bin", "minimum-stability", "require", "require-dev", "extra", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"oxidization=unaffected": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "oxidization=exposed": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "oxidization=weathered": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "oxidization=oxidized": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["oxidization=unaffected", "oxidization=exposed", "oxidization=weathered", "oxidization=oxidized"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"oxidization=unaffected" : {"model" : "vauban:block/copper_redstone_pipe"}, "oxidization=exposed" : {"model" : "vauban:block/exposed_copper_redstone_pipe"}, "oxidization=weathered" : {"model" : "vauban:block/weathered_copper_redstone_pipe"}, "oxidization=oxidized" : {"model" : "vauban:block/oxidized_copper_redstone_pipe"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"oxidization=unaffected": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "oxidization=exposed": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "oxidization=weathered": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "oxidization=oxidized": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["oxidization=unaffected", "oxidization=exposed", "oxidization=weathered", "oxidization=oxidized"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 400\u00b0F. Line 14 muffin cups with paper liners. Spray liners with nonstick spray. Whisk next 7 ingredients in bowl. Stir in figs and pecans. Whisk sugar and oil in large bowl. Whisk in eggs, then buttermilk, vanilla, and lemon peel. Mix in dry ingredients. Divide batter among cups.", "Bake muffins until browned on top and tester inserted into center comes out clean, about 18 minutes. Cool on rack."], "ingredients" : ["Nonstick vegetable oil spray", "1 cup all purpose flour", "1/2 cup whole wheat flour", "1/2 cup oat bran", "2 teaspoons ground cinnamon", "2 teaspoons baking powder", "1 teaspoon baking soda", "1/2 teaspoon salt", "1 cup (packed) diced dried Black Mission figs (about 6 1/2 ounces)", "1/2 cup chopped pecans", "1/2 cup (packed) golden brown sugar", "1/3 cup vegetable oil", "2 large eggs", "1 1/4 cups reduced-fat (2%) buttermilk", "1 tablespoon vanilla extract", "1 teaspoon grated lemon peel"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Fruit", "Nut", "Breakfast", "Brunch", "Bake", "Fig", "Pecan", "Oat", "Bran", "Whole Wheat", "Kidney Friendly", "Vegetarian", "Pescatarian", "Peanut Free", "Soy Free", "Kosher"], "title" : "Whole Wheat Bran Muffins with Figs and Pecans", "url" : "http://www.epicurious.com/recipes/food/views/whole-wheat-bran-muffins-with-figs-and-pecans-231587"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "chipped:block/blue_terracotta_16"}
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": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "planning-permission-history": {"type": "string"}, "notes": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "planning-permission-date": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "ownership-status": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["site-address", "planning-permission-history", "notes", "site", "maximum-net-dwellings", "planning-permission-status", "hectares", "site-plan-url", "organisation", "point", "planning-permission-date", "minimum-net-dwellings", "name", "ownership-status", "start-date", "planning-permission-type", "slug", "entity", "entry-date", "end-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.125102, 52.499444]}, "properties" : {"site-address" : "THE EDUCATION CENTRE, CHURCH STREET, PENSNETT, BRIERLEY HILL, DY5 4HB", "planning-permission-history" : "https://mapping.dudley.gov.uk/atMyDudley.aspx", "notes" : "Outline 14 dwellings", "site" : "DEVOPP0018", "maximum-net-dwellings" : "14", "planning-permission-status" : "permissioned", "hectares" : "0.6", "site-plan-url" : "https://mapping.dudley.gov.uk/atMyDudley.aspx?MapSource=DMBC/AllMaps&SearchLayer=brownfield_register&SearchField=br_reference&SearchValue=DEVOPP0018", "organisation" : "local-authority-eng:DUD", "point" : "POINT(-2.125102 52.499444)", "planning-permission-date" : "2017-03-20", "minimum-net-dwellings" : "14", "name" : "DEVOPP0018", "ownership-status" : "owned by a public authority", "start-date" : "2016-06-30", "planning-permission-type" : "outline planning permission", "slug" : "/brownfield-land/local-authority-eng/DUD/DEVOPP0018", "entity" : 481462, "entry-date" : "2017-12-19", "end-date" : "2020-03-12"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "planning-permission-history": {"type": "string"}, "notes": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "planning-permission-date": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "ownership-status": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["site-address", "planning-permission-history", "notes", "site", "maximum-net-dwellings", "planning-permission-status", "hectares", "site-plan-url", "organisation", "point", "planning-permission-date", "minimum-net-dwellings", "name", "ownership-status", "start-date", "planning-permission-type", "slug", "entity", "entry-date", "end-date"]}}, "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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xd7394087e1dbbe477fe4f1cf373b9ac9459565ff", "tool" : "mythril", "start" : 1563295822.7248669, "end" : 1563295833.3220398, "duration" : 10.597172975540161, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Id": {"type": "integer"}, "DisplayName": {"type": "string"}, "Username": {"type": "string"}, "Level": {"type": "integer"}, "XP": {"type": "integer"}, "Developer": {"type": "boolean"}}, "required": ["Id", "DisplayName", "Username", "Level", "XP", "Developer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : 3687570258, "DisplayName" : "Virtual GIO", "Username" : "Virtual GIO", "Level" : 1, "XP" : 0, "Developer" : false}
json_instruct
{"type": "object", "properties": {"Id": {"type": "integer"}, "DisplayName": {"type": "string"}, "Username": {"type": "string"}, "Level": {"type": "integer"}, "XP": {"type": "integer"}, "Developer": {"type": "boolean"}}, "required": ["Id", "DisplayName", "Username", "Level", "XP", "Developer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"id": {"type": "string"}, "proxyTypeId": {"type": "string"}}, "required": ["id", "proxyTypeId"]}}, "required": ["id", "type", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : "root-proxy", "type" : "rootProxies", "attributes" : {"id" : "root-proxy", "proxyTypeId" : "##(proxyTypeId)"}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"id": {"type": "string"}, "proxyTypeId": {"type": "string"}}, "required": ["id", "proxyTypeId"]}}, "required": ["id", "type", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "iis": {"type": "string"}, "nginx": {"type": "string"}}, "required": ["start", "iis", "nginx"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-rename": {"type": "string"}}, "required": ["gulp", "gulp-rename"]}}, "required": ["name", "homepage", "version", "main", "description", "author", "license", "repository", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jkpluta-intranet", "homepage" : "https://jkpluta.github.io", "version" : "0.1.0", "main" : "index.html", "description" : "Eksperymentalny intranet", "author" : {"name" : "Jan K. Pluta", "email" : "jkpluta@gmail.com", "url" : "jkpluta.github.io"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/jkpluta/jkpluta-intranet.git"}, "scripts" : {"start" : "http-server -a localhost -p 60080 -o -c-1", "iis" : "gulp iis", "nginx" : "sudo gulp nginx"}, "devDependencies" : {"gulp" : "^3.9.1", "gulp-rename" : "^1.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "iis": {"type": "string"}, "nginx": {"type": "string"}}, "required": ["start", "iis", "nginx"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-rename": {"type": "string"}}, "required": ["gulp", "gulp-rename"]}}, "required": ["name", "homepage", "version", "main", "description", "author", "license", "repository", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "macahekit", "h" : [{"d" : [{"f" : "\u53d7\u9a5a\uff0c\u88ab\u9a5a\u64fe\u3001\u9a5a\u52d5\u3002", "e" : ["\ufff9`Ma~`cahekit~ `to~ `koya~ `wawa~.\ufffa\ufffb\u90a3\u500b\u5c0f\u5b69\u53d7\u9a5a\u4e86\u3002"]}]}], "stem" : "cahekit"}
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"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"messages": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "destinations": {"type": "array", "items": {"type": "object", "properties": {"to": {"type": "string"}}, "required": ["to"]}}, "text": {"type": "string"}, "flash": {"type": "boolean"}}, "required": ["from", "destinations", "text", "flash"]}}}, "required": ["messages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"messages" : [{"from" : "InfoSMS", "destinations" : [{"to" : "41793026727"}], "text" : "Toto, I've got a feeling we're not in Kansas anymore.", "flash" : true}]}
json_instruct
{"type": "object", "properties": {"messages": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "destinations": {"type": "array", "items": {"type": "object", "properties": {"to": {"type": "string"}}, "required": ["to"]}}, "text": {"type": "string"}, "flash": {"type": "boolean"}}, "required": ["from", "destinations", "text", "flash"]}}}, "required": ["messages"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "copy-to-docs": {"type": "string"}, "gzip-data": {"type": "string"}}, "required": ["start", "build", "copy-to-docs", "gzip-data"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-proposal-object-rest-spread": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-loader": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "regenerator-runtime": {"type": "string"}, "snazzy": {"type": "string"}, "standard": {"type": "string"}, "unfetch": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-object-rest-spread", "@babel/preset-env", "@babel/preset-react", "babel-core", "babel-jest", "babel-loader", "react", "react-dom", "regenerator-runtime", "snazzy", "standard", "unfetch", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"core-js": {"type": "string"}}, "required": ["core-js"]}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "minisearch-example", "version" : "1.0.0", "description" : "Example app for MiniSearch", "main" : "index.js", "author" : "Luca Ongaro", "license" : "MIT", "scripts" : {"start" : "webpack-dev-server --watch --mode=development", "build" : "webpack --mode=production && yarn copy-to-docs && yarn gzip-data", "copy-to-docs" : "mkdir -p ../docs/examples && cp ./{dist/app.js,index.html,billboard_1965-2015.json} ../docs/examples", "gzip-data" : "gzip < ../docs/examples/billboard_1965-2015.json > ../docs/examples/billboard_1965-2015.json.gz"}, "devDependencies" : {"@babel/cli" : "^7.0.0", "@babel/core" : "^7.0.1", "@babel/plugin-proposal-object-rest-spread" : "^7.0.0", "@babel/preset-env" : "^7.0.0", "@babel/preset-react" : "^7.0.0", "babel-core" : "^7.0.0-0", "babel-jest" : "^25.1.0", "babel-loader" : "^8.0.4", "react" : "^16.5.2", "react-dom" : "^16.5.2", "regenerator-runtime" : "^0.13.0", "snazzy" : "^8.0.0", "standard" : "^12.0.1", "unfetch" : "^4.0.1", "webpack" : "^4.16.5", "webpack-cli" : "^3.1.0", "webpack-dev-server" : "^3.1.9"}, "dependencies" : {"core-js" : "3"}}
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": {"start": {"type": "string"}, "build": {"type": "string"}, "copy-to-docs": {"type": "string"}, "gzip-data": {"type": "string"}}, "required": ["start", "build", "copy-to-docs", "gzip-data"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-proposal-object-rest-spread": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-loader": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "regenerator-runtime": {"type": "string"}, "snazzy": {"type": "string"}, "standard": {"type": "string"}, "unfetch": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-object-rest-spread", "@babel/preset-env", "@babel/preset-react", "babel-core", "babel-jest", "babel-loader", "react", "react-dom", "regenerator-runtime", "snazzy", "standard", "unfetch", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"core-js": {"type": "string"}}, "required": ["core-js"]}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"options": {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "string"}}}, "required": ["sources"]}, "result": {"type": "object", "properties": {"issues": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "module": {"type": "string"}}, "required": ["type", "module"]}}}, "required": ["issues"]}}, "required": ["options", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"options" : {"sources" : ["**/*.js"]}, "result" : {"issues" : [{"type" : "unusedModule", "module" : "unused"}]}}
json_instruct
{"type": "object", "properties": {"options": {"type": "object", "properties": {"sources": {"type": "array", "items": {"type": "string"}}}, "required": ["sources"]}, "result": {"type": "object", "properties": {"issues": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "module": {"type": "string"}}, "required": ["type", "module"]}}}, "required": ["issues"]}}, "required": ["options", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "type", "count"]}}}, "required": ["fullName", "methods"]}}}, "required": ["collections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"collections" : [{"fullName" : "System.Reflection.ReflectionTypeLoadException", "methods" : [{"name" : "(System.Reflection.ReflectionTypeLoadException) object", "type" : "CAST", "count" : 50}, {"name" : "System.Reflection.ReflectionTypeLoadException.LoaderExceptions", "type" : "PROP", "count" : 244}, {"name" : "System.Reflection.ReflectionTypeLoadException.Types", "type" : "PROP", "count" : 184}]}]}
json_instruct
{"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "type", "count"]}}}, "required": ["fullName", "methods"]}}}, "required": ["collections"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["source_name", "url", "description"]}}, "description": {"type": "string"}, "relationship_type": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "external_references", "description", "relationship_type", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "bundle", "id" : "bundle--a3ee177f-97a8-4ac2-b3e4-a8e0edebcbf9", "spec_version" : "2.0", "objects" : [{"created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "malware--77ca1aa3-280c-4b67-abaa-e8fb891a8f83", "target_ref" : "attack-pattern--354a7f88-63fb-41b5-a801-ce3b377b36f1", "external_references" : [{"source_name" : "Check Point Pay2Key November 2020", "url" : "https://research.checkpoint.com/2020/ransomware-alert-pay2key/", "description" : "Check Point. (2020, November 6). Ransomware Alert: Pay2Key. Retrieved January 4, 2021."}], "description" : "[Pay2Key](https://attack.mitre.org/software/S0556) has the ability to gather the hostname of the victim machine.(Citation: Check Point Pay2Key November 2020)", "relationship_type" : "uses", "id" : "relationship--85b17ee3-cd16-4f7d-bfaa-23e756f344d5", "type" : "relationship", "modified" : "2021-01-05T15:14:03.224Z", "created" : "2021-01-05T15:14:03.224Z"}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["source_name", "url", "description"]}}, "description": {"type": "string"}, "relationship_type": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "external_references", "description", "relationship_type", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["aerlands:skyroot_planks"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442728935.971514, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 299854148835717671124480896538104959735, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["bridge", "suspension bridge", "sunset", "connection", "evening", "nobody", "transportation", "water", "sunrise", "sky", "watercraft", "structure", "vehicle", "silhouette", "reflection", "dusk", "travel", "strait", "construction", "morning"], "probs" : [0.999137282371521, 0.9962303638458252, 0.9934465289115906, 0.98814857006073, 0.9876164793968201, 0.9784066677093506, 0.9776244163513184, 0.9741979837417603, 0.9707827568054199, 0.958903968334198, 0.9515461921691895, 0.9355954527854919, 0.9247626066207886, 0.914392352104187, 0.9128105640411377, 0.8862992525100708, 0.8666270971298218, 0.8651422262191772, 0.8649779558181763, 0.8621520400047302]}}, "docid_str" : "e195cef48e9fac635c5bb82fbe4612f7"}]}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[1.0, 1.0, 1.0, 3.0, 0.0, 2.0, 1.0, 3.0, 4.0, 1.0]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.34821385, "y" : 0.27221572}, {"x" : 0.6357862, "y" : 0.27221572}, {"x" : 0.6357862, "y" : 0.41387713}, {"x" : 0.34821385, "y" : 0.41387713}], "score" : 0.62301165}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "urlPathPattern": {"type": "string"}}, "required": ["method", "urlPathPattern"]}, "response": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}}, "required": ["Content-Type"]}, "status": {"type": "integer"}, "jsonBody": {"type": "object", "properties": {"breachId": {"type": "integer"}, "order": {"type": "string"}, "sentencingCourtName": {"type": "string"}, "incidentDate": {"type": "string"}, "statusDate": {"type": "string"}, "provider": {"type": "string"}, "team": {"type": "string"}, "officer": {"type": "string"}, "status": {"type": "string"}, "notes": {"type": "string"}, "documents": {"type": "array", "items": {"type": "object", "properties": {"documentId": {"type": "string"}, "documentName": {"type": "string"}, "author": {"type": "string"}, "type": {"type": "string"}, "extendedDescription": {"type": "string"}, "createdAt": {"type": "string"}}, "required": ["documentId", "documentName", "author", "type", "extendedDescription", "createdAt"]}}}, "required": ["breachId", "order", "sentencingCourtName", "incidentDate", "statusDate", "provider", "team", "officer", "status", "notes", "documents"]}}, "required": ["headers", "status", "jsonBody"]}}, "required": ["id", "request", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "950b6443-28e4-43cc-9d5d-bf76091cd9ee", "request" : {"method" : "GET", "urlPathPattern" : "/offender/D991494/convictions/1361422142/breaches/98765"}, "response" : {"headers" : {"Content-Type" : "application/json"}, "status" : 200, "jsonBody" : {"breachId" : 98765, "order" : "ORA Community Order (12 Months)", "sentencingCourtName" : "Sheffield Magistrates' Court", "incidentDate" : "2013-09-13", "statusDate" : "2013-11-26", "provider" : "NPS North East", "team" : "Enforcement hub - Sheffield and Rotherham", "officer" : "Unallocated", "status" : "Completed - Amended & Continued", "notes" : "Paragraph 1: Some information.\nParagraph 2: And some more.\nParagraph 3: And another\n\nParagraph 4: And another", "documents" : [{"documentId" : "98765", "documentName" : "NAT NPS Breach Report CO SSO_HOUGHTON_R_DX12340X.doc", "author" : "Claire Smith", "type" : "NSI_DOCUMENT", "extendedDescription" : "Non Statutory Intervention for Breach Request on 18/09/2017", "createdAt" : "2020-02-25T15:48:09.163"}]}}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "urlPathPattern": {"type": "string"}}, "required": ["method", "urlPathPattern"]}, "response": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}}, "required": ["Content-Type"]}, "status": {"type": "integer"}, "jsonBody": {"type": "object", "properties": {"breachId": {"type": "integer"}, "order": {"type": "string"}, "sentencingCourtName": {"type": "string"}, "incidentDate": {"type": "string"}, "statusDate": {"type": "string"}, "provider": {"type": "string"}, "team": {"type": "string"}, "officer": {"type": "string"}, "status": {"type": "string"}, "notes": {"type": "string"}, "documents": {"type": "array", "items": {"type": "object", "properties": {"documentId": {"type": "string"}, "documentName": {"type": "string"}, "author": {"type": "string"}, "type": {"type": "string"}, "extendedDescription": {"type": "string"}, "createdAt": {"type": "string"}}, "required": ["documentId", "documentName", "author", "type", "extendedDescription", "createdAt"]}}}, "required": ["breachId", "order", "sentencingCourtName", "incidentDate", "statusDate", "provider", "team", "officer", "status", "notes", "documents"]}}, "required": ["headers", "status", "jsonBody"]}}, "required": ["id", "request", "response"], "$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"}, "author": {"type": "string"}, "description": {"type": "string"}, "requires": {"type": "boolean"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lorem-ipsum": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"minimist": {"type": "string"}}, "required": ["minimist"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "minimist": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["lorem-ipsum", "minimist"]}}, "required": ["name", "version", "main", "author", "description", "requires", "license", "engines", "repository", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "serverless-random-loremipsum-generator", "version" : "1.0.0", "main" : "handler.js", "author" : "Juv Chan", "description" : "A sample Serverless random Lorem Ipsum Generator Node.js app built using Serverless Framework and AWS Lambda for the #noServerNovember challenge in 2018.", "requires" : true, "license" : "MIT", "engines" : {"node" : ">=8.10"}, "repository" : {"type" : "git", "url" : "https://github.com/juvchan/aws-serverless-loremipsum-generator-2018.git"}, "keywords" : ["serverless", "serverless framework", "nodejs", "noservernovember", "lorem ipsum", "aws", "aws lambda"], "dependencies" : {"lorem-ipsum" : {"version" : "1.0.6", "resolved" : "https://registry.npmjs.org/lorem-ipsum/-/lorem-ipsum-1.0.6.tgz", "integrity" : "sha512-Rx4XH8X4KSDCKAVvWGYlhAfNqdUP5ZdT4rRyf0jjrvWgtViZimDIlopWNfn/y3lGM5K4uuiAoY28TaD+7YKFrQ==", "requires" : {"minimist" : "~1.2.0"}}, "minimist" : {"version" : "1.2.0", "resolved" : "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity" : "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "requires": {"type": "boolean"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"lorem-ipsum": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"minimist": {"type": "string"}}, "required": ["minimist"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "minimist": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["lorem-ipsum", "minimist"]}}, "required": ["name", "version", "main", "author", "description", "requires", "license", "engines", "repository", "keywords", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "created", "type", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "<a href=\"https://twitter.com/TedMielczarek/status/1293581030947946497\">A fair analysis</a> of the reason Mozilla is adrift. Lots of extra agendas, often personal, no discipline, professional values, or much connection with users. The mean petty behavior has no place at a customer driven venture, which Mozilla never has been. Another takeaway is that the fire hose of money was wasted hiring more than a few employees to maintain Firefox. The rest of the windfall could have been invested in the <a href=\"https://www.google.com/search?q=s%26p+500+chart&rlz=1C5CHFA_enUS743US747&oq=S%26P+500+chart&aqs=chrome.0.0l8.4565j1j9&sourceid=chrome&ie=UTF-8\">S&P 500</a>, held in reserve for the next Firefox, a product developed speculatively by entrepreneurial devs, <i>after</i> it achieves market acceptance. They would have billions in reserve by now. Could have changed the way we develop networks, with emphasis on user choice and no reliance on lock-in. But no one was ever empowered at Mozilla to do that, or no one had the vision or ability to lead.", "created" : "Thu, 13 Aug 2020 19:01:46 GMT", "type" : "outline", "image" : "http://scripting.com/images/2017/08/14/mrIncognito.png"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "created", "type", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "homepage", "authors", "description", "dependencies", "resolutions", "license", "keywords", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ng-giphy", "homepage" : "https://github.com/ndelvalle/ng-giphy", "authors" : ["ndelvalle <nicolas.delvalle@gmail.com>"], "description" : "An angular module that leverages the awesome giphy API to use it on angular applications", "dependencies" : {"angular" : "^1.4.9"}, "resolutions" : {"angular" : "~1.4.9"}, "license" : "MIT", "keywords" : ["angular", "angularjs", "gif", "giphy"], "ignore" : ["**/.*", "node_modules", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "homepage", "authors", "description", "dependencies", "resolutions", "license", "keywords", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}