input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"recipe_ID": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}}, "required": ["recipe_ID", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recipe_ID" : "Alabama_77555", "ingredients" : ["sugar", "water", "tray ice cubes", "family size teabags family sized teabags of orange pekoe tea", "water"]}
json_instruct
{"type": "object", "properties": {"recipe_ID": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}}, "required": ["recipe_ID", "ingredients"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "CveIDs", "References"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Name" : "upnp_location.rb", "Title" : "Mac OS X mDNSResponder UPnP Location Overflow", "Description" : "This module exploits a buffer overflow that occurs when processing specially crafted requests set to mDNSResponder. All Mac OS X systems between version 10.4 and 10.4.9 (without the 2007-005 patch) are affected.", "CveIDs" : ["CVE-2007-2386"], "References" : ["http://www.securityfocus.com/bid/24144", "http://support.apple.com/kb/TA24732", "https://github.com/rapid7/metasploit-framework/blob/master/modules/exploits/osx/mdns/upnp_location.rb"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "CveIDs", "References"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"jquery.chained.js": {"type": "string"}, "jquery.chained.min.js": {"type": "string"}, "jquery.chained.remote.js": {"type": "string"}, "jquery.chained.remote.min.js": {"type": "string"}}, "required": ["jquery.chained.js", "jquery.chained.min.js", "jquery.chained.remote.js", "jquery.chained.remote.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.chained.js" : "sha512-JjkQxXsZ8GMTLe9DUkPrx7J2c+LHkgdiG5KnC8SAcH98s6whNCmf7WB8EbUI9GmkjIPdtGrXTFkuyidNAPfZeA==", "jquery.chained.min.js" : "sha512-rcWQG55udn0NOSHKgu3DO5jb34nLcwC+iL1Qq6sq04Sj7uW27vmYENyvWm8I9oqtLoAE01KzcUO6THujRpi/Kg==", "jquery.chained.remote.js" : "sha512-A4ddi0TMTVXndWUSkFHRFejT2KkXIzuTPec3aB/FKbdJneDBUlHOIo2N291n+3GIHB+c4K4T4mI4epXXSzxWOA==", "jquery.chained.remote.min.js" : "sha512-OEurc7K9Oc8XrmW1lyiZu8Y5GJFA3sC5jc6EgJ+ucZXV3UbzhF4P4lRPnf+wze9162NZIWzsm+9gHQ7ONQQSvg=="}
json_instruct
{"type": "object", "properties": {"jquery.chained.js": {"type": "string"}, "jquery.chained.min.js": {"type": "string"}, "jquery.chained.remote.js": {"type": "string"}, "jquery.chained.remote.min.js": {"type": "string"}}, "required": ["jquery.chained.js", "jquery.chained.min.js", "jquery.chained.remote.js", "jquery.chained.remote.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"angular-sanitize.js": {"type": "string"}, "angular-sanitize.min.js": {"type": "string"}}, "required": ["angular-sanitize.js", "angular-sanitize.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"angular-sanitize.js" : "sha512-fi6BIgDI5Qc/SNQk4sj3RQXUwyy8c+GYfhtbGiAFlmfNe75isMebE6FMGFksH/7S/82z7moTk71rxT2mkdRHNQ==", "angular-sanitize.min.js" : "sha512-dcxFWKkQRpW028VZujbdsQoAY27q/MmWCokkMrprpF+s4iyhCMStfJe/zCYy/YKVF497lcU8HP2bG1fXvM1zFQ=="}
json_instruct
{"type": "object", "properties": {"angular-sanitize.js": {"type": "string"}, "angular-sanitize.min.js": {"type": "string"}}, "required": ["angular-sanitize.js", "angular-sanitize.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"co": {"type": "string"}, "commander": {"type": "string"}}, "required": ["co", "commander"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "bin": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "author", "repository", "dependencies", "engines", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "package-clean", "version" : "0.1.2", "description" : "Search JS files and compare with package.json figure out which dependencies are unuse", "keywords" : "uglify uglifyjs directory folder", "homepage" : "https://github.com/ericdum/package-clean", "bugs" : "https://github.com/ericdum/package-clean", "author" : "\u6728\u9171 <lichen.dlc@alibaba-inc.com> (http://mujiang.info/)", "repository" : {"type" : "git", "url" : "https://github.com/ericdum/package-clean"}, "dependencies" : {"co" : "~4.6.0", "commander" : "~2.8.1"}, "engines" : {"node" : ">=4.0.0"}, "bin" : "./index.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"co": {"type": "string"}, "commander": {"type": "string"}}, "required": ["co", "commander"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "bin": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "author", "repository", "dependencies", "engines", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Riaville", "dpt" : "Meuse", "inscrits" : 46, "abs" : 9, "votants" : 37, "blancs" : 6, "nuls" : 2, "exp" : 29, "res" : [{"panneau" : "2", "voix" : 15}, {"panneau" : "1", "voix" : 14}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"roots": {"type": "array", "items": {"type": "string"}}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "testMatch": {"type": "array", "items": {"type": "string"}}, "transform": {"type": "object", "properties": {"^.+\\.(t|j)sx?$": {"type": "string"}}, "required": ["^.+\\.(t|j)sx?$"]}, "transformIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "modulePaths": {"type": "array", "items": {}}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}}, "required": ["roots", "collectCoverageFrom", "testMatch", "transform", "transformIgnorePatterns", "modulePaths", "moduleFileExtensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"roots" : ["<rootDir>/src"], "collectCoverageFrom" : ["src/**/*.{js,jsx,ts,tsx}", "!src/**/*.d.ts"], "testMatch" : ["<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}", "<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"], "transform" : {"^.+\\.(t|j)sx?$" : "ts-jest"}, "transformIgnorePatterns" : ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$"], "modulePaths" : [], "moduleFileExtensions" : ["js", "ts", "node"]}
json_instruct
{"type": "object", "properties": {"roots": {"type": "array", "items": {"type": "string"}}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "testMatch": {"type": "array", "items": {"type": "string"}}, "transform": {"type": "object", "properties": {"^.+\\.(t|j)sx?$": {"type": "string"}}, "required": ["^.+\\.(t|j)sx?$"]}, "transformIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "modulePaths": {"type": "array", "items": {}}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}}, "required": ["roots", "collectCoverageFrom", "testMatch", "transform", "transformIgnorePatterns", "modulePaths", "moduleFileExtensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"SRC": {"type": "string"}, "DEST_DIR": {"type": "string"}, "RFLAGS": {"type": "string"}, "EXCLUDES": {"type": "array", "items": {"type": "string"}}, "DEFAULTS": {"type": "object", "properties": {"run_tests": {"type": "boolean"}, "run_predeploy": {"type": "boolean"}, "run_postdeploy": {"type": "boolean"}, "deploy_staging": {"type": "boolean"}, "deploy_production": {"type": "boolean"}, "create_tag": {"type": "boolean"}}, "required": ["run_tests", "run_predeploy", "run_postdeploy", "deploy_staging", "deploy_production", "create_tag"]}, "SCRIPTS": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "environments": {"type": "array", "items": {"type": "string"}}, "dir": {"type": "string"}, "cmds": {"type": "array", "items": {"type": "string"}}, "confirm": {"type": "boolean"}}, "required": ["type", "environments", "dir", "cmds", "confirm"]}}}, "required": ["SRC", "DEST_DIR", "RFLAGS", "EXCLUDES", "DEFAULTS", "SCRIPTS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"SRC" : "/app001/www/redcap/external_modules", "DEST_DIR" : "/app001/www/redcap/", "RFLAGS" : "--exclude 'deploy.json' --delete -avzcO -e ssh", "EXCLUDES" : [".idea", ".git*"], "DEFAULTS" : {"run_tests" : true, "run_predeploy" : true, "run_postdeploy" : true, "deploy_staging" : false, "deploy_production" : true, "create_tag" : true}, "SCRIPTS" : [{"type" : "test", "environments" : ["local"], "dir" : "{{SRC}}", "cmds" : ["./predeploy.sh", "./run-tests.sh"], "confirm" : true}]}
json_instruct
{"type": "object", "properties": {"SRC": {"type": "string"}, "DEST_DIR": {"type": "string"}, "RFLAGS": {"type": "string"}, "EXCLUDES": {"type": "array", "items": {"type": "string"}}, "DEFAULTS": {"type": "object", "properties": {"run_tests": {"type": "boolean"}, "run_predeploy": {"type": "boolean"}, "run_postdeploy": {"type": "boolean"}, "deploy_staging": {"type": "boolean"}, "deploy_production": {"type": "boolean"}, "create_tag": {"type": "boolean"}}, "required": ["run_tests", "run_predeploy", "run_postdeploy", "deploy_staging", "deploy_production", "create_tag"]}, "SCRIPTS": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "environments": {"type": "array", "items": {"type": "string"}}, "dir": {"type": "string"}, "cmds": {"type": "array", "items": {"type": "string"}}, "confirm": {"type": "boolean"}}, "required": ["type", "environments", "dir", "cmds", "confirm"]}}}, "required": ["SRC", "DEST_DIR", "RFLAGS", "EXCLUDES", "DEFAULTS", "SCRIPTS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"App": {"type": "array", "items": {"type": "string"}}, "AppProviders": {"type": "array", "items": {"type": "string"}}, "components": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "array", "items": {"type": "string"}}, "hooks": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}}, "required": ["App", "AppProviders", "components", "pages", "hooks", "utils"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compilerOptions" : {"baseUrl" : "./src", "paths" : {"App" : ["./App.tsx"], "AppProviders" : ["./AppProviders.tsx"], "components" : ["./components"], "pages" : ["./pages"], "hooks" : ["./hooks"], "utils" : ["./utils"]}}}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"App": {"type": "array", "items": {"type": "string"}}, "AppProviders": {"type": "array", "items": {"type": "string"}}, "components": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "array", "items": {"type": "string"}}, "hooks": {"type": "array", "items": {"type": "string"}}, "utils": {"type": "array", "items": {"type": "string"}}}, "required": ["App", "AppProviders", "components", "pages", "hooks", "utils"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 784, "title" : "Eye of the Storm Domination", "points" : 10, "description" : "Win Eye of the Storm 10 times while holding 4 bases.", "rewardItems" : [], "icon" : "inv_brd_banner", "criteria" : [{"id" : 1239, "description" : "Win Eye of the Storm 10 times while holding 4 bases", "orderIndex" : 0, "max" : 10}, {"id" : 37105, "description" : "Win Eye of the Storm 10 times while holding 4 bases", "orderIndex" : 1, "max" : 10}], "accountWide" : false, "factionId" : 2}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Chermizy-Ailles", "circ" : "1\u00e8re circonscription", "dpt" : "Aisne", "inscrits" : 84, "abs" : 27, "votants" : 57, "blancs" : 6, "nuls" : 1, "exp" : 50, "res" : [{"nuance" : "FN", "nom" : "M. Damien PHILIPPOT", "voix" : 29}, {"nuance" : "REM", "nom" : "Mme Aude BONO-VANDORME", "voix" : 21}]}
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": {"name": {"type": "string"}, "steam": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "gosugamers": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}, "identifier": {"type": "string"}, "hltv": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "csgolounge": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "liquidpedia": {"type": "string"}}, "required": ["name", "steam", "gosugamers", "identifier", "hltv", "csgolounge", "liquidpedia"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Team Acer", "steam" : {"name" : "acer"}, "gosugamers" : {"name" : "Team Acer.", "id" : 10962}, "identifier" : "teamacer", "hltv" : {"name" : "Acer", "id" : "6031"}, "csgolounge" : {"name" : "TA"}, "liquidpedia" : "Team_Acer"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "steam": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "gosugamers": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}, "identifier": {"type": "string"}, "hltv": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "csgolounge": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "liquidpedia": {"type": "string"}}, "required": ["name", "steam", "gosugamers", "identifier", "hltv", "csgolounge", "liquidpedia"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parser": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}}, "required": ["sourceType"]}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"@typescript-eslint/no-empty-function": {"type": "string"}, "@typescript-eslint/no-require-imports": {"type": "string"}, "@typescript-eslint/prefer-namespace-keyword": {"type": "string"}}, "required": ["@typescript-eslint/no-empty-function", "@typescript-eslint/no-require-imports", "@typescript-eslint/prefer-namespace-keyword"]}}, "required": ["parser", "parserOptions", "plugins", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parser" : "@typescript-eslint/parser", "parserOptions" : {"sourceType" : "module"}, "plugins" : ["@typescript-eslint"], "rules" : {"@typescript-eslint/no-empty-function" : "error", "@typescript-eslint/no-require-imports" : "error", "@typescript-eslint/prefer-namespace-keyword" : "error"}}
json_instruct
{"type": "object", "properties": {"parser": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}}, "required": ["sourceType"]}, "plugins": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"@typescript-eslint/no-empty-function": {"type": "string"}, "@typescript-eslint/no-require-imports": {"type": "string"}, "@typescript-eslint/prefer-namespace-keyword": {"type": "string"}}, "required": ["@typescript-eslint/no-empty-function", "@typescript-eslint/no-require-imports", "@typescript-eslint/prefer-namespace-keyword"]}}, "required": ["parser", "parserOptions", "plugins", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "string"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 25132, "name" : "Facebook static top bar", "description" : "It just makes the top bar and the left sidebar static", "user" : {"id" : 25800, "name" : "Andrea Cimitan", "email" : "redacted", "paypal_email" : "andrea.cimitan@gmail.com", "homepage" : null, "about" : null, "license" : null}, "updated" : "2010-03-02T12:07:03.000Z", "weekly_install_count" : 0, "total_install_count" : 555, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/25132-after.png?r=1587974607", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2010-02-12T13:02:15.000Z", "category" : "site", "raw_subcategory" : "facebook", "subcategory" : "facebook", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document domain(\"facebook.com\") {\r\n\r\n#blueBar {\r\n position: fixed !important;\r\n}\r\n\r\n#globalContainer {\r\n width: 981px !important;\r\n}\r\n\r\n#globalContainer > div:first-child {\r\n position: fixed !important;\r\n width: 981px !important;\r\n}\r\n\r\n#globalContainer > #content > div:first-child {\r\n padding-top: 41px !important;\r\n}\r\n\r\n.WelcomePage #globalContainer {\r\n width: auto !important;\r\n}\r\n\r\n.WelcomePage #globalContainer > #content > div:first-child {\r\n padding-top: 0 !important;\r\n border: none !important;\r\n}\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/25132/facebook-static-top-bar.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "string"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "YautjaBerserker", "Registry ID" : "avp:yautjaberserker", "Class" : "org.avp.entities.living.species.yautja.EntityYautjaBerserker"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$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"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"fetch-mock": {"type": "string"}, "jsdom": {"type": "string"}, "mocha": {"type": "string"}, "react-scripts": {"type": "string"}, "react-test-renderer": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["fetch-mock", "jsdom", "mocha", "react-scripts", "react-test-renderer", "webpack", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-airbnb": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-stage-1": {"type": "string"}, "chai": {"type": "string"}, "enzyme": {"type": "string"}, "enzyme-adapter-react-16": {"type": "string"}, "expect": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "sinon": {"type": "string"}, "whatwg-fetch": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-airbnb", "babel-preset-env", "babel-preset-react", "babel-preset-stage-1", "chai", "enzyme", "enzyme-adapter-react-16", "expect", "react", "react-dom", "sinon", "whatwg-fetch"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "dev:hot": {"type": "string"}, "test:watch": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "dev:hot", "test:watch", "eject"]}}, "required": ["name", "version", "private", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-props-and-state-lab", "version" : "0.1.0", "private" : true, "devDependencies" : {"fetch-mock" : "^5.9.4", "jsdom" : "^9.9.1", "mocha" : "^3.2.0", "react-scripts" : "^1.0.7", "react-test-renderer" : "^16.0.0", "webpack" : "^3.6.0", "webpack-dev-server" : "^2.9.1"}, "dependencies" : {"babel-core" : "^6.22.1", "babel-loader" : "^7.1.2", "babel-preset-airbnb" : "^2.1.1", "babel-preset-env" : "^1.6.0", "babel-preset-react" : "^6.22.0", "babel-preset-stage-1" : "^6.24.1", "chai" : "^3.5.0", "enzyme" : "^3.1.0", "enzyme-adapter-react-16" : "^1.0.1", "expect" : "^21.2.1", "react" : "^16.0.0", "react-dom" : "^16.0.0", "sinon" : "^1.17.7", "whatwg-fetch" : "^2.0.3"}, "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "mocha -w test/helpers.js test/*.js", "dev:hot" : "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./", "test:watch" : "npm run test -- --watch", "eject" : "react-scripts eject"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"fetch-mock": {"type": "string"}, "jsdom": {"type": "string"}, "mocha": {"type": "string"}, "react-scripts": {"type": "string"}, "react-test-renderer": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["fetch-mock", "jsdom", "mocha", "react-scripts", "react-test-renderer", "webpack", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-airbnb": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-stage-1": {"type": "string"}, "chai": {"type": "string"}, "enzyme": {"type": "string"}, "enzyme-adapter-react-16": {"type": "string"}, "expect": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "sinon": {"type": "string"}, "whatwg-fetch": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-airbnb", "babel-preset-env", "babel-preset-react", "babel-preset-stage-1", "chai", "enzyme", "enzyme-adapter-react-16", "expect", "react", "react-dom", "sinon", "whatwg-fetch"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "dev:hot": {"type": "string"}, "test:watch": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "build", "test", "dev:hot", "test:watch", "eject"]}}, "required": ["name", "version", "private", "devDependencies", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Learning binary codes for collaborative filtering.", "fields" : ["recommender system", "binary code", "hamming distance", "discrete optimization", "collaborative filtering"], "abstract" : "This paper tackles the efficiency problem of making recommendations in the context of large user and item spaces. In particular, we address the problem of learning binary codes for collaborative filtering, which enables us to efficiently make recommendations with time complexity that is independent of the total number of items. We propose to construct binary codes for users and items such that the preference of users over items can be accurately preserved by the Hamming distance between their respective binary codes. By using two loss functions measuring the degree of divergence between the training and predicted ratings, we formulate the problem of learning binary codes as a discrete optimization problem. Although this optimization problem is intractable in general, we develop effective relaxations that can be efficiently solved by existing methods. Moreover, we investigate two methods to obtain the binary codes from the relaxed solutions. Evaluations are conducted on three public-domain data sets and the results suggest that our proposed method outperforms several baseline alternatives.", "citation" : "Citations (23)", "departments" : ["Georgia Institute of Technology", "Georgia Institute of Technology"], "authors" : ["Ke Zhou.....http://dblp.org/pers/hd/z/Zhou_0002:Ke", "Hongyuan Zha.....http://dblp.org/pers/hd/z/Zha:Hongyuan"], "conf" : "kdd", "year" : "2012", "pages" : 9}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"org.apache.jackrabbit.oak.segment.SegmentNodeStoreService": {"type": "object", "properties": {"customBlobStore": {"type": "boolean"}}, "required": ["customBlobStore"]}}, "required": ["org.apache.jackrabbit.oak.segment.SegmentNodeStoreService"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"org.apache.jackrabbit.oak.segment.SegmentNodeStoreService" : {"customBlobStore" : true}}
json_instruct
{"type": "object", "properties": {"org.apache.jackrabbit.oak.segment.SegmentNodeStoreService": {"type": "object", "properties": {"customBlobStore": {"type": "boolean"}}, "required": ["customBlobStore"]}}, "required": ["org.apache.jackrabbit.oak.segment.SegmentNodeStoreService"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["php", "vlucas/phpdotenv"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}, "psr-4": {"type": "object", "properties": {"CventQuery\\": {"type": "string"}}, "required": ["CventQuery\\"]}}, "required": ["classmap", "psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ec0g/cvent-query", "description" : "CventQuery is a library package used to interact with Cvent's SOAP API", "license" : "MIT", "keywords" : ["php", "cvent", "soap"], "authors" : [{"name" : "Goce Evtimovski", "email" : "goce@goce.co"}], "require" : {"php" : ">=5.6.0", "vlucas/phpdotenv" : "^2.1"}, "require-dev" : {"phpunit/phpunit" : "4.0.*"}, "autoload" : {"classmap" : ["src/"], "psr-4" : {"CventQuery\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["php", "vlucas/phpdotenv"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}, "psr-4": {"type": "object", "properties": {"CventQuery\\": {"type": "string"}}, "required": ["CventQuery\\"]}}, "required": ["classmap", "psr-4"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"namespaceStrategies": {"type": "object", "properties": {"ConfigurableNamespaceStrategy": {"type": "string"}}, "required": ["ConfigurableNamespaceStrategy"]}, "scm-nssample-plugin": {"type": "object", "properties": {"navigation": {"type": "string"}, "title": {"type": "string"}, "namespace": {"type": "string"}, "save": {"type": "string"}, "submitted": {"type": "string"}}, "required": ["navigation", "title", "namespace", "save", "submitted"]}}, "required": ["namespaceStrategies", "scm-nssample-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"namespaceStrategies" : {"ConfigurableNamespaceStrategy" : "Configurable"}, "scm-nssample-plugin" : {"navigation" : "Namespace", "title" : "Namespace Configuration", "namespace" : "Namespace", "save" : "Save", "submitted" : "Successfully submitted"}}
json_instruct
{"type": "object", "properties": {"namespaceStrategies": {"type": "object", "properties": {"ConfigurableNamespaceStrategy": {"type": "string"}}, "required": ["ConfigurableNamespaceStrategy"]}, "scm-nssample-plugin": {"type": "object", "properties": {"navigation": {"type": "string"}, "title": {"type": "string"}, "namespace": {"type": "string"}, "save": {"type": "string"}, "submitted": {"type": "string"}}, "required": ["navigation", "title", "namespace", "save", "submitted"]}}, "required": ["namespaceStrategies", "scm-nssample-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "test"]}, "bin": {"type": "object", "properties": {"vim2vsc": {"type": "string"}}, "required": ["vim2vsc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "file-system": {"type": "string"}, "hoek": {"type": "string"}}, "required": ["commander", "file-system", "hoek"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "jest": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015", "jest"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "vim2vsc", "version" : "1.0.1", "description" : "Converts Vim snippets to Visual Studio Code snippets.", "main" : "dist/app.js", "scripts" : {"build" : "babel ./src --out-dir ./dist", "start" : "npm run build && node dist/app.js", "test" : "npm start -- -f test_data/javascript_react.snippets"}, "bin" : {"vim2vsc" : "dist/app.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jfehrman/vim_to_vsc_snips.git"}, "keywords" : ["vim", "visual", "studio", "code", "vs", "vsc", "snippets", "snipmate", "snip", "autocomplete", "tabcomplete"], "author" : "Joseph Fehrman", "license" : "MIT", "bugs" : {"url" : "https://github.com/jfehrman/vim_to_vsc_snips/issues"}, "homepage" : "https://github.com/jfehrman/vim_to_vsc_snips#readme", "dependencies" : {"commander" : "^2.15.1", "file-system" : "^2.2.2", "hoek" : "^5.0.3"}, "devDependencies" : {"babel-cli" : "^6.26.0", "babel-preset-es2015" : "^6.24.1", "jest" : "^22.4.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "start", "test"]}, "bin": {"type": "object", "properties": {"vim2vsc": {"type": "string"}}, "required": ["vim2vsc"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "file-system": {"type": "string"}, "hoek": {"type": "string"}}, "required": ["commander", "file-system", "hoek"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "jest": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015", "jest"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 85907607, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "fd13b2d5064eca6c952ab75243887b22", "wof:id" : 85907607, "wof:repo" : "whosonfirst-data-admin-cz"}, "bbox" : [18.27913533531398, 49.83443949237515, 18.2867431640866, 49.83975382390024], "geometry" : {"coordinates" : [[[18.2867431640866, 49.83798244362096], [18.28674316408342, 49.83621100110012], [18.28674316408615, 49.83443949237515], [18.28448273010753, 49.83443949454188], [18.28399658200004, 49.83443950050004], [18.28399658200004, 49.83532526009965], [18.28262329100011, 49.83532526062315], [18.28217354246249, 49.83602255792174], [18.28156580968772, 49.83621100920003], [18.28125, 49.83621100920003], [18.28125, 49.83630893832581], [18.28059375973174, 49.83651243124673], [18.28027771507658, 49.83798243685011], [18.2802777045959, 49.83798245310014], [18.27913533531398, 49.83975366982516], [18.27913549221432, 49.83975381580031], [18.28125, 49.83975382252338], [18.28399658201397, 49.83975382390024], [18.28399658201914, 49.83798244690963], [18.2867431640866, 49.83798244362096]]], "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"batch_size": {"type": "integer"}, "eps_start": {"type": "number"}, "eps_end": {"type": "number"}, "eps_decay": {"type": "number"}, "train_episodes": {"type": "integer"}, "target_update_freq": {"type": "integer"}, "memory_capacity": {"type": "integer"}, "eval_runs_train": {"type": "integer"}, "patience": {"type": "integer"}, "optimise_freq": {"type": "integer"}, "max_threshold": {"type": "integer"}, "score": {"type": "number"}}, "required": ["batch_size", "eps_start", "eps_end", "eps_decay", "train_episodes", "target_update_freq", "memory_capacity", "eval_runs_train", "patience", "optimise_freq", "max_threshold", "score"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"batch_size" : 36, "eps_start" : 0.27607471918908255, "eps_end" : 0.056260154737672784, "eps_decay" : 2854.6420712017634, "train_episodes" : 585, "target_update_freq" : 2, "memory_capacity" : 323, "eval_runs_train" : 9, "patience" : 152, "optimise_freq" : 3, "max_threshold" : 3, "score" : -2.17}
json_instruct
{"type": "object", "properties": {"batch_size": {"type": "integer"}, "eps_start": {"type": "number"}, "eps_end": {"type": "number"}, "eps_decay": {"type": "number"}, "train_episodes": {"type": "integer"}, "target_update_freq": {"type": "integer"}, "memory_capacity": {"type": "integer"}, "eval_runs_train": {"type": "integer"}, "patience": {"type": "integer"}, "optimise_freq": {"type": "integer"}, "max_threshold": {"type": "integer"}, "score": {"type": "number"}}, "required": ["batch_size", "eps_start", "eps_end", "eps_decay", "train_episodes", "target_update_freq", "memory_capacity", "eval_runs_train", "patience", "optimise_freq", "max_threshold", "score"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ETag" : "W/\"c9e1f7b1b2e17f557e2b041cadc2ed31\"", "Last-Modified" : "Wed, 27 May 2020 20:34:45 GMT", "base" : {"repo" : {"name" : "impactutils-feedstock"}}, "closed_at" : "2020-05-27T20:34:45Z", "created_at" : "2020-01-16T20:14:40Z", "draft" : false, "head" : {"ref" : "0.8.17"}, "html_url" : "https://github.com/conda-forge/impactutils-feedstock/pull/30", "id" : 363825799, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : false, "merged_at" : null, "number" : 30, "state" : "closed", "updated_at" : "2020-05-27T20:34:45Z"}
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {"current": {"type": "string"}, "newChanges:": {"type": "string"}, "uniqueNameLike:": {"type": "string"}}, "required": ["current", "newChanges:", "uniqueNameLike:"]}, "instance": {"type": "object", "properties": {"name:": {"type": "string"}}, "required": ["name:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {"current" : "DataCurator 04/23/2007 14:43", "newChanges:" : "DataCurator 04/23/2007 14:43", "uniqueNameLike:" : "DataCurator 04/23/2007 14:43"}, "instance" : {"name:" : "DataCurator 04/23/2007 14:43"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {"current": {"type": "string"}, "newChanges:": {"type": "string"}, "uniqueNameLike:": {"type": "string"}}, "required": ["current", "newChanges:", "uniqueNameLike:"]}, "instance": {"type": "object", "properties": {"name:": {"type": "string"}}, "required": ["name:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}}, "required": ["illuminate/support"]}, "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"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CedricZiel\\Webartisan\\": {"type": "string"}}, "required": ["CedricZiel\\Webartisan\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "require", "keywords", "license", "authors", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cedricziel/l5-webartisan", "description" : "Artisan for the web. Execute Artisan command on a webpage.", "require" : {"illuminate/support" : "~5.0"}, "keywords" : ["laravel", "laravel5", "artisan"], "license" : "MIT", "authors" : [{"name" : "Cedric Ziel", "email" : "cedric@cedric-ziel.com"}], "autoload" : {"psr-4" : {"CedricZiel\\Webartisan\\" : "src/CedricZiel/Webartisan/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}}, "required": ["illuminate/support"]}, "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"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CedricZiel\\Webartisan\\": {"type": "string"}}, "required": ["CedricZiel\\Webartisan\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "require", "keywords", "license", "authors", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [672.53, 212.806, 0.887413, 648.978, 271.734, 0.935748, 560.64, 289.422, 0.795757, 504.618, 427.897, 0.870127, 448.639, 324.756, 0.823166, 734.603, 251.176, 0.795288, 805.344, 363.242, 0.86696, 858.412, 280.518, 0.861129, 660.81, 548.842, 0.65175, 601.906, 548.812, 0.671516, 622.394, 737.459, 0.727702, 646.201, 902.591, 0.835108, 716.93, 548.776, 0.689135, 737.54, 755.241, 0.732113, 737.518, 952.69, 0.748668, 649.144, 197.972, 0.913734, 687.367, 195.1, 0.854037, 604.881, 180.392, 0.831522, 0, 0, 0, 719.832, 1002.88, 0.791112, 749.3, 1002.78, 0.787147, 725.72, 967.439, 0.474907, 646.202, 961.592, 0.72747, 625.437, 955.667, 0.761983, 655.047, 905.561, 0.59756], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "exec_mode": {"type": "string"}, "max_memory_restart": {"type": "string"}}, "required": ["name", "script", "exec_mode", "max_memory_restart"]}}}, "required": ["apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"apps" : [{"name" : "soi-api", "script" : "./src/server.js", "exec_mode" : "cluster", "max_memory_restart" : "512M"}]}
json_instruct
{"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "exec_mode": {"type": "string"}, "max_memory_restart": {"type": "string"}}, "required": ["name", "script", "exec_mode", "max_memory_restart"]}}}, "required": ["apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "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" : "sapisato^emanaw", "h" : [{"d" : [{"f" : "\u60f3\u62b9\u9ed1\u3001\u60f3\u5f04\u6697\u3002", "e" : ["\ufff9`Sa~`pisa~`to~^`e~`mana~`w~ `ako~ `to~ `laloma'~.\ufffa\ufffb\u6211\u60f3\u628a\u5c4b\u88e1\u5f04\u6697\u6697\u7684\u3002"]}]}, {"d" : [{"f" : "\u60f3\u5de5\u4f5c\u5230\u591c\u88e1\u3002", "e" : ["\ufff9`Sa~`pisa~`to~^`e~`mana~`w~ `a~ `matayal~.\ufffa\ufffb\u60f3\u5de5\u4f5c\u5230\u591c\u88e1\u3002"]}]}], "stem" : "to^eman"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d632-16", "text" : "Dick - in this letter, Wheatley is merely suggesting a sample\nrating sheet for his programs & arparently is not requesting an\nanswer.\nMy opinion on \"We Human Beings\": Very good show for what we*re try\u00ac\ning to broadcast, A single-voice narration of certain periods of\nlife or of problem situations. Well-produced with sound-effects,\nmusic BG, etc. The kind of production I think we could do our\u00ac\nselves if we had time.\nWe\u2019ve finished the series of seven programs."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"extends": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"ecmaVersion": {"type": "string"}, "sourceType": {"type": "string"}}, "required": ["ecmaVersion", "sourceType"]}, "env": {"type": "object", "properties": {"node": {"type": "boolean"}, "jest": {"type": "boolean"}}, "required": ["node", "jest"]}, "overrides": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "string"}}, "required": ["files", "extends"]}}}, "required": ["extends", "parserOptions", "env", "overrides"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "@rocket.chat/eslint-config-alt/minimal", "parserOptions" : {"ecmaVersion" : "latest", "sourceType" : "module"}, "env" : {"node" : true, "jest" : true}, "overrides" : [{"files" : ["**/*.ts", "**/*.tsx"], "extends" : "@rocket.chat/eslint-config-alt/typescript"}]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "parserOptions": {"type": "object", "properties": {"ecmaVersion": {"type": "string"}, "sourceType": {"type": "string"}}, "required": ["ecmaVersion", "sourceType"]}, "env": {"type": "object", "properties": {"node": {"type": "boolean"}, "jest": {"type": "boolean"}}, "required": ["node", "jest"]}, "overrides": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "string"}}, "required": ["files", "extends"]}}}, "required": ["extends", "parserOptions", "env", "overrides"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [121.795, 48.1527, 0.65373, 128.387, 53.966, 0.762419, 125.682, 53.9763, 0.735659, 0, 0, 0, 0, 0, 0, 130.712, 53.5948, 0.771806, 132.644, 64.0517, 0.748096, 132.246, 73.7403, 0.766522, 128.774, 74.9096, 0.665072, 126.462, 74.9082, 0.601525, 130.717, 90.0245, 0.459853, 140.4, 103.574, 0.415496, 129.938, 74.9126, 0.668676, 130.325, 89.6318, 0.681302, 141.154, 103.971, 0.674135, 120.645, 46.2249, 0.255157, 122.564, 45.8419, 0.695255, 0, 0, 0, 126.046, 45.4658, 0.855918, 139.234, 108.628, 0.505808, 141.55, 107.849, 0.556701, 141.965, 104.364, 0.525478, 140.781, 107.464, 0.139951, 138.47, 107.841, 0.136412, 142.726, 104.352, 0.199323], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["person_id", "pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1936, 5], [1938, 5], [1939, 9], [1940, 7], [1941, 9], [1942, 13], [1943, 8], [1944, 28], [1945, 24], [1946, 60], [1947, 53], [1948, 56], [1949, 55], [1950, 68], [1951, 60], [1952, 45], [1953, 44], [1954, 53], [1955, 53], [1956, 55], [1957, 46], [1958, 38], [1959, 44], [1960, 34], [1961, 41], [1962, 40], [1963, 44], [1964, 41], [1965, 52], [1966, 35], [1967, 34], [1968, 41], [1969, 31], [1970, 33], [1971, 23], [1972, 19], [1973, 24], [1974, 18], [1975, 16], [1976, 11], [1977, 13], [1978, 13], [1979, 17], [1980, 16], [1981, 12], [1982, 13], [1983, 6], [1984, 15], [1985, 9], [1986, 16], [1987, 9], [1988, 10], [1989, 13], [1990, 12], [1991, 6], [1992, 12], [1993, 21], [1994, 11], [1995, 12], [1997, 9], [1998, 13], [1999, 8], [2000, 23], [2001, 56], [2002, 82], [2003, 261], [2004, 487], [2005, 377], [2006, 887], [2007, 475], [2008, 464], [2009, 556], [2010, 472], [2011, 302], [2012, 445], [2013, 423], [2014, 304]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"limit" : 5, "name" : "Virtus wand", "value" : 125000, "highalch" : 75000, "id" : 25654, "lowalch" : 50000, "name_pt" : "Varinha de Virtus", "price" : 9755332, "last" : 9755332}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"apply": {"type": "string"}, "reset": {"type": "string"}, "today": {"type": "string"}, "last2Days": {"type": "string"}, "lastWeek": {"type": "string"}, "last2Weeks": {"type": "string"}, "lastMonth": {"type": "string"}, "last2Months": {"type": "string"}, "last3Months": {"type": "string"}, "last6Months": {"type": "string"}, "last12Months": {"type": "string"}}, "required": ["apply", "reset", "today", "last2Days", "lastWeek", "last2Weeks", "lastMonth", "last2Months", "last3Months", "last6Months", "last12Months"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"apply" : "Applica", "reset" : "Reimposta", "today" : "Oggi", "last2Days" : "Ultimi 2 giorni", "lastWeek" : "Ultima settimana", "last2Weeks" : "Ultime 2 settimane", "lastMonth" : "Ultimo mese", "last2Months" : "Ultimi 2 mesi", "last3Months" : "Ultimi 3 mesi", "last6Months" : "Ultimi 6 mesi", "last12Months" : "Ultimi 12 mesi"}
json_instruct
{"type": "object", "properties": {"apply": {"type": "string"}, "reset": {"type": "string"}, "today": {"type": "string"}, "last2Days": {"type": "string"}, "lastWeek": {"type": "string"}, "last2Weeks": {"type": "string"}, "lastMonth": {"type": "string"}, "last2Months": {"type": "string"}, "last3Months": {"type": "string"}, "last6Months": {"type": "string"}, "last12Months": {"type": "string"}}, "required": ["apply", "reset", "today", "last2Days", "lastWeek", "last2Weeks", "lastMonth", "last2Months", "last3Months", "last6Months", "last12Months"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "enable": {"type": "boolean"}, "lttngEvents": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "enable", "lttngEvents"]}}}, "required": ["events"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"events" : [{"name" : "user", "enable" : true, "lttngEvents" : ["all"]}, {"name" : "cpu", "enable" : false, "lttngEvents" : ["sched_switch"]}, {"name" : "fps", "enable" : true, "lttngEvents" : ["starfish_qt5qpa*"]}]}
json_instruct
{"type": "object", "properties": {"events": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "enable": {"type": "boolean"}, "lttngEvents": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "enable", "lttngEvents"]}}}, "required": ["events"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "kerasine", "definition" : "Resembling horn; horny; corneous."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "short_description": {"type": "string"}, "risk_rating": {"type": "string"}, "references": {"type": "object", "properties": {}, "required": []}, "privacy_issue": {"type": "boolean"}, "security_issue": {"type": "boolean"}}, "required": ["title", "short_description", "risk_rating", "references", "privacy_issue", "security_issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Continuous collection of GPS location", "short_description" : "The application continuously collects device GPS location", "risk_rating" : "potentially", "references" : {}, "privacy_issue" : true, "security_issue" : false}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "short_description": {"type": "string"}, "risk_rating": {"type": "string"}, "references": {"type": "object", "properties": {}, "required": []}, "privacy_issue": {"type": "boolean"}, "security_issue": {"type": "boolean"}}, "required": ["title", "short_description", "risk_rating", "references", "privacy_issue", "security_issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"task_class": {"type": "string"}, "task_module": {"type": "string"}, "script_name": {"type": "string"}}, "required": ["task_class", "task_module", "script_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"task_class" : "ExampleTask", "task_module" : "lsst.example", "script_name" : ""}
json_instruct
{"type": "object", "properties": {"task_class": {"type": "string"}, "task_module": {"type": "string"}, "script_name": {"type": "string"}}, "required": ["task_class", "task_module", "script_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "candyworld:red_gummy_worm"}], "result" : {"item" : "candyworld:red_gummy", "count" : 3}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "a", "version" : "0.5.8"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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-743v-wpcg-936m", "modified" : "2022-05-01T02:17:37Z", "published" : "2022-05-01T02:17:37Z", "aliases" : ["CVE-2005-3404"], "details" : "Multiple PHP file inclusion vulnerabilities in ATutor 1.4.1 through 1.5.1-pl1 allow remote attackers to include arbitrary files via the section parameter followed by a null byte (%00) in (1) body_header.inc.php and (2) print.php.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-3404"}, {"type" : "WEB", "url" : "http://marc.info/?l=bugtraq&m=113043022821049&w=2"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/16915/"}, {"type" : "WEB", "url" : "http://secunia.com/secunia_research/2005-55/advisory/"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/123"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1015165"}, {"type" : "WEB", "url" : "http://www.osvdb.org/20345"}, {"type" : "WEB", "url" : "http://www.osvdb.org/20346"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/15221"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2005/2228"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1175040016", "district_id" : "1175040", "name" : "JABI-JABI"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"postal_code" : "26089", "place_name" : "Colinas", "place_type" : "Fraccionamiento", "county" : "Piedras Negras", "state" : "Coahuila de Zaragoza", "city" : "Piedras Negras"}, {"postal_code" : "26089", "place_name" : "Sind. Secci\u00f3n V", "place_type" : "Fraccionamiento", "county" : "Piedras Negras", "state" : "Coahuila de Zaragoza", "city" : "Piedras Negras"}, {"postal_code" : "26089", "place_name" : "Deportivo", "place_type" : "Fraccionamiento", "county" : "Piedras Negras", "state" : "Coahuila de Zaragoza", "city" : "Piedras Negras"}, {"postal_code" : "26089", "place_name" : "Lomas del Norte", "place_type" : "Colonia", "county" : "Piedras Negras", "state" : "Coahuila de Zaragoza", "city" : "Piedras Negras"}, {"postal_code" : "26089", "place_name" : "Residencial Colinas", "place_type" : "Fraccionamiento", "county" : "Piedras Negras", "state" : "Coahuila de Zaragoza", "city" : "Piedras Negras"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See subcss1 on Metamath](http://us.metamath.org/mpegif/subcss1.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | subcss1.1 | |- ( ph -> J e. ( Subcat ` C ) ) |\n| 2 | | subcss1.2 | |- ( ph -> J Fn ( S X. S ) ) |\n| 3 | | subcss1.b | |- B = ( Base ` C ) |\n| 4 | | #P_eqid | |- ( Homf ` C ) = ( Homf ` C ) |\n| 5 | 4, 3 | #P_homffn | |- ( Homf ` C ) Fn ( B X. B ) |\n| 6 | 5 | #P_a1i | |- ( ph -> ( Homf ` C ) Fn ( B X. B ) ) |\n| 7 | 1, 4 | #P_subcssc | |- ( ph -> J C_cat ( Homf ` C ) ) |\n| 8 | 2, 6, 7 | #P_ssc1 | |- ( ph -> S C_ B ) |", "conclusion" : "#P_subcss1", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wi", "#T_cJ", "#T_wcel", "#T_csubc", "#T_cfv", "#T_cC", "#T_wph", "#T_wi", "#T_cJ", "#T_wfn", "#T_cS", "#T_cxp", "#T_cS", "#T_cB", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cC", "#T_chomf", "#T_cfv", "#T_cC", "#T_wceq", "#T_chomf", "#T_cfv", "#T_cC", "#T_chomf", "#T_cfv", "#T_cC", "#T_wfn", "#T_cB.wceq", "#T_cxp", "#T_cB.wceq", "#T_wph", "#T_wi", "#T_chomf", "#T_cfv", "#T_cC", "#T_wfn", "#T_cB.wceq", "#T_cxp", "#T_cB.wceq", "#T_wph", "#T_wi", "#T_cJ", "#T_cssc", "#T_chomf", "#T_cfv", "#T_cC", "#T_wph", "#T_wi", "#T_cS", "#T_wss", "#T_cB"], "metaLanguage" : "METAMATH", "premises" : ["#P_eqid", "#P_homffn", "#P_a1i", "#P_subcssc", "#P_ssc1"]}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "premises": {"type": "array", "items": {"type": "string"}}}, "required": ["citations", "argumentText", "conclusion", "language", "lookupTerms", "metaLanguage", "premises"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"timeout": {"type": "integer"}, "load": {"type": "object", "properties": {"before": {"type": "array", "items": {}}, "order": {"type": "array", "items": {"type": "string"}}, "after": {"type": "array", "items": {}}}, "required": ["before", "order", "after"]}, "turtle-coin": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}}, "required": ["timeout", "load", "turtle-coin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timeout" : 40000, "load" : {"before" : [], "order" : ["Define the hooks' load order by putting their names in this array in the right order"], "after" : []}, "turtle-coin" : {"enabled" : true}}
json_instruct
{"type": "object", "properties": {"timeout": {"type": "integer"}, "load": {"type": "object", "properties": {"before": {"type": "array", "items": {}}, "order": {"type": "array", "items": {"type": "string"}}, "after": {"type": "array", "items": {}}}, "required": ["before", "order", "after"]}, "turtle-coin": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}}, "required": ["timeout", "load", "turtle-coin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4018, "surahNumber" : "038", "ayatNumber" : "048", "arabic" : "\u0648\u064e\u0627\u0630\u0652\u0643\u064f\u0631\u0652 \u0625\u0650\u0633\u0652\u0645\u064e\u0627\u0639\u0650\u064a\u0644\u064e \u0648\u064e\u0627\u0644\u0652\u064a\u064e\u0633\u064e\u0639\u064e \u0648\u064e\u0630\u064e\u0627 \u0627\u0644\u0652\u0643\u0650\u0641\u0652\u0644\u0650 \u06d6 \u0648\u064e\u0643\u064f\u0644\u0651\u064c \u0645\u0650\u0646\u064e \u0627\u0644\u0652\u0623\u064e\u062e\u0652\u064a\u064e\u0627\u0631\u0650", "english" : "And remember Isma'il (Ishmael), Al-Yasa'a (Elisha), and Dhul-Kifl (Isaiah), all are among the best.", "bengali" : "\u09b8\u09cd\u09ae\u09b0\u09a3 \u0995\u09b0\u09c1\u09a3, \u0987\u09b8\u09ae\u09be\u0988\u09b2, \u0986\u09b2 \u0987\u09df\u09be\u09b8\u09be \u0993 \u09af\u09c1\u09b2\u0995\u09bf\u09ab\u09b2\u09c7\u09b0 \u0995\u09a5\u09be\u0964 \u09a4\u09be\u09b0\u09be \u09aa\u09cd\u09b0\u09a4\u09cd\u09af\u09c7\u0995\u09c7\u0987 \u0997\u09c1\u09a8\u09c0\u099c\u09a8\u0964"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "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" : "K\u0159\u00ed\u017e u kaple Narozen\u00ed Panny Marie v Kosov\u011b", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Jihlava", "P6736" : "36778"}, "geometry" : {"type" : "Point", "coordinates" : [15.63453, 49.38726]}}, {"type" : "Feature", "properties" : {"label:cs" : "Kaple Narozen\u00ed Panny Marie v Kosov\u011b", "P31" : "http://www.wikidata.org/entity/Q108325", "P31^label:cs" : "Kaple", "P131^label:cs" : "Jihlava", "P6736" : "36777"}, "geometry" : {"type" : "Point", "coordinates" : [15.63455, 49.38723]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e u rozcest\u00ed v z\u00e1padn\u00ed \u010d\u00e1sti Kosova", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Jihlava", "P6736" : "36773"}, "geometry" : {"type" : "Point", "coordinates" : [15.6322, 49.38819]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e v z\u00e1padn\u00ed \u010d\u00e1sti Kosova", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Jihlava", "P6736" : "36772"}, "geometry" : {"type" : "Point", "coordinates" : [15.62929, 49.38862]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e u kostela Bo\u017esk\u00e9ho Srdce P\u00e1n\u011b v Mal\u00e9m Beranov\u011b", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Mal\u00fd Beranov", "P6736" : "18976"}, "geometry" : {"type" : "Point", "coordinates" : [15.63805, 49.39652]}}]}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "__npminstall_done": {"type": "string"}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "files", "scripts", "repository", "author", "license", "devDependencies", "__npminstall_done", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "eastasianwidth", "version" : "0.2.0", "description" : "Get East Asian Width from a character.", "main" : "eastasianwidth.js", "files" : ["eastasianwidth.js"], "scripts" : {"test" : "mocha"}, "repository" : "git://github.com/komagata/eastasianwidth.git", "author" : "Masaki Komagata", "license" : "MIT", "devDependencies" : {"mocha" : "~1.9.0"}, "__npminstall_done" : "Wed Nov 14 2018 23:11:15 GMT-0800 (Pacific Standard Time)", "_from" : "eastasianwidth@0.2.0", "_resolved" : "http://registry.npm.taobao.org/eastasianwidth/download/eastasianwidth-0.2.0.tgz"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "__npminstall_done": {"type": "string"}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "files", "scripts", "repository", "author", "license", "devDependencies", "__npminstall_done", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[130.0, 29.75], [130.0, 29.833333333333332], [130.125, 29.833333333333332], [130.125, 29.75], [130.0, 29.75]]]}, "properties" : {"code" : 443050, "url" : "http://madefor.github.io/0410/api/v1/443050.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/443050.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "advancement": {"type": "string"}, "sortnum": {"type": "integer"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "advancement", "sortnum", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Tear Collector", "icon" : "lacrimis:tear_collector", "category" : "lacrimis:infusion", "advancement" : "lacrimis:base/solidified_tear", "sortnum" : 6, "pages" : [{"type" : "text", "text" : "The number of tears needed for this project is growing, and things are getting a lot harder to manage. This device can consolidate tears into a single crucible."}, {"type" : "lacrimis:infusion", "recipe" : "lacrimis:infusion/tear_collector", "text" : "Place it against your target crucible, and use ducting to connect it to some tear sources. $(br2)Try to avoid making loops."}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "advancement": {"type": "string"}, "sortnum": {"type": "integer"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "advancement", "sortnum", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.0, "people" : [{"pose_keypoints" : [327.42, 88.7711, 0.930044, 326.04, 153.913, 0.789405, 271.325, 151.306, 0.747901, 256.985, 251.753, 0.820867, 255.632, 335.234, 0.840258, 378.229, 155.231, 0.747393, 409.519, 234.828, 0.789071, 433.056, 264.771, 0.775982, 296.057, 328.68, 0.529272, 294.804, 453.916, 0.471936, 0, 0, 0, 359.993, 326.083, 0.564662, 360.046, 453.923, 0.477136, 0, 0, 0, 316.982, 79.5653, 0.938116, 337.871, 78.3363, 0.95948, 300.032, 87.4174, 0.901491, 350.922, 87.4153, 0.927084], "face_keypoints" : [], "hand_left_keypoints" : [], "hand_right_keypoints" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "f2926777459fa21199d3", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$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"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "null"}, "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": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "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" : "Liaoning Finance and Trade College", "alt_name" : null, "country" : "China", "state" : null, "address" : {"street" : "Xingcheng, Higher Education Park", "city" : "Liaoning", "province" : "Liaoning", "postal_code" : "125105"}, "contact" : {"telephone" : "+86(429) 5418666", "website" : "http://www.lncmxy.com/", "email" : "lncmxy@126.com", "fax" : null}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "null"}, "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": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "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#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["82c346ae999e1e250fb52732419aff9a86b1f455", "e4f23bb6779d434d88a7c4335f92d13ea639b373"], ["82c346ae999e1e250fb52732419aff9a86b1f455", "e4f23bb6779d434d88a7c4335f92d13ea639b373"], ["82c346ae999e1e250fb52732419aff9a86b1f455", "0e1e87827326aa785da225aa980d7429a9d562f7"], ["82c346ae999e1e250fb52732419aff9a86b1f455", "0e1e87827326aa785da225aa980d7429a9d562f7"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["2141905", "2141906", "2141901", "2141907", "2141908"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authors" : [{"author" : "Steven Naylor"}, {"author" : "Zakareya Gamie"}, {"author" : "Ravinder S Vohra"}, {"author" : "Sapna Puppala"}, {"author" : "Patrick J Kent"}, {"author" : "D Julian A Scott"}], "doi" : "10.1186/1752-1947-4-333", "publication_date" : "2010-10-23", "id" : "EN117568", "url" : "https://pubmed.ncbi.nlm.nih.gov/20964810", "source" : "Journal of medical case reports", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "Here we present a case of a rapidly expanding abdominal aortic aneurysm in a 68-year-old Caucasian man with a concomitant lower respiratory tract infection and systemic sepsis requiring intensive monitoring and urgent endovascular intervention. Our patient had an uncomplicated post-operative recovery and a follow-up computed tomography scan at one month demonstrated no evidence of an endoleak."}
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Bluestein's FFT": {"type": "array", "items": {"type": "string"}}}, "required": ["Bluestein's FFT"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Bluestein's FFT" : ["https://en.wikipedia.org/wiki/Rader's_FFT_algorithm", "https://en.wikipedia.org/wiki/FFTW", "https://en.wikipedia.org/wiki/Fractional_Fourier_transform", "https://en.wikipedia.org/wiki/Cooley\u2013Tukey_FFT_algorithm"]}
json_instruct
{"type": "object", "properties": {"Bluestein's FFT": {"type": "array", "items": {"type": "string"}}}, "required": ["Bluestein's FFT"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nft" : {"id" : 8318, "image" : "ipfs://QmSeaY2DdBqqPMgTMA5ifKc3UsnCtUQnBfP2dXQ2WVcd7J", "attributes" : [{"trait_type" : "Eyes", "value" : "Sad"}, {"trait_type" : "Background", "value" : "Army Green"}, {"trait_type" : "Mouth", "value" : "Bored"}, {"trait_type" : "Hat", "value" : "Sea Captain's Hat"}, {"trait_type" : "Fur", "value" : "Robot"}, {"trait_type" : "Trait Count", "value" : "5"}, {"trait_type" : "Clothes", "value" : "[Missing]"}, {"trait_type" : "Earring", "value" : "[Missing]"}]}, "attributeRarities" : [{"trait_type" : "Eyes", "value" : "Sad", "count" : 551, "ratio" : 0.0551, "ratioScore" : 18.148820326678766}, {"trait_type" : "Background", "value" : "Army Green", "count" : 1243, "ratio" : 0.1243, "ratioScore" : 8.045052292839904}, {"trait_type" : "Mouth", "value" : "Bored", "count" : 2272, "ratio" : 0.2272, "ratioScore" : 4.401408450704225}, {"trait_type" : "Hat", "value" : "Sea Captain's Hat", "count" : 304, "ratio" : 0.0304, "ratioScore" : 32.89473684210526}, {"trait_type" : "Fur", "value" : "Robot", "count" : 265, "ratio" : 0.0265, "ratioScore" : 37.735849056603776}, {"trait_type" : "Trait Count", "value" : "5", "count" : 2540, "ratio" : 0.254, "ratioScore" : 3.937007874015748}, {"trait_type" : "Clothes", "value" : "[Missing]", "count" : 1886, "ratio" : 0.1886, "ratioScore" : 5.302226935312832}, {"trait_type" : "Earring", "value" : "[Missing]", "count" : 7023, "ratio" : 0.7023, "ratioScore" : 1.4238929232521713}], "rarityScore" : 111.88899470151269, "rank" : 8616}
json_instruct
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "description", "version", "permissions", "background", "browser_action", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "TabRecorder", "description" : "Records selected browser tab", "version" : "1.0", "permissions" : ["activeTab", "storage", "tabs", "tabCapture", "desktopCapture", "<all_urls>"], "background" : {"scripts" : ["lib/RecordRTC.js", "DiskStorage.js", "background.js", "background.common.js"], "persistent" : false}, "browser_action" : {"default_title" : "TabRecorder", "default_icon" : "images/icon.png", "default_popup" : "popup.html"}, "manifest_version" : 2}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "description", "version", "permissions", "background", "browser_action", "manifest_version"], "$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"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"marker-color": {"type": "string"}, "details": {"type": "string"}}, "required": ["marker-color", "details"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [153.028357, -27.477418]}, "properties" : {"marker-color" : "#2b3990", "details" : "<a href='https://2016-02-01.resbaz.com/brisbane/'>Brisbane</a>"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"marker-color": {"type": "string"}, "details": {"type": "string"}}, "required": ["marker-color", "details"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$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"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["prepublishOnly", "test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "websocket": {"type": "string"}}, "required": ["reflect-metadata", "rxjs", "tslib", "typescript", "websocket"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/websocket": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}, "ts-jest": {"type": "string"}}, "required": ["@types/jest", "@types/websocket", "jest", "prettier", "ts-jest"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "reactive-websocket", "version" : "1.0.3", "description" : "", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"prepublishOnly" : "npm run build", "test" : "jest", "build" : "tsc"}, "repository" : {"type" : "git", "url" : "git+https://github.com/GabrielInTheWorld/reactive-websocket.git"}, "author" : "Gabriel Meyer", "license" : "MIT", "bugs" : {"url" : "https://github.com/GabrielInTheWorld/reactive-websocket/issues"}, "homepage" : "https://github.com/GabrielInTheWorld/reactive-websocket#readme", "dependencies" : {"reflect-metadata" : "^0.1.13", "rxjs" : "^6.6.3", "tslib" : "^2.1.0", "typescript" : "^4.1.3", "websocket" : "^1.0.33"}, "devDependencies" : {"@types/jest" : "^26.0.20", "@types/websocket" : "^1.0.1", "jest" : "^26.6.3", "prettier" : "^2.2.1", "ts-jest" : "^26.4.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["prepublishOnly", "test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "tslib": {"type": "string"}, "typescript": {"type": "string"}, "websocket": {"type": "string"}}, "required": ["reflect-metadata", "rxjs", "tslib", "typescript", "websocket"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/websocket": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}, "ts-jest": {"type": "string"}}, "required": ["@types/jest", "@types/websocket", "jest", "prettier", "ts-jest"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "550b580a240df82beb05", "c" : {"index" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"index": {"type": "boolean"}}, "required": ["index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "James Weldon Johnson", "classification" : "", "keywords" : ["Time", "Brevity", "Relationships", "Living", "Love", "Infatuation", "Crushes", "Heartache", "Loss"], "period" : "Harlem Renaissance", "reference" : "http://www.poetryfoundation.org/poem/175745", "region" : "U.S., Southern", "text" : ["Seems lak to me de stars don't shine so bright,", "Seems lak to me de sun done loss his light,", "Seems lak to me der's nothin' goin' right,", "Sence you went away.", "Seems lak to me de sky ain't half so blue,", "Seems lak to me dat eve'ything wants you,", "Seems lak to me I don't know what to do,", "Sence you went away.", "Seems lak to me dat eve'ything is wrong,", "Seems lak to me de day's jes twice ez long,", "Seems lak to me de bird's forgot his song,", "Sence you went away.", "Seems lak to me I jes can't he\u2019p but sigh,", "Seems lak to me ma th\u2019oat keeps gittin\u2019 dry,", "Seems lak to me a tear stays in ma eye,", "Sence you went away."], "title" : "Sence You Went Away", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["In a 12-inch deep skillet heat the olive oil over medium heat, then add the mushrooms, squash, zucchini, onion, garlic and salt.", "Cook and stir for 5 to 6 minutes or until just tender, then stir in the Meat Sauce and reduce heat to a low simmer.", "Meanwhile, bring 4 to 6 quarts of water to a rolling boil, adding salt to taste along with the Rigatoni, and stir gently.", "Cook pasta according to package directions. Remove from heat and drain well.", "Stir the pasta into the Meat Sauce mixture in the skillet.", "Serve topped with Parmesan."], "ingredients" : ["1 (16 ounce) package Barilla\u00ae Rigatoni", "2 tablespoons olive oil", "1 (8 ounce) package fresh button mushrooms, sliced", "1 medium yellow squash, coarsely chopped", "1 medium zucchini, coarsely chopped", "3/4 cup chopped onion", "2 cloves garlic, minced", "1/2 teaspoon salt", "1 (24 ounce) jar Barilla\u00ae Meat Sauce", "1/4 cup shredded Parmesan cheese"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Veggie-Packed Bolognese", "url" : "http://allrecipes.com/recipe/254836/veggie-packed-bolognese/"}
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": {}}, "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": {"Index": {"type": "integer"}, "Start": {"type": "string"}, "WordList": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "Word": {"type": "string"}, "POS": {"type": "string"}, "Source": {"type": "string"}, "On": {"type": "string"}}, "required": ["ID", "Word", "POS", "Source", "On"]}}}, "required": ["Index", "Start", "WordList"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Index" : 2434, "Start" : "\u0982", "WordList" : [{"ID" : 10000894, "Word" : "\u0982\u0995", "POS" : "to", "Source" : "init", "On" : "2019-08-11T11:51:22.1941306-07:00"}, {"ID" : 10000954, "Word" : "\u0982\u0997", "POS" : "to", "Source" : "init", "On" : "2019-08-11T11:51:23.1486431-07:00"}, {"ID" : 10005845, "Word" : "\u0982", "POS" : "to", "Source" : "init", "On" : "2019-08-11T11:54:57.1031659-07:00"}, {"ID" : 10062119, "Word" : "\u0982\u09ac", "POS" : "to", "Source" : "init", "On" : "2019-08-11T12:25:14.7869232-07:00"}]}
json_instruct
{"type": "object", "properties": {"Index": {"type": "integer"}, "Start": {"type": "string"}, "WordList": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "Word": {"type": "string"}, "POS": {"type": "string"}, "Source": {"type": "string"}, "On": {"type": "string"}}, "required": ["ID", "Word", "POS", "Source", "On"]}}}, "required": ["Index", "Start", "WordList"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Comments": {"type": "string"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Comments"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 45895, "UUID" : "8C81ABBA-372C-44FC-B13F-E2F778F70709", "DataProviderID" : 1, "DataProvidersReference" : "2642", "OperatorID" : 1, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 46241, "Title" : "Fortum GlashusEtt", "AddressLine1" : "Lugnets All\u00e9 39", "Town" : "STOCKHOLM", "StateOrProvince" : "STOCKHOLM", "Postcode" : "12065", "CountryID" : 216, "Latitude" : 59.30338, "Longitude" : 18.10374, "AccessComments" : "Vid GlashusEtt i Hammarby Sj\u00f6stad.", "DistanceUnit" : 0}, "Connections" : [{"ID" : 56558, "ConnectionTypeID" : 25, "Reference" : "1", "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3.7, "CurrentTypeID" : 10, "Comments" : "Mode 3"}, {"ID" : 88188, "ConnectionTypeID" : 25, "Reference" : "2", "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3.7, "CurrentTypeID" : 10, "Comments" : "Mode 3"}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2021-02-01T09:21:00Z", "DataQualityLevel" : 2, "DateCreated" : "2015-05-03T00:54:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Comments": {"type": "string"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Comments"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$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"}, "private": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "version", "private", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ModalInfoDonor", "version" : "0.0.0", "private" : true, "main" : "./ModalInfoDonor.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "version", "private", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "time": {"type": "string"}, "cost": {"type": "number"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "items": {"type": "integer"}, "cost": {"type": "integer"}}, "required": ["id", "name", "items", "cost"]}}}, "required": ["id", "time", "cost", "items"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"items" : [{"id" : 49, "time" : "1", "cost" : 25.0, "items" : [{"id" : 0, "name" : "Milk Shake", "items" : 4, "cost" : 20}, {"id" : 1, "name" : "Coca Cola", "items" : 1, "cost" : 10}, {"id" : 2, "name" : "Biscuits", "items" : 2, "cost" : 4}, {"id" : 3, "name" : "Apple", "items" : 5, "cost" : 2}]}, {"id" : 48, "time" : "2", "cost" : 15.0, "items" : [{"id" : 1, "name" : "Nestle Milk", "items" : 1, "cost" : 20}, {"id" : 2, "name" : "Pizza", "items" : 2, "cost" : 5}, {"id" : 3, "name" : "Chocolate", "items" : 5, "cost" : 2}, {"id" : 4, "name" : "Pineapple", "items" : 2, "cost" : 5}]}, {"id" : 48, "time" : "3", "cost" : 15.0, "items" : [{"id" : 1, "name" : "Chocolate", "items" : 5, "cost" : 2}, {"id" : 2, "name" : "Pineapple", "items" : 2, "cost" : 5}]}, {"id" : 46, "time" : "4", "cost" : 175.0, "items" : [{"id" : 0, "name" : "Milk Shake", "items" : 4, "cost" : 20}, {"id" : 1, "name" : "Coca Cola", "items" : 1, "cost" : 10}, {"id" : 3, "name" : "Pineapple", "items" : 2, "cost" : 5}, {"id" : 4, "name" : "Apple", "items" : 5, "cost" : 2}]}, {"id" : 54, "time" : "5", "cost" : 1150.0, "items" : [{"id" : 1, "name" : "Nestle Milk", "items" : 1, "cost" : 20}, {"id" : 2, "name" : "Pineapple", "items" : 2, "cost" : 5}]}]}
json_instruct
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "time": {"type": "string"}, "cost": {"type": "number"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "items": {"type": "integer"}, "cost": {"type": "integer"}}, "required": ["id", "name", "items", "cost"]}}}, "required": ["id", "time", "cost", "items"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"apiUrl": {"type": "string"}, "apiKey": {"type": "string"}, "projectId": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "companyId": {"type": "string"}, "newCompany": {"type": "string"}, "status": {"type": "string"}, "categoryId": {"type": "string"}}, "required": ["apiUrl", "apiKey", "projectId", "name", "description", "startDate", "endDate", "companyId", "newCompany", "status", "categoryId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"apiUrl" : "%s(apiUrl)", "apiKey" : "%s(apiKey)", "projectId" : "%s(newProjectId)", "name" : "%s(projectName)", "description" : "%s(projectDescription)", "startDate" : "%s(projectStartDate)", "endDate" : "%s(projectEndDate)", "companyId" : "%s(companyId)", "newCompany" : "%s(newCompanyId)", "status" : "%s(projectStatus)", "categoryId" : "%s(projectCategoryId)"}
json_instruct
{"type": "object", "properties": {"apiUrl": {"type": "string"}, "apiKey": {"type": "string"}, "projectId": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "companyId": {"type": "string"}, "newCompany": {"type": "string"}, "status": {"type": "string"}, "categoryId": {"type": "string"}}, "required": ["apiUrl", "apiKey", "projectId", "name", "description", "startDate", "endDate", "companyId", "newCompany", "status", "categoryId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "BOKU NO HERO ASUI SEX\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "sofokyan", "description" : "\u25b6|Thankundefinedyouundefinedveryundefinedmuchundefinedforundefinedviewingundefinedmyundefinedcontent,undefinedIundefinedwillundefinedbeundefineduploadingundefinedmoreundefinedthingsundefinedwhenundefinedIundefinedhaveundefinedtimeundefined\ud83d\ude18,undefinedmyundefinedplatformsundefinedareundefineddownundefinedhereundefined\ud83d\ude18,undefinedifundefinedyouundefinedjustundefinedwantundefinedtoundefinedquoteundefinedmeundefinedsomethingundefinedinundefinedparticularundefinedwhatundefinedyouundefinedcanundefineddoundefinedthroughundefinedmyundefinedavailableundefinedplatformsundefined.\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1\u25c1", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2260349/thumbnail-2260349_0001.jpg?itok=Q0rBEoTY", "download" : "https://ecchi.iwara.tv/api/video/zxew1u20p6ik5w0k7", "origin" : "https://ecchi.iwara.tv/videos/zxew1u20p6ik5w0k7"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "676264683", "name" : "Greenfields Drive", "nodes" : [{"type" : "node", "id" : 6333180057, "lat" : 52.4883513, "lon" : -0.477785}, {"type" : "node", "id" : 6333180058, "lat" : 52.4885093, "lon" : -0.4777475}, {"type" : "node", "id" : 6333180059, "lat" : 52.488792, "lon" : -0.4777792}, {"type" : "node", "id" : 6333180060, "lat" : 52.4886129, "lon" : -0.4778196}, {"type" : "node", "id" : 6333180061, "lat" : 52.4885673, "lon" : -0.4777677}], "volunteer_postcode" : "PE8 4PS", "closest_distance" : 314}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Product Quantized Translation for Fast Nearest Neighbor Search.", "fields" : ["machine learning", "quantization", "computer science", "artificial intelligence", "nearest neighbor search"], "abstract" : null, "citation" : "Not cited", "departments" : ["Pohang University of Science and Technology", "Pohang University of Science and Technology", "Pohang University of Science and Technology", "Pohang University of Science and Technology"], "authors" : ["Yoonho Hwang.....http://dblp.org/pers/hd/h/Hwang:Yoonho", "Mooyeol Baek.....http://dblp.org/pers/hd/b/Baek:Mooyeol", "Saehoon Kim.....http://dblp.org/pers/hd/k/Kim:Saehoon", "Bohyung Han.....http://dblp.org/pers/hd/h/Han:Bohyung", "Hee-Kap Ahn.....http://dblp.org/pers/hd/a/Ahn:Hee=Kap"], "conf" : "aaai", "year" : "2018", "pages" : 7}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title": {"type": "string"}, "abstract": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}}, "required": ["idArt", "series", "booktitle", "year", "place", "location", "title", "abstract", "authors", "pdf1page", "pdfarticle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"idArt" : "407", "series" : "Revue des Nouvelles Technologies de l'Information", "booktitle" : "EGC", "year" : "2010", "place" : "Hammamet", "location" : {"lat" : 36.4, "lon" : 10.616667}, "title" : "Comparaison de crit\u00e8res de puret\u00e9 pour l'int\u00e9gration de connaissances en clustering semi-supervis\u00e9", "abstract" : "L'utilisation de connaissances pour am\u00e9liorer les processus de fouillede donn\u00e9es a mobilis\u00e9 un important effort de recherche ces derni\u00e8res ann\u00e9es. Ilest cependant souvent difficile de formaliser ce type de connaissances, commecelles-ci sont souvent d\u00e9pendantes du domaine. Dans cet article, nous nous int\u00e9ressons\u00e0 l'int\u00e9gration de connaissances sous la forme d'objets \u00e9tiquet\u00e9s dansles algorithmes de clustering. Plusieurs crit\u00e8res permettant d'\u00e9valuer la puret\u00e9des clusters sont pr\u00e9sent\u00e9s et leur comportement est compar\u00e9 sur des jeux dedonn\u00e9es artificiels. Les avantages et les inconv\u00e9nients de chaque crit\u00e8re sontanalys\u00e9s pour aider l'utilisateur \u00e0 faire un choix.", "authors" : ["Germain Forestier", "C\u00e9dric Wemmert", "Pierre Gan\u00e7arski"], "pdf1page" : "http://editions-rnti.fr/render_pdf.php?p1&p=1001278", "pdfarticle" : "http://editions-rnti.fr/render_pdf.php?p=1001278"}
json_instruct
{"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title": {"type": "string"}, "abstract": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}}, "required": ["idArt", "series", "booktitle", "year", "place", "location", "title", "abstract", "authors", "pdf1page", "pdfarticle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["78cd453ae0af483e8c7da5d3f8a857bd"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2005", "provinceId" : "12", "regencyId" : "18", "districtId" : "17", "name" : "Ujung Negeri Kahan"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "description", "version", "main", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@types/blog", "description" : "blog's common typings", "version" : "1.0.0", "main" : "", "types" : "index.d.ts"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "description", "version", "main", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 692, "noUrut" : 1, "nama" : "A.GAPUR, Bc.Hk", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "AHMAD A..jpg", "namaPartai" : "Partai NasDem", "id" : 679, "noUrut" : 2, "nama" : "ACHMAD ARDIANSYAH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO 001.jpg", "namaPartai" : "Partai NasDem", "id" : 686, "noUrut" : 3, "nama" : "SUMIATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 690, "noUrut" : 4, "nama" : "HJ. TRI RUBIANA S", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 696, "noUrut" : 5, "nama" : "HEFRI ANSYAH, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 694, "noUrut" : 6, "nama" : "R. A. CITRA UTARI RAMELAN, S.Pd", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "PAS PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 683, "noUrut" : 7, "nama" : "RIKA DESLAINI, SH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REJANG LEBONG", "originalFilename" : "ajis.jpg", "namaPartai" : "Partai NasDem", "id" : 698, "noUrut" : 8, "nama" : "Drs. AZIS HARAHAP, SH", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kabupaten": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kabupaten", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "730901", "id_kabupaten" : "7309", "name" : "Mandai"}, {"id" : "730902", "id_kabupaten" : "7309", "name" : "Camba"}, {"id" : "730903", "id_kabupaten" : "7309", "name" : "Bantimurung"}, {"id" : "730904", "id_kabupaten" : "7309", "name" : "Maros Baru"}, {"id" : "730905", "id_kabupaten" : "7309", "name" : "Bontoa"}, {"id" : "730906", "id_kabupaten" : "7309", "name" : "Malllawa"}, {"id" : "730907", "id_kabupaten" : "7309", "name" : "Tanralili"}, {"id" : "730908", "id_kabupaten" : "7309", "name" : "Marusu"}, {"id" : "730909", "id_kabupaten" : "7309", "name" : "Simbang"}, {"id" : "730910", "id_kabupaten" : "7309", "name" : "Cenrana"}, {"id" : "730911", "id_kabupaten" : "7309", "name" : "Tompobulu"}, {"id" : "730912", "id_kabupaten" : "7309", "name" : "Lau"}, {"id" : "730913", "id_kabupaten" : "7309", "name" : "Moncong Loe"}, {"id" : "730914", "id_kabupaten" : "7309", "name" : "Turikale"}]}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kabupaten": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kabupaten", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"services": {"type": "object", "properties": {"listen": {"type": "object", "properties": {"port": {"type": "string"}, "url": {"type": "string"}}, "required": ["port", "url"]}, "socket": {"type": "object", "properties": {"connections": {"type": "array", "items": {}}}, "required": ["connections"]}, "restApiRoot": {"type": "string"}, "https": {"type": "object", "properties": {"privateKey": {"type": "string"}, "certificate": {"type": "string"}}, "required": ["privateKey", "certificate"]}, "security": {"type": "object", "properties": {"sessionOptions": {"type": "object", "properties": {"store": {"type": "null"}, "storeOptions": {"type": "object", "properties": {}, "required": []}}, "required": ["store", "storeOptions"]}, "contentSecurityPolicy": {"type": "boolean"}, "hpkp": {"type": "boolean"}, "referrerPolicy": {"type": "object", "properties": {"policy": {"type": "string"}}, "required": ["policy"]}}, "required": ["sessionOptions", "contentSecurityPolicy", "hpkp", "referrerPolicy"]}}, "required": ["listen", "socket", "restApiRoot", "https", "security"]}}, "required": ["services"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"services" : {"listen" : {"port" : "8600", "url" : "http://127.0.0.1"}, "socket" : {"connections" : []}, "restApiRoot" : "", "https" : {"privateKey" : "", "certificate" : ""}, "security" : {"sessionOptions" : {"store" : null, "storeOptions" : {}}, "contentSecurityPolicy" : false, "hpkp" : false, "referrerPolicy" : {"policy" : "no-referrer"}}}}
json_instruct
{"type": "object", "properties": {"services": {"type": "object", "properties": {"listen": {"type": "object", "properties": {"port": {"type": "string"}, "url": {"type": "string"}}, "required": ["port", "url"]}, "socket": {"type": "object", "properties": {"connections": {"type": "array", "items": {}}}, "required": ["connections"]}, "restApiRoot": {"type": "string"}, "https": {"type": "object", "properties": {"privateKey": {"type": "string"}, "certificate": {"type": "string"}}, "required": ["privateKey", "certificate"]}, "security": {"type": "object", "properties": {"sessionOptions": {"type": "object", "properties": {"store": {"type": "null"}, "storeOptions": {"type": "object", "properties": {}, "required": []}}, "required": ["store", "storeOptions"]}, "contentSecurityPolicy": {"type": "boolean"}, "hpkp": {"type": "boolean"}, "referrerPolicy": {"type": "object", "properties": {"policy": {"type": "string"}}, "required": ["policy"]}}, "required": ["sessionOptions", "contentSecurityPolicy", "hpkp", "referrerPolicy"]}}, "required": ["listen", "socket", "restApiRoot", "https", "security"]}}, "required": ["services"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"published" : "2015-09-28T20:50:46Z", "media-type" : "News", "title" : "Airbnb has spent more than $8 million fighting a proposed law in San Francisco (Biz Carson/Business Insider: Tech)", "id" : "f8585d4d-7952-40b6-a3ae-20c29eca08cb", "content" : "Airbnb has spent more than $8 million fighting a proposed law in San Francisco \nimage: Business Insider: Tech \n \nThe biggest money in San Francisco politics right now is coming from one\ncompany: Airbnb. \n \nThe housing rental site has put up more than $8 million to fight a ballot\ninitiative that would put strict restrictions on the city's short term\nrentals, according to campaign contribution filings. \n \nIn comparison, the largest contributor to the opposition's campaign is a\nhotel labor union that donated $125,000. \n \nThat's a lot of money to spend on politicking, even in the tech world \u2014\nfor instance, Google spent $16 million on lobbying the federal government\nin 2014. \n \nThe two sides are battling over Proposition F, a ballot initiative that\nwants to restrict the number of nights a person can rent out their home\nand fine companies like Airbnb if they list any rentals not registered\nwith the city. (That's the short version \u2014 the full ballot initiative is\nhere, along with a breakdown) ...", "source" : "Tech Investor News"}
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"recurse": {"type": "boolean"}, "skip": {"type": "array", "items": {"type": "string"}}, "silent": {"type": "boolean"}, "concurrency": {"type": "integer"}, "retry": {"type": "boolean"}, "retryErrors": {"type": "boolean"}, "retryErrorsCount": {"type": "integer"}, "retryErrorsJitter": {"type": "integer"}}, "required": ["recurse", "skip", "silent", "concurrency", "retry", "retryErrors", "retryErrorsCount", "retryErrorsJitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recurse" : true, "skip" : ["https://codecov.io/gh/googleapis/", "www.googleapis.com", "img.shields.io", "https://console.cloud.google.com/cloudshell", "https://support.google.com", "https://github.com/googleapis/nodejs-eventarc-publishing/blob/master/CHANGELOG.md", "https://googleapis.dev/nodejs/publishing/latest/", "https://github.com/googleapis/nodejs-eventarc-publishing/blob/addSamples/CHANGELOG.md"], "silent" : true, "concurrency" : 5, "retry" : true, "retryErrors" : true, "retryErrorsCount" : 5, "retryErrorsJitter" : 3000}
json_instruct
{"type": "object", "properties": {"recurse": {"type": "boolean"}, "skip": {"type": "array", "items": {"type": "string"}}, "silent": {"type": "boolean"}, "concurrency": {"type": "integer"}, "retry": {"type": "boolean"}, "retryErrors": {"type": "boolean"}, "retryErrorsCount": {"type": "integer"}, "retryErrorsJitter": {"type": "integer"}}, "required": ["recurse", "skip", "silent", "concurrency", "retry", "retryErrors", "retryErrorsCount", "retryErrorsJitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "One-Sided Device-Independent QKD and Position-Based Cryptography from Monogamy Games.", "fields" : ["quantum cryptography", "bell s theorem", "cryptography", "quantum key distribution", "quantum", "mathematics", "quantum pseudo telepathy", "theoretical computer science"], "abstract" : "A serious concern with quantum key distribution (QKD) schemes is that, when under attack, the quantum devices in a real-life implementation may behave differently than modeled in the security proof. This can lead to real-life attacks against provably secure QKD schemes.", "citation" : "Not cited", "year" : "2013", "departments" : ["National University of Singapore", "National University of Singapore", "National University of Singapore", "CWI Amsterdam"], "conf" : "eurocrypt", "authors" : ["Marco Tomamichel.....http://dblp.org/pers/hd/t/Tomamichel:Marco", "Serge Fehr.....http://dblp.org/pers/hd/f/Fehr:Serge", "Jedrzej Kaniewski.....http://dblp.org/pers/hd/k/Kaniewski:Jedrzej", "Stephanie Wehner.....http://dblp.org/pers/hd/w/Wehner:Stephanie"], "pages" : 17}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "icon64": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "id": {"type": "string"}, "icon": {"type": "string"}, "updateURL": {"type": "string"}, "permissions": {"type": "object", "properties": {"private-browsing": {"type": "boolean"}}, "required": ["private-browsing"]}}, "required": ["description", "license", "author", "icon64", "name", "title", "version", "id", "icon", "updateURL", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "PB and more", "license" : "MIT", "author" : "PillBat", "icon64" : "data/images/pbe.64.png", "name" : "pbe", "title" : "PBe", "version" : "0.1.6", "id" : "pbe@thetabx.net", "icon" : "resource://pbe-at-thetabx-dot-net/data/images/pbe.48.png", "updateURL" : "https://thetabx.net/addon/pbe/firefox/%APP_OS%/%CURRENT_APP_VERSION%/%ITEM_VERSION%/", "permissions" : {"private-browsing" : true}}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "icon64": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "id": {"type": "string"}, "icon": {"type": "string"}, "updateURL": {"type": "string"}, "permissions": {"type": "object", "properties": {"private-browsing": {"type": "boolean"}}, "required": ["private-browsing"]}}, "required": ["description", "license", "author", "icon64", "name", "title", "version", "id", "icon", "updateURL", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Canibungan, Lantawan, Basilan, Autonomous Region of Muslim Mindanao (ARMM), PH", "locale" : "ph.autonomous-region-of-muslim-mindanao-armm.basilan.lantawan.canibungan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "1", "region_reference" : "15", "region_name" : "Autonomous Region of Muslim Mindanao (ARMM)", "province_id" : "9", "province_reference" : "9", "province_name" : "Basilan", "city_id" : "653", "city_reference" : "129", "city_name" : "Lantawan", "barangay_id" : "18204", "barangay_reference" : "2920", "barangay_name" : "Canibungan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.858551, 6.59985], [121.859413, 6.59872], [121.860161, 6.59852], [121.860474, 6.59772], [121.860413, 6.59743], [121.859413, 6.59632], [121.859657, 6.59527], [121.859756, 6.59486], [121.859703, 6.59433], [121.858749, 6.59223], [121.858414, 6.59126], [121.858063, 6.59064], [121.856667, 6.59], [121.855331, 6.59019], [121.855209, 6.58971], [121.855003, 6.58899], [121.854408, 6.58928], [121.853706, 6.58948], [121.853409, 6.58956], [121.852737, 6.58964], [121.852386, 6.58892], [121.852097, 6.58848], [121.851517, 6.58889], [121.851044, 6.58824], [121.851013, 6.58818], [121.850937, 6.58806], [121.85083, 6.58806], [121.850487, 6.58771], [121.849998, 6.58722], [121.849998, 6.58694], [121.849442, 6.58639], [121.849403, 6.58639], [121.849297, 6.58694], [121.849228, 6.58731], [121.840683, 6.59101], [121.826241, 6.5918], [121.826958, 6.60145], [121.858551, 6.59985]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "refresh": {"type": "integer"}, "param": {"type": "object", "properties": {"repeat": {"type": "integer"}, "duration": {"type": "integer"}, "wlength": {"type": "integer"}, "rlength": {"type": "integer"}, "flength": {"type": "integer"}, "color": {"type": "string"}, "rays": {"type": "array", "items": {"type": "object", "properties": {"ray": {"type": "array", "items": {"type": "integer"}}, "direction": {"type": "string"}, "bcolor": {"type": "string"}, "wcolor": {"type": "string"}}, "required": ["ray", "direction", "bcolor", "wcolor"]}}}, "required": ["repeat", "duration", "wlength", "rlength", "flength", "color", "rays"]}}, "required": ["name", "type", "refresh", "param"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Simple wave", "type" : "wave", "refresh" : 1, "param" : {"repeat" : 20, "duration" : 1, "wlength" : 3, "rlength" : 1, "flength" : 1, "color" : "#000000", "rays" : [{"ray" : [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], "direction" : "ud", "bcolor" : "#000000", "wcolor" : "#808080"}]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "refresh": {"type": "integer"}, "param": {"type": "object", "properties": {"repeat": {"type": "integer"}, "duration": {"type": "integer"}, "wlength": {"type": "integer"}, "rlength": {"type": "integer"}, "flength": {"type": "integer"}, "color": {"type": "string"}, "rays": {"type": "array", "items": {"type": "object", "properties": {"ray": {"type": "array", "items": {"type": "integer"}}, "direction": {"type": "string"}, "bcolor": {"type": "string"}, "wcolor": {"type": "string"}}, "required": ["ray", "direction", "bcolor", "wcolor"]}}}, "required": ["repeat", "duration", "wlength", "rlength", "flength", "color", "rays"]}}, "required": ["name", "type", "refresh", "param"], "$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"}, "displayName": {"type": "string"}, "approvalType": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "description": {"type": "string"}, "apiResources": {"type": "array", "items": {"type": "string"}}, "environments": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "displayName", "approvalType", "attributes", "description", "apiResources", "environments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "httpbin-product-prod", "displayName" : "httpbin product prod", "approvalType" : "auto", "attributes" : [{"name" : "access", "value" : "private"}, {"name" : "apigee-remote-service-targets", "value" : "httpbin.org,httpbin.default.svc.cluster.local"}], "description" : "httpbin product prod for test mutli-env purpose", "apiResources" : ["/httpbin/headers", "/headers"], "environments" : ["prod"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "approvalType": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "description": {"type": "string"}, "apiResources": {"type": "array", "items": {"type": "string"}}, "environments": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "displayName", "approvalType", "attributes", "description", "apiResources", "environments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"class": {"type": "object", "properties": {"LICENSE": {"type": "string"}}, "required": ["LICENSE"]}, "instance": {"type": "object", "properties": {"key": {"type": "string"}, "key:": {"type": "string"}}, "required": ["key", "key:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"class" : {"LICENSE" : "RJT 2/9/2007 11:15"}, "instance" : {"key" : "RJT 2/9/2007 10:04", "key:" : "RJT 2/9/2007 10:04"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {"LICENSE": {"type": "string"}}, "required": ["LICENSE"]}, "instance": {"type": "object", "properties": {"key": {"type": "string"}, "key:": {"type": "string"}}, "required": ["key", "key:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WITHOUT CERTAIN AND INDUBITABLE PROOFS OF THEIR TRUTH;", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/12187.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"mercury.js": {"type": "string"}, "mercury.min.js": {"type": "string"}}, "required": ["mercury.js", "mercury.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mercury.js" : "sha256-Nw9kdIpmGaNJB2DuyCM1X6sksYDDoTehsf4ebG+4oY8=", "mercury.min.js" : "sha256-4Y2Q+51MkCMR9SsTxbQzTrdNJG3nB+cvh3oM5VC+i/c="}
json_instruct
{"type": "object", "properties": {"mercury.js": {"type": "string"}, "mercury.min.js": {"type": "string"}}, "required": ["mercury.js", "mercury.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "name": {"type": "string"}, "image": {"type": "string"}}, "required": ["href", "name", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"href" : "catalog:index", "name" : "Romba 980", "image" : "/static/img/romba_980_big.jpg"}, {"href" : "catalog:index", "name" : "Romba 980", "image" : "/static/img/romba_980_big.jpg"}, {"href" : "catalog:index", "name" : "Romba 980", "image" : "/static/img/romba_980_big.jpg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "name": {"type": "string"}, "image": {"type": "string"}}, "required": ["href", "name", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Nicky Beer", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/182576", "region" : "", "text" : [":", "Fugitive lung, prodigal intestine\u2014", "where\u2019s the pink crimp in my side", "where they took you out?", ":", "It must be a dull world, indeed,", "where everything appears", "to be a version or extrapolation", "of you.", "The birds are you.", "The springtime is you.", "Snails, hurricanes, saddles, elevators\u2014", "everything becomes", "you.", "I, with a shift", "of my skin, divest my self", "to become the rock", "that shadows it.", "Think of when", "your reading eyes momentarily drift,", "and in that instant", "you see the maddening swarm of alien ciphers submerged within the text", "gone before you can focus.", "That\u2019s me.", "Or your dozing revelation", "on the subway that you are", "slowly being", "digested. Me again.", "I am the fever dream", "in which you see your loved ones", "as executioners. I am also their axe.", "Friend, while you\u2019re exhausting", "the end of a day", "with your sad approximations,", "I\u2019m a mile deep", "in the earth, vamping", "my most flawless impression", "of the abyss", "to the wild applause of eels."], "title" : "Ad Hominem", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"run": {"type": "string"}, "start": {"type": "string"}, "scan": {"type": "string"}}, "required": ["run", "start", "scan"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@abandonware/noble": {"type": "string"}, "rtdexcom": {"type": "string"}}, "required": ["@abandonware/noble", "rtdexcom"]}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node12": {"type": "string"}, "@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/node12", "@types/node", "nodemon", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "inslumin", "version" : "1.0.0", "description" : "Control a light based on insulin readings from a CGM.", "main" : "src/index.ts", "scripts" : {"run" : "nodemon --config nodemon.json src/index.ts", "start" : "ts-node src/index.ts", "scan" : "ts-node src/Lights/scan.ts"}, "author" : "Randall Knutson", "license" : "MIT", "dependencies" : {"@abandonware/noble" : "^1.9.2-14", "rtdexcom" : "git+https://github.com/randallknutson/rtdexcom.git"}, "devDependencies" : {"@tsconfig/node12" : "^1.0.7", "@types/node" : "^15.6.1", "nodemon" : "^2.0.7", "ts-node" : "^10.0.0", "typescript" : "^4.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"run": {"type": "string"}, "start": {"type": "string"}, "scan": {"type": "string"}}, "required": ["run", "start", "scan"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@abandonware/noble": {"type": "string"}, "rtdexcom": {"type": "string"}}, "required": ["@abandonware/noble", "rtdexcom"]}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node12": {"type": "string"}, "@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/node12", "@types/node", "nodemon", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$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" : "c:block/copper_nether_ore"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "version", "authors", "description", "main", "keywords", "license", "homepage", "ignore", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "modernizr-min", "version" : "3.2.0", "authors" : ["Wooram Jun"], "description" : "Minified version of Modernizr.", "main" : "dist/modernizr.min.js", "keywords" : ["modernizr"], "license" : "MIT", "homepage" : "https://github.com/chatii2412/modernizr-min", "ignore" : ["**/.*", "node_modules", "original", "Gruntfile.js"], "_release" : "3.2.0", "_resolution" : {"type" : "version", "tag" : "v3.2.0", "commit" : "39314100acce52a5fde6c9977b2153d7ae1f7c80"}, "_source" : "https://github.com/chatii2412/modernizr-min.git", "_target" : "^3.2.0", "_originalSource" : "modernizr-min"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}}, "required": ["name", "version", "authors", "description", "main", "keywords", "license", "homepage", "ignore", "_release", "_resolution", "_source", "_target", "_originalSource"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"desc" : "Oslo Configuration API", "home" : "https://docs.openstack.org/oslo.config/latest/", "license" : ""}
json_instruct
{"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"version": {"type": "integer"}, "PedestalHDF5Writer": {"type": "object", "properties": {"calculator_product": {"type": "string"}, "r0calibrator_product": {"type": "string"}, "output_file": {"type": "string"}, "log_level": {"type": "string"}}, "required": ["calculator_product", "r0calibrator_product", "output_file", "log_level"]}, "EventSource": {"type": "object", "properties": {"input_url": {"type": "string"}, "max_events": {"type": "integer"}}, "required": ["input_url", "max_events"]}, "LSTR0Corrections": {"type": "object", "properties": {"pedestal_path": {"type": "string"}, "r1_sample_start": {"type": "integer"}, "r1_sample_end": {"type": "integer"}, "tel_id": {"type": "integer"}}, "required": ["pedestal_path", "r1_sample_start", "r1_sample_end", "tel_id"]}, "PedestalCalculator": {"type": "object", "properties": {"sample_size": {"type": "integer"}, "sample_duration": {"type": "integer"}, "tel_id": {"type": "integer"}, "charge_median_cut_outliers": {"type": "array", "items": {"type": "integer"}}, "charge_std_cut_outliers": {"type": "array", "items": {"type": "integer"}}, "charge_product": {"type": "string"}}, "required": ["sample_size", "sample_duration", "tel_id", "charge_median_cut_outliers", "charge_std_cut_outliers", "charge_product"]}, "FixedWindowSum": {"type": "object", "properties": {"window_start": {"type": "integer"}, "window_width": {"type": "integer"}}, "required": ["window_start", "window_width"]}}, "required": ["version", "PedestalHDF5Writer", "EventSource", "LSTR0Corrections", "PedestalCalculator", "FixedWindowSum"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1, "PedestalHDF5Writer" : {"calculator_product" : "PedestalIntegrator", "r0calibrator_product" : "LSTR0Corrections", "output_file" : "/astro/users/cassol/soft/python/lstchain-test/pedestal.hdf5", "log_level" : "DEBUG"}, "EventSource" : {"input_url" : "/ctadata/franca/fefs/aswg/real/R0/20191107/LST-1.1.Run01579.0000.fits.fz", "max_events" : 1000}, "LSTR0Corrections" : {"pedestal_path" : "/ctadata/franca/fefs/aswg/real/calibration/20191107/v00/drs4_pedestal.Run1579.0000.fits", "r1_sample_start" : 2, "r1_sample_end" : 38, "tel_id" : 1}, "PedestalCalculator" : {"sample_size" : 100, "sample_duration" : 1000, "tel_id" : 1, "charge_median_cut_outliers" : [-3, 3], "charge_std_cut_outliers" : [-3, 3], "charge_product" : "FixedWindowSum"}, "FixedWindowSum" : {"window_start" : 12, "window_width" : 12}}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "PedestalHDF5Writer": {"type": "object", "properties": {"calculator_product": {"type": "string"}, "r0calibrator_product": {"type": "string"}, "output_file": {"type": "string"}, "log_level": {"type": "string"}}, "required": ["calculator_product", "r0calibrator_product", "output_file", "log_level"]}, "EventSource": {"type": "object", "properties": {"input_url": {"type": "string"}, "max_events": {"type": "integer"}}, "required": ["input_url", "max_events"]}, "LSTR0Corrections": {"type": "object", "properties": {"pedestal_path": {"type": "string"}, "r1_sample_start": {"type": "integer"}, "r1_sample_end": {"type": "integer"}, "tel_id": {"type": "integer"}}, "required": ["pedestal_path", "r1_sample_start", "r1_sample_end", "tel_id"]}, "PedestalCalculator": {"type": "object", "properties": {"sample_size": {"type": "integer"}, "sample_duration": {"type": "integer"}, "tel_id": {"type": "integer"}, "charge_median_cut_outliers": {"type": "array", "items": {"type": "integer"}}, "charge_std_cut_outliers": {"type": "array", "items": {"type": "integer"}}, "charge_product": {"type": "string"}}, "required": ["sample_size", "sample_duration", "tel_id", "charge_median_cut_outliers", "charge_std_cut_outliers", "charge_product"]}, "FixedWindowSum": {"type": "object", "properties": {"window_start": {"type": "integer"}, "window_width": {"type": "integer"}}, "required": ["window_start", "window_width"]}}, "required": ["version", "PedestalHDF5Writer", "EventSource", "LSTR0Corrections", "PedestalCalculator", "FixedWindowSum"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "homepage", "authors", "description", "moduleType", "keywords", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pointerEventWrapper", "main" : "pointerEventWrapper.js", "homepage" : "https://github.com/arctelix/PointerEventWrapper", "authors" : ["arctelix <arctelix@gmail.com>"], "description" : "An api for normalizing, handling, & binding the PointerEvent, MouseEvent, & TouchEvent with less code.", "moduleType" : [], "keywords" : ["PointerEvent", "MouseEvent", "TouchEvent", "cross", "browser", "pollyfill"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests", "docs", "*.config", "LICENCE", "README.MD"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "homepage", "authors", "description", "moduleType", "keywords", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"mithril.js": {"type": "string"}, "mithril.min.js": {"type": "string"}}, "required": ["mithril.js", "mithril.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mithril.js" : "sha512-Jyynd+LXlq1ibfnLENyxvC5lKvrH0XrIPXKEK6mtmC6lPcSwRzX1x7OvvAGA0Tot2X2Jm1UFyWUNeeSqUcUaDw==", "mithril.min.js" : "sha512-blYC43zs8Vns+JEc9BoXzFBSar3rRWvZlDwEu1B4N5wD3JkQK5R0KGt/1pgBx4BjSqTydhoBMxqC4I3e1+MEkw=="}
json_instruct
{"type": "object", "properties": {"mithril.js": {"type": "string"}, "mithril.min.js": {"type": "string"}}, "required": ["mithril.js", "mithril.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.002073, 39.075828], [-76.99965, 39.085984], [-76.99986, 39.089436], [-76.995529, 39.093215], [-76.985908, 39.097061], [-76.981941, 39.102115], [-76.973136, 39.098781], [-76.968658, 39.094646], [-76.964431, 39.088329], [-76.972254, 39.084231], [-76.972831, 39.083148], [-76.976875, 39.082702], [-76.978149, 39.079265], [-76.974662, 39.075389], [-76.975082, 39.072505], [-76.975906, 39.071971], [-76.975059, 39.069984], [-76.977355, 39.068664], [-76.976371, 39.065795], [-76.978843, 39.065299], [-76.984619, 39.066936], [-76.987251, 39.069366], [-76.990089, 39.073722], [-76.993865, 39.075431], [-77.002073, 39.075828]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 84023}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}