input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "chipped:block/brown_mushroom_4"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"palette.flyout.search.placeholder": {"type": "string"}}, "required": ["palette.flyout.search.placeholder"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"palette.flyout.search.placeholder" : "Buscar nodos de paleta"}
json_instruct
{"type": "object", "properties": {"palette.flyout.search.placeholder": {"type": "string"}}, "required": ["palette.flyout.search.placeholder"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "vitilitigation", "definition" : "Cavilous litigation; cavillation. [Obs.] Hudibras."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : {"0" : {"m1" : "\u0628\u0631\u062f\u0627\u0631 \u0646\u0642\u0627\u0628 \u0648 \u0645\u06cc \u0646\u06af\u0631 \u0622\u0646 \u0631\u0648\u06cc\u0634", "m2" : "\u062f\u0627\u0646\u06cc \u06a9\u0647 \u0646\u0642\u0627\u0628 \u0686\u06cc\u0633\u062a \u06cc\u0639\u0646\u06cc \u0645\u0648\u06cc\u0634"}, "1" : {"m1" : "\u0645\u0648\u0626\u06cc \u0632 \u0633\u0631 \u0632\u0644\u0641 \u0646\u06af\u0627\u0631\u0645 \u0628\u0647 \u06a9\u0641 \u0622\u0631", "m2" : "\u0622\u0646\u06af\u0647 \u0628\u0646\u0634\u06cc\u0646 \u0648 \u062e\u0648\u0634 \u062e\u0648\u0634\u06cc \u0645\u06cc \u0628\u0648\u06cc\u0634"}}}
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "reauth_successful": {"type": "string"}}, "required": ["already_configured", "reauth_successful"]}, "create_entry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "error": {"type": "object", "properties": {"invalid_auth": {"type": "string"}}, "required": ["invalid_auth"]}, "step": {"type": "object", "properties": {"reauth": {"type": "object", "properties": {"data": {"type": "object", "properties": {"password": {"type": "string"}}, "required": ["password"]}, "description": {"type": "string"}}, "required": ["data", "description"]}, "user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"password": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}}, "required": ["password", "url", "username"]}}, "required": ["data"]}}, "required": ["reauth", "user"]}}, "required": ["abort", "create_entry", "error", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"abort" : {"already_configured" : "Konto wurde bereits konfiguriert", "reauth_successful" : "Die erneute Authentifizierung war erfolgreich"}, "create_entry" : {"default" : "Erfolgreich authentifiziert"}, "error" : {"invalid_auth" : "Ung\u00fcltige Authentifizierung"}, "step" : {"reauth" : {"data" : {"password" : "Passwort"}, "description" : "Authentifizierungs-Tokens sind ung\u00fcltig, melde dich an, um sie neu zu erstellen."}, "user" : {"data" : {"password" : "Passwort", "url" : "Webseite", "username" : "Benutzername"}}}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "reauth_successful": {"type": "string"}}, "required": ["already_configured", "reauth_successful"]}, "create_entry": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "error": {"type": "object", "properties": {"invalid_auth": {"type": "string"}}, "required": ["invalid_auth"]}, "step": {"type": "object", "properties": {"reauth": {"type": "object", "properties": {"data": {"type": "object", "properties": {"password": {"type": "string"}}, "required": ["password"]}, "description": {"type": "string"}}, "required": ["data", "description"]}, "user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"password": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}}, "required": ["password", "url", "username"]}}, "required": ["data"]}}, "required": ["reauth", "user"]}}, "required": ["abort", "create_entry", "error", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"sweetalert2.all.min.js": {"type": "string"}, "sweetalert2.common.js": {"type": "string"}, "sweetalert2.common.min.js": {"type": "string"}, "sweetalert2.css": {"type": "string"}, "sweetalert2.js": {"type": "string"}, "sweetalert2.min.css": {"type": "string"}, "sweetalert2.min.js": {"type": "string"}}, "required": ["sweetalert2.all.min.js", "sweetalert2.common.js", "sweetalert2.common.min.js", "sweetalert2.css", "sweetalert2.js", "sweetalert2.min.css", "sweetalert2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sweetalert2.all.min.js" : "sha512-M+j8ZYDi/Im0IUSoRFYKGM+H792ziYB0aygT56EK/vU5REG2QZ41PIEImVHTCfomgcmnxOP0MrB+uZzXC/mfvg==", "sweetalert2.common.js" : "sha512-u1GYkvzG6wITVZDjY5hu6L9wwedVX+hQZwKUNYmPveuwlmAZidgBYaRIPCk2CmAPhAdwMjgW+cfs74BLChR3Mw==", "sweetalert2.common.min.js" : "sha512-GicWBX/QCkeDYryAf3Z8Y9mSF/w51qfbOzvGNP2+JagF1TutxIHAzpuclX2z+tbjYtVuZQYr1MrKn9kciXXU/A==", "sweetalert2.css" : "sha512-RKIlIIgF54fz+BR9zYdbtcsfUeUTcYTEV28jhxLAXyjOUOGEzXV6PgUJb+yllVHOVtNm0jRbhp1gQhRz19inlw==", "sweetalert2.js" : "sha512-wnY3viZZWNCIETsc78seFZgCXMXHF28UbzZpTTcbFUWVc5b0c5hbws/AZvMwIYrNxAYsdbTyh6TDKm5UlrRWDA==", "sweetalert2.min.css" : "sha512-Cg4+NYTXRcbs4lcm/i5RrNO6gbgdZTr0XF+KevmOowx85UNuFakEf6LNrxubIFnEIgv93AIuwE/OSQWb1lahNw==", "sweetalert2.min.js" : "sha512-edhpVH8FTCl1fG5Mbn8z2MlHuFNtQgmNNuW9VQ63kVEtWSezq4uM395lLk/7c0MxM3ezryJMrhx5j6lKD183Xg=="}
json_instruct
{"type": "object", "properties": {"sweetalert2.all.min.js": {"type": "string"}, "sweetalert2.common.js": {"type": "string"}, "sweetalert2.common.min.js": {"type": "string"}, "sweetalert2.css": {"type": "string"}, "sweetalert2.js": {"type": "string"}, "sweetalert2.min.css": {"type": "string"}, "sweetalert2.min.js": {"type": "string"}}, "required": ["sweetalert2.all.min.js", "sweetalert2.common.js", "sweetalert2.common.min.js", "sweetalert2.css", "sweetalert2.js", "sweetalert2.min.css", "sweetalert2.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"sections": {"type": "object", "properties": {"Customer": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "Supplier": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "Order": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "OrderItem": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["Customer", "Supplier", "Order", "OrderItem"]}, "references": {"type": "object", "properties": {"Order": {"type": "array", "items": {"type": "string"}}, "OrderItem": {"type": "array", "items": {"type": "string"}}}, "required": ["Order", "OrderItem"]}, "backReferences": {"type": "object", "properties": {}, "required": []}, "attributeToEntity": {"type": "object", "properties": {}, "required": []}, "entityAttributes": {"type": "object", "properties": {}, "required": []}, "errors": {"type": "array", "items": {}}}, "required": ["sections", "references", "backReferences", "attributeToEntity", "entityAttributes", "errors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sections" : {"Customer" : {"type" : "entity", "name" : "Customer"}, "Supplier" : {"type" : "entity", "name" : "Supplier"}, "Order" : {"type" : "entity", "name" : "Order"}, "OrderItem" : {"type" : "entity", "name" : "Order item"}}, "references" : {"Order" : ["Customer", "OrderItem"], "OrderItem" : ["Supplier", "Order", "Customer"]}, "backReferences" : {}, "attributeToEntity" : {}, "entityAttributes" : {}, "errors" : []}
json_instruct
{"type": "object", "properties": {"sections": {"type": "object", "properties": {"Customer": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "Supplier": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "Order": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}, "OrderItem": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "required": ["Customer", "Supplier", "Order", "OrderItem"]}, "references": {"type": "object", "properties": {"Order": {"type": "array", "items": {"type": "string"}}, "OrderItem": {"type": "array", "items": {"type": "string"}}}, "required": ["Order", "OrderItem"]}, "backReferences": {"type": "object", "properties": {}, "required": []}, "attributeToEntity": {"type": "object", "properties": {}, "required": []}, "entityAttributes": {"type": "object", "properties": {}, "required": []}, "errors": {"type": "array", "items": {}}}, "required": ["sections", "references", "backReferences", "attributeToEntity", "entityAttributes", "errors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"kh-dir": {"type": "string"}, "backup-dir": {"type": "string"}, "intervals": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}, "interval": {"type": "string"}}, "required": ["from", "to", "interval"]}}}, "required": ["kh-dir", "backup-dir", "intervals"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kh-dir" : "/root/kattis-hunter", "backup-dir" : "/root/kh-backups", "intervals" : [{"from" : "8h00", "to" : "9h00", "interval" : "0h12"}, {"from" : "9h00", "to" : "12h00", "interval" : "0h23"}, {"from" : "12h00", "to" : "14h00", "interval" : "0h17"}, {"from" : "14h00", "to" : "17h00", "interval" : "0h29"}, {"from" : "17h00", "to" : "17h25", "interval" : "0h04"}, {"from" : "17h25", "to" : "19h13", "interval" : "0h15"}, {"from" : "19h13", "to" : "19h38", "interval" : "0h06"}, {"from" : "19h38", "to" : "21h12", "interval" : "0h17"}, {"from" : "21h12", "to" : "23h43", "interval" : "0h27"}]}
json_instruct
{"type": "object", "properties": {"kh-dir": {"type": "string"}, "backup-dir": {"type": "string"}, "intervals": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}, "interval": {"type": "string"}}, "required": ["from", "to", "interval"]}}}, "required": ["kh-dir", "backup-dir", "intervals"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "3212011006", "district_id" : "3212011", "name" : "BALERAJA"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x87c21e1eb869351d7213254f287af161ad461d43", "tool" : "osiris", "start" : 1564603896.4231737, "end" : 1564604000.0278714, "duration" : 103.60469770431519, "analysis" : [{"errors" : [{"line" : 150, "column" : 11, "message" : "overflow_bugs"}, {"line" : 112, "column" : 3, "message" : "overflow_bugs"}, {"line" : 155, "column" : 3, "message" : "overflow_bugs"}, {"line" : 205, "column" : 3, "message" : "underflow_bugs"}], "file" : "/unique_chucks/37/0x87c21e1eb869351d7213254f287af161ad461d43.sol", "name" : "ProgressiveToken"}, {"errors" : [], "file" : "/unique_chucks/37/0x87c21e1eb869351d7213254f287af161ad461d43.sol", "name" : "owned"}, {"errors" : [], "file" : "/unique_chucks/37/0x87c21e1eb869351d7213254f287af161ad461d43.sol", "name" : "token"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "topicUid": {"type": "string"}}, "required": ["toc_title", "href", "topicUid"]}}, "topicUid": {"type": "string"}}, "required": ["toc_title", "href", "children", "topicUid"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"toc_title" : "Microsoft.VisualBasic.MyServices.Internal", "href" : "../../microsoft.visualbasic.myservices.internal", "children" : [{"toc_title" : "ContextValue<T>", "href" : "../../microsoft.visualbasic.myservices.internal.contextvalue-1", "topicUid" : "Microsoft.VisualBasic.MyServices.Internal.ContextValue`1"}], "topicUid" : "Microsoft.VisualBasic.MyServices.Internal"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"toc_title": {"type": "string"}, "href": {"type": "string"}, "topicUid": {"type": "string"}}, "required": ["toc_title", "href", "topicUid"]}}, "topicUid": {"type": "string"}}, "required": ["toc_title", "href", "children", "topicUid"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"20019": {"type": "string"}}, "required": ["20019"]}, "timeto": {"type": "object", "properties": {"20019": {"type": "number"}}, "required": ["20019"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 21218, "title" : ["[Harpmoon's Armory]"], "description" : ["A multihued Vornavian silk tapestry hangs on one of the refined oak-paneled walls, and a swirl-painted white stucco ceiling rises overhead. An elegantly dressed maiden statue sits in one corner of the limestone floor. There is a Vornavian silk-lined display case on one side of the shop and several white marble shelves on the other."], "paths" : ["Obvious exits: west"], "location" : "Solhaven", "wayto" : {"20019" : "west"}, "timeto" : {"20019" : 0.2}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"20019": {"type": "string"}}, "required": ["20019"]}, "timeto": {"type": "object", "properties": {"20019": {"type": "number"}}, "required": ["20019"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-msbuild": {"type": "string"}, "gulp-nuget": {"type": "string"}, "mathjax": {"type": "string"}, "minimist": {"type": "string"}}, "required": ["del", "gulp", "gulp-msbuild", "gulp-nuget", "mathjax", "minimist"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "private", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mathjax-sp", "version" : "2.7.5", "description" : "MathJax for SharePoint", "private" : true, "devDependencies" : {"del" : "6.0.0", "gulp" : "4.0.2", "gulp-msbuild" : "0.8.0", "gulp-nuget" : "1.2.0", "mathjax" : "2.7.9", "minimist" : "1.2.5"}, "scripts" : {"test" : "echo 'No tests here!'", "build" : "gulp"}, "repository" : {"type" : "git", "url" : "https://github.com/ViceIce/mathjax-sp.git"}, "keywords" : ["mathjax", "tex", "latex", "sharepoint"], "author" : "Michael Kriese", "license" : "MIT", "bugs" : {"url" : "https://github.com/ViceIce/mathjax-sp/issues"}, "homepage" : "https://github.com/ViceIce/mathjax-sp#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"del": {"type": "string"}, "gulp": {"type": "string"}, "gulp-msbuild": {"type": "string"}, "gulp-nuget": {"type": "string"}, "mathjax": {"type": "string"}, "minimist": {"type": "string"}}, "required": ["del", "gulp", "gulp-msbuild", "gulp-nuget", "mathjax", "minimist"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "private", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"web/js/script.js": {"type": "array", "items": {"type": "string"}}}, "required": ["web/js/script.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web/js/script.js" : ["vendor/bower/jquery/dist/jquery.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/affix.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/alert.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/button.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/carousel.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/collapse.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/modal.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/popover.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/tab.js", "vendor/bower/bootstrap-sass/assets/javascripts/bootstrap/transition.js", "vendor/yiisoft/yii2/assets/yii.js", "vendor/yiisoft/yii2/assets/yii.activeForm.js", "vendor/yiisoft/yii2/assets/yii.gridView.js", "vendor/yiisoft/yii2/assets/yii.validation.js", "vendor/yiisoft/yii2/assets/yii.captcha.js", "vendor/bower/yii2-pjax/jquery.pjax.js"]}
json_instruct
{"type": "object", "properties": {"web/js/script.js": {"type": "array", "items": {"type": "string"}}}, "required": ["web/js/script.js"], "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1602020049", "district_id" : "1602020", "name" : "PAGAR DEWA"}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 3856, "citation_title" : "Another Look at the Evidence on Money-Income Causality", "citation_author" : ["Benjamin M. Friedman", "Kenneth N. Kuttner"], "citation_publication_date" : "1991-10-01", "issue_date" : "1991-10-01", "revision_date" : "None", "topics" : ["Macroeconomics", "Monetary Policy"], "program" : ["Monetary Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nStock and Watson's widely noted finding that money has statistically significant marginal predictive power with respect to real output (as measured by industrial production), even in a sample extending through 1985 and even in the presence of a short-term interest rate, is not robust to two plausible changes. First, extending the sample through 1990 renders money insignificant within Stock and Watson's chosen specification. Second, using the commercial paper rate in place of the Treasury bill rate renders money insignificant even in the sample ending in 1985. A positive finding is that the difference between the commercial paper rate and the Treasury bill rate does have highly significant predictive value for real output, even in the presence of money, regardless of sample. Alternative results based on forecast error variance decomposition in a vector autoregression setting confirm these findings by indicating a small and generally insignificant effect of money, and a large, highly significant effect of the paper-bill spread, on real output.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"avg_distance": {"type": "number"}, "diameter": {"type": "number"}, "effective_diameter": {"type": "number"}, "total_couples": {"type": "number"}, "nodes": {"type": "integer"}, "edges": {"type": "integer"}}, "required": ["avg_distance", "diameter", "effective_diameter", "total_couples", "nodes", "edges"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"avg_distance" : 8.690985688791168, "diameter" : 37.0, "effective_diameter" : 12.852726650937013, "total_couples" : 31170812.0, "nodes" : 28396, "edges" : 136046}
json_instruct
{"type": "object", "properties": {"avg_distance": {"type": "number"}, "diameter": {"type": "number"}, "effective_diameter": {"type": "number"}, "total_couples": {"type": "number"}, "nodes": {"type": "integer"}, "edges": {"type": "integer"}}, "required": ["avg_distance", "diameter", "effective_diameter", "total_couples", "nodes", "edges"], "$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" : [[[139.0, 37.0], [139.0, 37.083333333333336], [139.125, 37.083333333333336], [139.125, 37.0], [139.0, 37.0]]]}, "properties" : {"code" : 553940, "url" : "http://madefor.github.io/0410/api/v1/553940.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/553940.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"1502": {"type": "string"}, "1500": {"type": "string"}}, "required": ["1502", "1500"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"1502" : "1503", "1500" : "1501"}
json_instruct
{"type": "object", "properties": {"1502": {"type": "string"}, "1500": {"type": "string"}}, "required": ["1502", "1500"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "license": {"type": "string"}, "type": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"SandboxApp\\": {"type": "string"}}, "required": ["SandboxApp\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "symfony/dotenv": {"type": "string"}}, "required": ["php", "ext-json", "guzzlehttp/guzzle", "aws/aws-sdk-php", "symfony/dotenv"]}}, "required": ["name", "authors", "license", "type", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ionafan2/selling-partner-api-php-sandbox", "authors" : [{"name" : "Pavlo Cherniavskyi"}], "license" : "MIT", "type" : "project", "autoload" : {"psr-4" : {"SandboxApp\\" : "src/"}}, "require" : {"php" : ">=7.4.0", "ext-json" : "*", "guzzlehttp/guzzle" : "^7.2", "aws/aws-sdk-php" : "^3.166", "symfony/dotenv" : "^5.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "license": {"type": "string"}, "type": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"SandboxApp\\": {"type": "string"}}, "required": ["SandboxApp\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "symfony/dotenv": {"type": "string"}}, "required": ["php", "ext-json", "guzzlehttp/guzzle", "aws/aws-sdk-php", "symfony/dotenv"]}}, "required": ["name", "authors", "license", "type", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "appService.deploySubpath": {"type": "string"}, "appService.defaultWebAppToDeploy": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "appService.deploySubpath", "appService.defaultWebAppToDeploy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appService.zipIgnorePattern" : ["node_modules{,/**}", ".vscode{,/**}"], "appService.deploySubpath" : ".", "appService.defaultWebAppToDeploy" : "/subscriptions/4c9cf27c-90d5-48b6-8c50-f93a6c0289d0/resourceGroups/appsvc_linux_centralus/providers/Microsoft.Web/sites/self-check-in-demo"}
json_instruct
{"type": "object", "properties": {"appService.zipIgnorePattern": {"type": "array", "items": {"type": "string"}}, "appService.deploySubpath": {"type": "string"}, "appService.defaultWebAppToDeploy": {"type": "string"}}, "required": ["appService.zipIgnorePattern", "appService.deploySubpath", "appService.defaultWebAppToDeploy"], "$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"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "publisher": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "icon": {"type": "string"}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "publish": {"type": "string"}}, "required": ["build", "publish"]}}, "required": ["name", "displayName", "description", "version", "repository", "author", "bugs", "publisher", "engines", "categories", "keywords", "homepage", "icon", "galleryBanner", "contributes", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ocean-dark-extended", "displayName" : "Base16 Ocean Dark Extended Theme", "description" : "Base16 Ocean Dark Theme extended to Visual Studio Code workbench", "version" : "1.5.0", "repository" : {"type" : "git", "url" : "https://github.com/kleber-swf/vscode-ocean-dark-extended-theme"}, "author" : {"name" : "Kleber Silva", "email" : "[email protected]", "url" : "http://kleber-swf.com"}, "bugs" : {"url" : "https://github.com/kleber-swf/vscode-ocean-dark-extended-theme/issues", "email" : "[email protected]"}, "publisher" : "kleber-swf", "engines" : {"vscode" : "^1.11.0"}, "categories" : ["Themes"], "keywords" : ["theme", "workbench", "ocean", "dark", "base16"], "homepage" : "https://github.com/kleber-swf/vscode-ocean-dark-extended-theme", "icon" : "images/icon.png", "galleryBanner" : {"color" : "#2b303b", "theme" : "dark"}, "contributes" : {"themes" : [{"label" : "Ocean Dark Extended", "uiTheme" : "vs-dark", "path" : "./themes/Ocean Dark Extended.json"}]}, "scripts" : {"build" : "vsce package", "publish" : "vsce publish"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "publisher": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "icon": {"type": "string"}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "publish": {"type": "string"}}, "required": ["build", "publish"]}}, "required": ["name", "displayName", "description", "version", "repository", "author", "bugs", "publisher", "engines", "categories", "keywords", "homepage", "icon", "galleryBanner", "contributes", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"$id": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"device": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "debug": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["device", "debug"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}, "definitions": {"type": "object", "properties": {"device": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"devicePushToken": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["description", "type", "pattern"]}, "deviceIdentifier": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "deviceType": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "enum"]}}, "required": ["devicePushToken", "deviceIdentifier", "deviceType"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "properties", "required", "additionalProperties"]}}, "required": ["device"]}}, "required": ["$id", "description", "type", "properties", "required", "additionalProperties", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$id" : "http://maasglobal.com/maas-backend/profile/profile-devices-put/response.json", "description" : "Response schema for profile-devices-put", "type" : "object", "properties" : {"device" : {"$ref" : "#/definitions/device"}, "debug" : {"type" : "object"}}, "required" : ["device"], "additionalProperties" : false, "definitions" : {"device" : {"type" : "object", "properties" : {"devicePushToken" : {"description" : "Push token - 32 chars in iOS, up to 255 in Android", "type" : "string", "pattern" : "^.{32,255}$"}, "deviceIdentifier" : {"$ref" : "http://maasglobal.com/core/components/units.json#/definitions/uuid"}, "deviceType" : {"type" : "string", "enum" : ["iOS", "Android"]}}, "required" : ["devicePushToken", "deviceIdentifier", "deviceType"], "additionalProperties" : false}}}
json_instruct
{"type": "object", "properties": {"$id": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"device": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "debug": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["device", "debug"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}, "definitions": {"type": "object", "properties": {"device": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"devicePushToken": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["description", "type", "pattern"]}, "deviceIdentifier": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "deviceType": {"type": "object", "properties": {"type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "enum"]}}, "required": ["devicePushToken", "deviceIdentifier", "deviceType"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "properties", "required", "additionalProperties"]}}, "required": ["device"]}}, "required": ["$id", "description", "type", "properties", "required", "additionalProperties", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "allthecompressed:block/iron_block_9x"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "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 silnice na v\u00fdchodn\u00edm okraji Nov\u00e9 Vsi", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Hora Svat\u00e9ho \u0160ebesti\u00e1na", "P6736" : "23606"}, "geometry" : {"type" : "Point", "coordinates" : [13.26445, 50.49904]}}, {"type" : "Feature", "properties" : {"label:cs" : "Sm\u00edr\u010d\u00ed k\u0159\u00ed\u017e za domem 3 v Nov\u00e9 Vsi", "P31" : "http://www.wikidata.org/entity/Q1640496", "P31^label:cs" : "Sm\u00edr\u010d\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Hora Svat\u00e9ho \u0160ebesti\u00e1na", "P6736" : "23605"}, "geometry" : {"type" : "Point", "coordinates" : [13.26314, 50.49916]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e u domu 3 v Nov\u00e9 Vsi", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Hora Svat\u00e9ho \u0160ebesti\u00e1na", "P6736" : "23604"}, "geometry" : {"type" : "Point", "coordinates" : [13.26271, 50.49907]}}]}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "null"}, "fax": {"type": "string"}}, "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" : "Dagestan State Pedagogical University", "alt_name" : "Dagestanskij Gosudarstvennyj Pedagogi\u010deskij Universitet", "country" : "Russia", "state" : null, "address" : {"street" : "ul. Jaragskogo 57", "city" : "Maha\u010dkala", "province" : null, "postal_code" : "367003"}, "contact" : {"telephone" : "+7(8722) 670-928", "website" : "http://www.dgpu.ru/", "email" : null, "fax" : "+7(8722) 670-926"}, "funding" : "Public", "languages" : null, "academic_year" : null, "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "null"}, "fax": {"type": "string"}}, "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "fix-lint": {"type": "string"}}, "required": ["lint", "fix-lint"]}, "dependencies": {"type": "object", "properties": {"@google-cloud/logging-bunyan": {"type": "string"}, "async": {"type": "string"}, "exceljs": {"type": "string"}, "express-fileupload": {"type": "string"}, "handlebars": {"type": "string"}, "lodash": {"type": "string"}, "node-cache": {"type": "string"}, "oe-logger": {"type": "string"}}, "required": ["@google-cloud/logging-bunyan", "async", "exceljs", "express-fileupload", "handlebars", "lodash", "node-cache", "oe-logger"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "loopback-component-explorer": {"type": "string"}, "oe-cloud": {"type": "string"}, "oe-connector-mongodb": {"type": "string"}}, "required": ["babel-eslint", "eslint", "loopback-component-explorer", "oe-cloud", "oe-connector-mongodb"]}, "license": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "author", "engines", "main", "scripts", "dependencies", "devDependencies", "license", "private", "keywords", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@nsaichandra/oe-common-utils", "version" : "0.0.28", "description" : "A well defined useful set of utils on oe-apps packed as a pluggable app-module.", "author" : "Sai Chandra Nandana", "engines" : {"node" : ">=6"}, "main" : "index.js", "scripts" : {"lint" : "eslint .", "fix-lint" : "eslint --fix ."}, "dependencies" : {"@google-cloud/logging-bunyan" : "^3.0.2", "async" : "^2.5.0", "exceljs" : "^4.2.1", "express-fileupload" : "^1.2.1", "handlebars" : "^4.7.6", "lodash" : "^4.17.15", "node-cache" : "^5.1.2", "oe-logger" : "^2.0.0"}, "devDependencies" : {"babel-eslint" : "^7.2.3", "eslint" : "^4.10.0", "loopback-component-explorer" : "^6.5.0", "oe-cloud" : "^2.0.0", "oe-connector-mongodb" : "^2.0.0"}, "license" : "MIT", "private" : false, "keywords" : ["oecloud", "app-list-module"], "repository" : {"type" : "git", "url" : "https://github.com/nsc5171/oe-common-utils.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "fix-lint": {"type": "string"}}, "required": ["lint", "fix-lint"]}, "dependencies": {"type": "object", "properties": {"@google-cloud/logging-bunyan": {"type": "string"}, "async": {"type": "string"}, "exceljs": {"type": "string"}, "express-fileupload": {"type": "string"}, "handlebars": {"type": "string"}, "lodash": {"type": "string"}, "node-cache": {"type": "string"}, "oe-logger": {"type": "string"}}, "required": ["@google-cloud/logging-bunyan", "async", "exceljs", "express-fileupload", "handlebars", "lodash", "node-cache", "oe-logger"]}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "loopback-component-explorer": {"type": "string"}, "oe-cloud": {"type": "string"}, "oe-connector-mongodb": {"type": "string"}}, "required": ["babel-eslint", "eslint", "loopback-component-explorer", "oe-cloud", "oe-connector-mongodb"]}, "license": {"type": "string"}, "private": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "author", "engines", "main", "scripts", "dependencies", "devDependencies", "license", "private", "keywords", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 1, "pts" : 94, "connections" : 423136, "capacity" : 47236448, "investments" : 167477415}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies 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" : "Etr\u00e9ville", "circ" : "3\u00e8me circonscription", "dpt" : "Eure", "inscrits" : 476, "abs" : 256, "votants" : 220, "blancs" : 30, "nuls" : 8, "exp" : 182, "res" : [{"nuance" : "FN", "nom" : "M. Timoth\u00e9e HOUSSIN", "voix" : 102}, {"nuance" : "MDM", "nom" : "Mme Marie TAMARELLE-VERHAEGHE", "voix" : 80}]}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1220010001", "nama" : "PANGKALAN DOLOK LAMA"}, {"id" : "1220010002", "nama" : "PANGKALAN DOLOK JULU"}, {"id" : "1220010003", "nama" : "BATANG ONANG BARU"}, {"id" : "1220010004", "nama" : "BONAN DOLOK"}, {"id" : "1220010005", "nama" : "BATANG ONANG LAMA"}, {"id" : "1220010006", "nama" : "PINTU PADANG"}, {"id" : "1220010007", "nama" : "GALANGGANG"}, {"id" : "1220010008", "nama" : "HUTA LOMBANG"}, {"id" : "1220010009", "nama" : "GUNUNG TUA BATANG ONANG"}, {"id" : "1220010010", "nama" : "SIMANAPANG"}, {"id" : "1220010011", "nama" : "SIMANINGGIR PSM"}, {"id" : "1220010012", "nama" : "BATU MAMAK"}, {"id" : "1220010013", "nama" : "PADANG GARUGUR"}, {"id" : "1220010014", "nama" : "GUNUNG TUA TUMBU JATI"}, {"id" : "1220010015", "nama" : "BATU PULUT"}, {"id" : "1220010016", "nama" : "GUNUNG TUA JULU"}, {"id" : "1220010017", "nama" : "PASAR MATANGGOR"}, {"id" : "1220010018", "nama" : "PADANG MATINGGI"}, {"id" : "1220010019", "nama" : "SAYUR MATINGGI"}, {"id" : "1220010020", "nama" : "JANJI MAULI"}, {"id" : "1220010021", "nama" : "SIMARDONA"}, {"id" : "1220010022", "nama" : "SAYUR MATINGGI JULU"}, {"id" : "1220010023", "nama" : "PURBA TUA"}, {"id" : "1220010024", "nama" : "PARAU SORAT"}, {"id" : "1220010025", "nama" : "PASIR AMPOLU HEPENG"}, {"id" : "1220010026", "nama" : "TAMOSU"}, {"id" : "1220010027", "nama" : "PAGARAN BATU"}, {"id" : "1220010028", "nama" : "SIMANGAMBAT DOLOK"}, {"id" : "1220010029", "nama" : "PADANG BUJUR BARU"}, {"id" : "1220010030", "nama" : "JANJI MANAHAN"}, {"id" : "1220010031", "nama" : "BATU NANGGAR"}, {"id" : "1220010032", "nama" : "MORANG"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "sync-all": {"type": "string"}, "sync-venues": {"type": "string"}, "sync-groups": {"type": "string"}, "sync-events": {"type": "string"}, "sync-members": {"type": "string"}}, "required": ["start", "test", "sync-all", "sync-venues", "sync-groups", "sync-events", "sync-members"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@sanity/core": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-sanity": {"type": "string"}}, "required": ["@sanity/core", "eslint", "eslint-config-sanity"]}, "dependencies": {"type": "object", "properties": {"@sanity/client": {"type": "string"}, "get-it": {"type": "string"}, "hard-rejection": {"type": "string"}, "lodash": {"type": "string"}, "meetup-api": {"type": "string"}, "moment-timezone": {"type": "string"}, "p-all": {"type": "string"}, "p-map": {"type": "string"}, "pify": {"type": "string"}}, "required": ["@sanity/client", "get-it", "hard-rejection", "lodash", "meetup-api", "moment-timezone", "p-all", "p-map", "pify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "oslojs-scripts", "version" : "1.0.0", "description" : "Scripts for synchronizing meetup.com data with Sanity", "main" : "src/index.js", "scripts" : {"start" : "node src/index.js", "test" : "echo 'no tests yet' && exit 1", "sync-all" : "npm run sync-venues && npm run sync-groups && npm run sync-events && npm run sync-members", "sync-venues" : "node src/syncVenues.js", "sync-groups" : "node src/syncGroups.js", "sync-events" : "node src/syncEvents.js", "sync-members" : "node src/syncMembers.js"}, "repository" : {"type" : "git", "url" : "git+ssh://[email protected]/oslojs/scripts.git"}, "keywords" : ["meetup", "scripts"], "author" : "OsloJS", "license" : "MIT", "bugs" : {"url" : "https://github.com/oslojs/scripts/issues"}, "homepage" : "https://github.com/oslojs/scripts#readme", "devDependencies" : {"@sanity/core" : "^0.107.17", "eslint" : "^4.2.0", "eslint-config-sanity" : "^2.1.4"}, "dependencies" : {"@sanity/client" : "^0.107.18", "get-it" : "^2.0.2", "hard-rejection" : "^1.0.0", "lodash" : "^4.17.4", "meetup-api" : "^1.4.21", "moment-timezone" : "^0.5.13", "p-all" : "^1.0.0", "p-map" : "^1.1.1", "pify" : "^3.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "sync-all": {"type": "string"}, "sync-venues": {"type": "string"}, "sync-groups": {"type": "string"}, "sync-events": {"type": "string"}, "sync-members": {"type": "string"}}, "required": ["start", "test", "sync-all", "sync-venues", "sync-groups", "sync-events", "sync-members"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@sanity/core": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-sanity": {"type": "string"}}, "required": ["@sanity/core", "eslint", "eslint-config-sanity"]}, "dependencies": {"type": "object", "properties": {"@sanity/client": {"type": "string"}, "get-it": {"type": "string"}, "hard-rejection": {"type": "string"}, "lodash": {"type": "string"}, "meetup-api": {"type": "string"}, "moment-timezone": {"type": "string"}, "p-all": {"type": "string"}, "p-map": {"type": "string"}, "pify": {"type": "string"}}, "required": ["@sanity/client", "get-it", "hard-rejection", "lodash", "meetup-api", "moment-timezone", "p-all", "p-map", "pify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : [[[-86.745398, 33.494297], [-86.743066, 33.497344], [-86.743676, 33.498522], [-86.743074, 33.501038], [-86.740043, 33.50397], [-86.732681, 33.505029], [-86.730813, 33.503787], [-86.73239, 33.506569], [-86.731553, 33.50793], [-86.731932, 33.509608], [-86.72858, 33.51391], [-86.714825, 33.522115], [-86.706136, 33.528432], [-86.704279, 33.531618], [-86.701114, 33.532668], [-86.699899, 33.534155], [-86.687672, 33.530721], [-86.681967, 33.532787], [-86.677894, 33.533222], [-86.69666, 33.518174], [-86.72328, 33.500068], [-86.73469, 33.493848], [-86.73677, 33.491267], [-86.739738, 33.489928], [-86.740591, 33.490896], [-86.739585, 33.492686], [-86.741928, 33.493284], [-86.744573, 33.492303], [-86.745398, 33.494297]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 676}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 12890, "citation_title" : "Taxation and Market Work: Is Scandinavia an Outlier?", "citation_author" : ["Richard Rogerson"], "citation_publication_date" : "2007-02-06", "issue_date" : "2007-02-06", "revision_date" : "None", "topics" : ["Macroeconomics", "Consumption and Investment"], "program" : ["Economic Fluctuations and Growth", "Public Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper argues that it is essential to explicitly consider how the government spends tax revenues when assessing the effects of tax rates on aggregate hours of market work. Different forms of government spending imply different elasticities of hours of work with regard to tax rates. I illustrate the empirical importance of this point by addressing the issue of hours worked and tax rates in three sets of economies: the US, Continental Europe and Scandinavia. While tax rates are highest in Scandinavia, hours worked in Scandinavia are significantly higher than they are in Continental Europe. I argue that differences in the form of government spending can potentially account for this pattern.\n\n", "acknowledgement" : "\nAn early version of the paper was presented at the 2003 conference in honor of Prescott being award the Nemmers Prize in Economics, held at the Federal Reserve Bank of Chicago. I have benefitted from the comments of numerous seminar participants, but would like to particularly thank Robert Lucas, Ed Prescott, and Nancy Stokey. I thank the NSF for financial support. The views expressed herein are those of the author(s) and do not necessarily reflect the views of the National Bureau of Economic Research.\n\n\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"career": {"type": "string"}, "civil_status": {"type": "string"}, "committees": {"type": "array", "items": {"type": "string"}}, "dob": {"type": "string"}, "electoral": {"type": "string"}, "name": {"type": "string"}, "occupation": {"type": "string"}, "party": {"type": "string"}, "portfolio": {"type": "string"}, "religion": {"type": "string"}}, "required": ["career", "civil_status", "committees", "dob", "electoral", "name", "occupation", "party", "portfolio", "religion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"career" : "1991, \u0dc3\u0db7\u0dcf\u0db4\u0dad\u0dd2, \u0db1\u0dd4\u0dc0\u0dbb\u0d91\u0dc5\u0dd2\u0dba \u0db4\u0dca\u200d\u0dbb\u0dcf\u0daf\u0dda\u0dc1\u0dd3\u0dba \u0dc3\u0db7\u0dcf\u0dc0; 1999, \u0d85\u0db8\u0dcf\u0dad\u0dca\u200d\u0dba, \u0db8\u0db0\u0dca\u200d\u0dba\u0db8 \u0db4\u0dc5\u0dcf\u0dad; 2004, \u0d85\u0db8\u0dcf\u0dad\u0dca\u200d\u0dba, \u0db8\u0db0\u0dca\u200d\u0dba\u0db8 \u0db4\u0dc5\u0dcf\u0dad; 2009, \u0d85\u0db8\u0dcf\u0dad\u0dca\u200d\u0dba, \u0db8\u0db0\u0dca\u200d\u0dba\u0db8 \u0db4\u0dc5\u0dcf\u0dad;", "civil_status" : "\u0dc0\u0dd2\u0dc0\u0dcf\u0dc4\u0d9a\u0dba\u0dd2", "committees" : ["\u0db8\u0dc4\u0dcf\u0db8\u0dcf\u0dbb\u0dca\u0d9c \u0db4\u0dd2\u0dc5\u0dd2\u0db6\u0db3 \u0d85\u0db8\u0dcf\u0dad\u0dca\u200d\u0dba \u0d8b\u0db4\u0daf\u0dda\u0dc1\u0d9a \u0d9a\u0db8\u0dd2\u0da7\u0dd4\u0dc0"], "dob" : "01-08-1952", "electoral" : "\u0db1\u0dd4\u0dc0\u0dbb\u0d91\u0dbd\u0dd2\u0dba", "name" : "\u0d9c\u0dbb\u0dd4. (\u0d86\u0da0\u0dcf\u0dbb\u0dca\u0dba) \u0dc0\u0dd3. \u0dbb\u0dcf\u0db0\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc2\u0dca\u0dab\u0db1\u0dca, \u0d91\u0db8\u0dca.\u0db4\u0dd3.", "occupation" : "\u0dc0\u0dca\u0dba\u0dcf\u0db4\u0dcf\u0dbb\u0dd2\u0d9a\u0dba\u0dcf", "party" : "\u0dc3\u0db8\u0d9c\u0dd2 \u0da2\u0db1 \u0db6\u0dbd\u0dc0\u0dda\u0d9c\u0dba (SJB)", "portfolio" : "", "religion" : "\u0dc0\u0dd9\u0db1\u0dad\u0dca"}
json_instruct
{"type": "object", "properties": {"career": {"type": "string"}, "civil_status": {"type": "string"}, "committees": {"type": "array", "items": {"type": "string"}}, "dob": {"type": "string"}, "electoral": {"type": "string"}, "name": {"type": "string"}, "occupation": {"type": "string"}, "party": {"type": "string"}, "portfolio": {"type": "string"}, "religion": {"type": "string"}}, "required": ["career", "civil_status", "committees", "dob", "electoral", "name", "occupation", "party", "portfolio", "religion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "animation_url": {"type": "string"}, "external_url": {"type": "string"}}, "required": ["id", "name", "description", "image", "animation_url", "external_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 0, "name" : "Ukrainft", "description" : "Shows the flag of Ukraine, or that of the Soviet republic of Ukraine if the user viewing it is in Russia.", "image" : "ipfs://QmQahZSfBQfy5AxrNaN7REAaWvqPEaCGv5U4updCcCKVWg/ukraine.png", "animation_url" : "https://ukrainft.surge.sh/", "external_url" : "https://klingefjord.notion.site/klingefjord/Ukrainft-38ccfc572ec24c688db37e6c361e5fe9"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "animation_url": {"type": "string"}, "external_url": {"type": "string"}}, "required": ["id", "name", "description", "image", "animation_url", "external_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["sassdoc-theme-vulcan"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "type": {"type": "string"}, "ID": {"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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"NUTS_NAME": {"type": "string"}, "NUTS_ID": {"type": "string"}}, "required": ["NUTS_NAME", "NUTS_ID"]}, "id": {"type": "string"}}, "required": ["geometry", "type", "properties", "id"]}}}, "required": ["crs", "type", "ID", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:EPSG::4326"}}, "type" : "FeatureCollection", "ID" : "MT0", "features" : [{"geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[14.56429, 35.8501], [14.5089, 35.81338], [14.37795, 35.84952], [14.33519, 35.88863], [14.32868, 35.97056], [14.37795, 35.97185], [14.56429, 35.8501]]], [[[14.32387, 36.05443], [14.26578, 36.00335], [14.17253, 36.0338], [14.16927, 36.07051], [14.2517, 36.08771], [14.32387, 36.05443]]]]}, "type" : "Feature", "properties" : {"NUTS_NAME" : "Malta", "NUTS_ID" : "MT00"}, "id" : "MT00"}]}
json_instruct
{"type": "object", "properties": {"crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "type": {"type": "string"}, "ID": {"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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"NUTS_NAME": {"type": "string"}, "NUTS_ID": {"type": "string"}}, "required": ["NUTS_NAME", "NUTS_ID"]}, "id": {"type": "string"}}, "required": ["geometry", "type", "properties", "id"]}}}, "required": ["crs", "type", "ID", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"SacredBeast:CommonPower": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:RarePower": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:XBonus": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:XXXBonus": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:FurFirePower": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}}, "required": ["SacredBeast:CommonPower", "SacredBeast:RarePower", "SacredBeast:XBonus", "SacredBeast:XXXBonus", "SacredBeast:FurFirePower"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"SacredBeast:CommonPower" : {"NAME" : "Placeholder Power", "DESCRIPTIONS" : ["You applied #b", " keyword.", " keywords."]}, "SacredBeast:RarePower" : {"NAME" : "Placeholder Power", "DESCRIPTIONS" : ["At the start of your turn, TOUCH #b", " enemy.", " enemies."]}, "SacredBeast:XBonus" : {"NAME" : "X-Bonus", "DESCRIPTIONS" : ["Whenever you play an X-Cost card, its effects are increased by "]}, "SacredBeast:XXXBonus" : {"NAME" : "XXX", "DESCRIPTIONS" : ["Your next ", " X-cost cards are played twice"]}, "SacredBeast:FurFirePower" : {"NAME" : "Fur Fire", "DESCRIPTIONS" : ["At the end of your turn, spend ", " Plated Armor to deal ", " to all enemies"]}}
json_instruct
{"type": "object", "properties": {"SacredBeast:CommonPower": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:RarePower": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:XBonus": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:XXXBonus": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "SacredBeast:FurFirePower": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}}, "required": ["SacredBeast:CommonPower", "SacredBeast:RarePower", "SacredBeast:XBonus", "SacredBeast:XXXBonus", "SacredBeast:FurFirePower"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"promedioGeneral": {"type": "number"}, "historialEvaluaciones": {"type": "array", "items": {"type": "object", "properties": {"nombreExamen": {"type": "string"}, "puntajeTotal": {"type": "integer"}, "evaluacionID": {"type": "integer"}}, "required": ["nombreExamen", "puntajeTotal", "evaluacionID"]}}}, "required": ["promedioGeneral", "historialEvaluaciones"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"promedioGeneral" : 9.3, "historialEvaluaciones" : [{"nombreExamen" : "Evaluacion 1", "puntajeTotal" : 9, "evaluacionID" : 1}, {"nombreExamen" : "Evaluacion 2", "puntajeTotal" : 8, "evaluacionID" : 2}, {"nombreExamen" : "Evaluacion 3", "puntajeTotal" : 7, "evaluacionID" : 3}, {"nombreExamen" : "Evaluacion 4", "puntajeTotal" : 4, "evaluacionID" : 4}]}
json_instruct
{"type": "object", "properties": {"promedioGeneral": {"type": "number"}, "historialEvaluaciones": {"type": "array", "items": {"type": "object", "properties": {"nombreExamen": {"type": "string"}, "puntajeTotal": {"type": "integer"}, "evaluacionID": {"type": "integer"}}, "required": ["nombreExamen", "puntajeTotal", "evaluacionID"]}}}, "required": ["promedioGeneral", "historialEvaluaciones"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "thisIsA:block/decorations/secondTestItem_lamp"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "outputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"inputs" : [["2", "4", "aba", "abc", "bab", "aac", "3", "aba", "baab", "abc"]], "outputs" : [["1.1250000", "0.0277778"]]}
json_instruct
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "outputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 113875, "info" : {"name" : "OkCupid NoBoost", "description" : "Removes the \"Boost\" button from OkCupid pages.", "additionalInfo" : "Version 1.0\r\nTested with:\r\n Firefox 38.0 ESR with Stylish 2.02\r\n Firefox 31.7.0 ESR with Stylish 1.4.3\r\n PaleMoon 25.4.1 with Stylish 2.02", "format" : "uso", "category" : "okcupid", "createdAt" : "2015-05-13T14:04:08.000Z", "updatedAt" : "2015-05-13T14:04:08.000Z", "license" : "CC-BY-NC-SA-4.0", "author" : {"id" : 291570, "name" : "Sapiosenses"}}, "stats" : {"installs" : {"total" : 66, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "113875_after.png", "archived" : false}, "additional" : [{"name" : "113875_additional_15139.png", "archived" : false}]}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n@-moz-document domain(\"www.okcupid.com\") {\r\n\r\n\r\n #boosts > DIV:first-child > DIV,\r\n nav-boost-container\r\n {display: none !important;}\r\n\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 28210, "cartId" : "8b50d884-078a-4a3d-ab6c-eab678a2cf28", "preferredProducts" : [52, 4479, 2169, 3699, 3667, 1455, 2014], "productReviews" : [{"productId" : 2331, "reviewText" : "My neighbor Albertina has one of these. She works as a gardener and she says it looks humongous.", "reviewDate" : "2016-05-29T00:54:22.7863237+03:00"}, {"productId" : 938, "reviewText" : "This Shoals works considerably well. It mildly improves my basketball by a lot.", "reviewDate" : "2020-04-23T10:16:48.4491916+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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": {"AWATER10": {"type": "integer"}, "CLASSFP10": {"type": "string"}, "ALAND10": {"type": "integer"}, "INTPTLAT10": {"type": "string"}, "FUNCSTAT10": {"type": "string"}, "ZCTA5CE10": {"type": "string"}, "MTFCC10": {"type": "string"}, "GEOID10": {"type": "string"}, "INTPTLON10": {"type": "string"}}, "required": ["AWATER10", "CLASSFP10", "ALAND10", "INTPTLAT10", "FUNCSTAT10", "ZCTA5CE10", "MTFCC10", "GEOID10", "INTPTLON10"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-83.638235, 32.840805], [-83.638283, 32.840601], [-83.638349, 32.840421], [-83.638642, 32.839748], [-83.63884, 32.839335], [-83.638962, 32.839177], [-83.6405, 32.839607], [-83.64026, 32.840179], [-83.64008, 32.840639], [-83.640065, 32.840732], [-83.638826, 32.840795], [-83.638719, 32.840825], [-83.638235, 32.840805]]]}, "type" : "Feature", "properties" : {"AWATER10" : 0, "CLASSFP10" : "B5", "ALAND10" : 26043, "INTPTLAT10" : "+32.8400811", "FUNCSTAT10" : "S", "ZCTA5CE10" : "31213", "MTFCC10" : "G6350", "GEOID10" : "31213", "INTPTLON10" : "-083.6393505"}}]}
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": {"AWATER10": {"type": "integer"}, "CLASSFP10": {"type": "string"}, "ALAND10": {"type": "integer"}, "INTPTLAT10": {"type": "string"}, "FUNCSTAT10": {"type": "string"}, "ZCTA5CE10": {"type": "string"}, "MTFCC10": {"type": "string"}, "GEOID10": {"type": "string"}, "INTPTLON10": {"type": "string"}}, "required": ["AWATER10", "CLASSFP10", "ALAND10", "INTPTLAT10", "FUNCSTAT10", "ZCTA5CE10", "MTFCC10", "GEOID10", "INTPTLON10"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 5, "n_trials" : 80, "objective" : "markowitz_return_on_cube", "white" : "pysot_random", "black" : "scipy_lbfgsb", "traceback" : ["passing", "passing"], "best_val" : [7905.07537984722, 7160.6933983735935], "best_x" : [[0.025812064993200767, 0.0750198948772437, 0.7718752243969449, 0.7855701683293278, 0.8073318106871894], [2.212103746399069e-06, 0.0, 3.847625155973615e-06, 5.727517373355003e-06, 6.055521575351046e-06]], "feval_count" : [80, 157], "n_trials_instructed" : [80, 23], "passing" : [true, true], "completed" : false, "winner" : "incomplete", "points" : null}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"time": {"type": "null"}, "type": {"type": "integer"}, "user": {"type": "integer"}, "tweet_id": {"type": "string"}, "id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "integer"}, "type": {"type": "integer"}, "user": {"type": "integer"}, "tweet_id": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["time", "type", "user", "tweet_id", "id"]}}}, "required": ["time", "type", "user", "tweet_id", "id", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"time" : null, "type" : 1, "user" : 3849187751, "tweet_id" : "gossipcop-921418", "id" : 3113147136, "children" : [{"time" : 1521468616, "type" : 2, "user" : 2504392234, "tweet_id" : 975736215646466048, "id" : 2677825053}, {"time" : 1521468668, "type" : 2, "user" : 5846223022, "tweet_id" : 975736432911413248, "id" : 3731975387}, {"time" : 1521468930, "type" : 2, "user" : 9686765950, "tweet_id" : 975737531206651904, "id" : 4749475144}, {"time" : 1521469074, "type" : 2, "user" : 9010144311, "tweet_id" : 975738135668838400, "id" : 5489867838}, {"time" : 1521469218, "type" : 2, "user" : 9010144311, "tweet_id" : 975738738104938498, "id" : 7147639044}, {"time" : 1521469413, "type" : 2, "user" : 7926788518, "tweet_id" : 975739558364090369, "id" : 2776308547}, {"time" : 1521470910, "type" : 2, "user" : 1199056673, "tweet_id" : 975745834837946369, "id" : 1406656569}, {"time" : 1521471195, "type" : 2, "user" : 6206491334, "tweet_id" : 975747031959588864, "id" : 5496059295}, {"time" : 1521471642, "type" : 2, "user" : 2126285069, "tweet_id" : 975748908214300673, "id" : 6054172113}, {"time" : 1521472386, "type" : 2, "user" : 1406426697, "tweet_id" : 975752027102826498, "id" : 4346728037}, {"time" : 1521473786, "type" : 2, "user" : 7271659616, "tweet_id" : 975757900340543489, "id" : 9227048500}, {"time" : 1521509731, "type" : 2, "user" : 8707932018, "tweet_id" : 975908661368324097, "id" : 2030888768, "children" : [{"time" : 1521537893, "type" : 3, "user" : 1366008941, "tweet_id" : 975921088210309120, "id" : 7682207475}, {"time" : 1521539046, "type" : 3, "user" : 7540715104, "tweet_id" : 975925924691505152, "id" : 2071636779}]}]}
json_instruct
{"type": "object", "properties": {"time": {"type": "null"}, "type": {"type": "integer"}, "user": {"type": "integer"}, "tweet_id": {"type": "string"}, "id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "integer"}, "type": {"type": "integer"}, "user": {"type": "integer"}, "tweet_id": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["time", "type", "user", "tweet_id", "id"]}}}, "required": ["time", "type", "user", "tweet_id", "id", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"warnings": {"type": "array", "items": {}}, "source_directory": {"type": "string"}}, "required": ["warnings", "source_directory"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}, {"warnings" : [], "source_directory" : "/Users/sarahchen/Documents/projects/ios-sdk"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"warnings": {"type": "array", "items": {}}, "source_directory": {"type": "string"}}, "required": ["warnings", "source_directory"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"front": {"type": "string"}}, "required": ["front"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "flux:block/machine", "textures" : {"front" : "flux:block/washer_on"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"front": {"type": "string"}}, "required": ["front"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "lieli", "h" : [{"d" : [{"f" : "\u5f37\u8feb\uff0c\u5f37\u6c42\uff0c\u52c9\u5f37\uff0c\u52c9\u70ba\u5176\u96e3\u3002", "s" : ["`ci~`'~`ci~"], "r" : ["`palieli~"]}]}]}
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"}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Trijicon SRS-02 Reflexvisier", "ShortName" : "SRS-02 RV", "Description" : "SRS-02 Reflexvisier, Produkt von Trijicon."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "hangman", "definition" : "One who hangs another; esp., one who makes a business of hanging; a public executioner; -- sometimes used as a term of reproach, without reference to office. Shak."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"citations": {"type": "null"}, "paper_link": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "publication": {"type": "string"}}, "required": ["citations", "paper_link", "authors", "title", "publication"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : null, "paper_link" : "https://scholar.google.com/citations?view_op=view_citation&hl=en&user=Zs9227oAAAAJ&cstart=2359&pagesize=100&citation_for_view=Zs9227oAAAAJ:T_m5ky3rny8C", "authors" : ["CG Rao"], "title" : "Overcoming Ozone Depletion and Global Warming-A Review", "publication" : "JOURNAL-INSTITUTION OF ENGINEERS INDIA PART EN ENVIRONMENTAL ENGINEERING ..., 1997"}
json_instruct
{"type": "object", "properties": {"citations": {"type": "null"}, "paper_link": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "publication": {"type": "string"}}, "required": ["citations", "paper_link", "authors", "title", "publication"], "$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": {"disc_number": {"type": "integer"}, "name": {"type": "string"}, "duration_ms": {"type": "integer"}, "track_number": {"type": "integer"}, "docType": {"type": "string"}}, "required": ["disc_number", "name", "duration_ms", "track_number", "docType"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"disc_number" : 1, "name" : "Sgt. Pepper's Lonely Hearts Club Band - Remastered", "duration_ms" : 1, "track_number" : 1, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "With A Little Help From My Friends - Remastered", "duration_ms" : 1, "track_number" : 2, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Lucy In The Sky With Diamonds - Remastered", "duration_ms" : 1, "track_number" : 3, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Getting Better - Remastered", "duration_ms" : 1, "track_number" : 4, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Fixing A Hole - Remastered", "duration_ms" : 1, "track_number" : 5, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "She's Leaving Home - Remastered", "duration_ms" : 1, "track_number" : 6, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Being For The Benefit Of Mr. Kite! - Remastered", "duration_ms" : 1, "track_number" : 7, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Within You Without You - Remastered", "duration_ms" : 1, "track_number" : 8, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "When I'm Sixty Four - Remastered", "duration_ms" : 1, "track_number" : 9, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Lovely Rita - Remastered", "duration_ms" : 1, "track_number" : 10, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Good Morning Good Morning - Remastered", "duration_ms" : 1, "track_number" : 11, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "Sgt. Pepper's Lonely Hearts Club Band - Reprise / Remastered", "duration_ms" : 1, "track_number" : 12, "docType" : "TRACK"}, {"disc_number" : 1, "name" : "A Day In The Life - Remastered", "duration_ms" : 1, "track_number" : 13, "docType" : "TRACK"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"disc_number": {"type": "integer"}, "name": {"type": "string"}, "duration_ms": {"type": "integer"}, "track_number": {"type": "integer"}, "docType": {"type": "string"}}, "required": ["disc_number", "name", "duration_ms", "track_number", "docType"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Stax SR-40 Electret SR4 Adapter", "id" : "68191c7dd85b6399dedbe5acb1e6e8587e0dc65e", "isDefault" : false, "gains" : {"global" : -7.5, "bands" : [6.0, 6.2, -0.3, -2.2, 1.1, -1.9, -0.5, 2.3, 0.9, -2.6]}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "shortName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "tags": {"type": "string"}, "supports": {"type": "array", "items": {"type": "string"}}, "readme": {"type": "string"}, "storage": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["id", "name", "shortName", "version", "description", "icon", "screenshots", "tags", "supports", "readme", "storage", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ptlaunch", "name" : "Pattern Launcher", "shortName" : "Pattern Launcher", "version" : "0.13", "description" : "Directly launch apps from the clock screen with custom patterns.", "icon" : "app.png", "screenshots" : [{"url" : "manage_patterns_light.png"}], "tags" : "tools", "supports" : ["BANGLEJS2"], "readme" : "README.md", "storage" : [{"name" : "ptlaunch.app.js", "url" : "app.js"}, {"name" : "ptlaunch.boot.js", "url" : "boot.js"}, {"name" : "ptlaunch.img", "url" : "app-icon.js", "evaluate" : true}], "data" : [{"name" : "ptlaunch.patterns.json"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "shortName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "tags": {"type": "string"}, "supports": {"type": "array", "items": {"type": "string"}}, "readme": {"type": "string"}, "storage": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["id", "name", "shortName", "version", "description", "icon", "screenshots", "tags", "supports", "readme", "storage", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "mythicmetals:block/banglum_ore"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"SlideWithIndex": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "IndexedSlideList": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "required": ["SlideWithIndex", "IndexedSlideList"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"__symbolic" : "module", "version" : 4, "metadata" : {"SlideWithIndex" : {"__symbolic" : "interface"}, "IndexedSlideList" : {"__symbolic" : "interface"}}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"SlideWithIndex": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "IndexedSlideList": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "required": ["SlideWithIndex", "IndexedSlideList"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : [[[-97.115261, 31.544363], [-97.109622, 31.549448], [-97.105349, 31.546265], [-97.10282, 31.551765], [-97.091067, 31.550354], [-97.086864, 31.548498], [-97.087477, 31.547065], [-97.087056, 31.545138], [-97.101934, 31.532028], [-97.106373, 31.535674], [-97.10588, 31.536423], [-97.115261, 31.544363]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 86253}}]}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage_url": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "128": {"type": "string"}}, "required": ["48", "128"]}}, "required": ["manifest_version", "name", "description", "version", "homepage_url", "background", "permissions", "browser_action", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "Hae digi.kansalliskirjasto.fi:st\u00e4", "description" : "Tekee haun valitusta tekstist\u00e4", "version" : "1.0", "homepage_url" : "https://digi.kansalliskirjasto.fi", "background" : {"scripts" : ["background.js"]}, "permissions" : ["activeTab", "contextMenus", "clipboardWrite", "webRequest"], "browser_action" : {"default_icon" : "digikis.png"}, "icons" : {"48" : "digikis_48.png", "128" : "digikis_128.png"}}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage_url": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "128": {"type": "string"}}, "required": ["48", "128"]}}, "required": ["manifest_version", "name", "description", "version", "homepage_url", "background", "permissions", "browser_action", "icons"], "$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"}, "question": {"type": "string"}, "i": {"type": "string"}, "c": {"type": "string"}, "a": {"type": "string"}, "o": {"type": "string"}}, "required": ["id", "question", "i", "c", "a", "o"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "23", "question" : "Eu acredito tamb\u00e9m que...", "i" : "Um sorriso ou uma careta \u00e9 o mesmo para quem \u00e9 cego", "c" : "O que vai, volta", "a" : "Aquele que hesita est\u00e1 perdido", "o" : "De gr\u00e3o em gr\u00e3o a galinha enche o papo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "question": {"type": "string"}, "i": {"type": "string"}, "c": {"type": "string"}, "a": {"type": "string"}, "o": {"type": "string"}}, "required": ["id", "question", "i", "c", "a", "o"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "preclusion", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"acadYear" : "2019/2020", "preclusion" : "Students who are taking or have taken LL5025", "description" : "An advanced course in analytic jurisprudence, investigating the nature of rights.\nIt begins with exposition of Wesley Hohfeld\u2019s analysis of the different legal positions often designated as \u201crights\u201d; then uses Hohfeld\u2019s framework to understand the debate between interest and will theorists of rights. It moves on to explicit consideration of moral rights. Finally, applications are considered \u2013 including human rights, and Asian perspectives on \u201crights\u201d discourse.", "title" : "Rights", "department" : "FoL Dean's Office", "faculty" : "Law", "workload" : [3, 0, 0, 0, 10], "prerequisite" : "NUS Compulsory Core Curriculum or its equivalent", "moduleCredit" : "5", "moduleCode" : "LL5025V", "semesterData" : []}
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "preclusion", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"date-fns": {"type": "string"}}, "required": ["date-fns"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "enterprise", "version" : "1.0.0", "dependencies" : {"date-fns" : "^2.0.0-alpha.7"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"date-fns": {"type": "string"}}, "required": ["date-fns"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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": {"minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "point": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "planning-permission-history": {"type": "string"}, "deliverable": {"type": "string"}}, "required": ["minimum-net-dwellings", "organisation", "hectares", "site-plan-url", "ownership-status", "notes", "start-date", "site", "name", "planning-permission-status", "maximum-net-dwellings", "site-address", "slug", "entity", "entry-date", "point", "planning-permission-date", "planning-permission-type", "planning-permission-history", "deliverable"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [0.024755, 51.523208]}, "properties" : {"minimum-net-dwellings" : "15", "organisation" : "local-authority-eng:NWM", "hectares" : "0.11", "site-plan-url" : "https://lbnewham.maps.arcgis.com/apps/webappviewer/index.html?id=730d34968dea4214a10e7d378f37ef2d", "ownership-status" : "mixed ownership", "notes" : "Demolition of existing auto-fitting centre and erection of 2no. two to four storey blocks comprising a total of 21 apartments (Block A and Block B), together with associated means of access and landscaping.. https://www.newham.gov.uk/Pages/Services/Local-plan.aspx?l1=100006&l2=200074#TheLocalPlan", "start-date" : "2017-11-30", "site" : "HSG22", "name" : "HSG22", "planning-permission-status" : "permissioned", "maximum-net-dwellings" : "21", "site-address" : "Balaam Street Garage, 44-46 Balaam Street, Plaistow, London, E13 8AQ", "slug" : "/brownfield-land/local-authority-eng/NWM/HSG22", "entity" : 490015, "entry-date" : "2019-12-12", "point" : "POINT(0.024755 51.523208)", "planning-permission-date" : "2019-08-16", "planning-permission-type" : "full planning permission", "planning-permission-history" : "https://pa.newham.gov.uk/online-applications/propertyDetails.do?activeTab=relatedCases&keyVal=IHTSEJJY99000", "deliverable" : "yes"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "hectares": {"type": "string"}, "site-plan-url": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "point": {"type": "string"}, "planning-permission-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "planning-permission-history": {"type": "string"}, "deliverable": {"type": "string"}}, "required": ["minimum-net-dwellings", "organisation", "hectares", "site-plan-url", "ownership-status", "notes", "start-date", "site", "name", "planning-permission-status", "maximum-net-dwellings", "site-address", "slug", "entity", "entry-date", "point", "planning-permission-date", "planning-permission-type", "planning-permission-history", "deliverable"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "consola": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "get-urls": {"type": "string"}, "nodemon": {"type": "string"}, "taiko": {"type": "string"}}, "required": ["body-parser", "consola", "dotenv", "express", "get-urls", "nodemon", "taiko"]}}, "required": ["name", "version", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dd-script", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "dependencies" : {"body-parser" : "^1.19.0", "consola" : "^2.9.0", "dotenv" : "^8.0.0", "express" : "^4.17.1", "get-urls" : "^9.1.0", "nodemon" : "^1.19.1", "taiko" : "^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "consola": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "get-urls": {"type": "string"}, "nodemon": {"type": "string"}, "taiko": {"type": "string"}}, "required": ["body-parser", "consola", "dotenv", "express", "get-urls", "nodemon", "taiko"]}}, "required": ["name", "version", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Meta": {"type": "object", "properties": {"Name": {"type": "string"}, "Comment": {"type": "string"}, "Width": {"type": "integer"}, "Height": {"type": "integer"}, "TileWidth": {"type": "integer"}, "TileHeight": {"type": "integer"}, "GridWidth": {"type": "integer"}, "GridHeight": {"type": "integer"}, "ExportFormat": {"type": "string"}, "FormatVersion": {"type": "integer"}}, "required": ["Name", "Comment", "Width", "Height", "TileWidth", "TileHeight", "GridWidth", "GridHeight", "ExportFormat", "FormatVersion"]}, "Header": {"type": "object", "properties": {"Music": {"type": "string"}, "SpriteGFX": {"type": "array", "items": {"type": "string"}}, "GFXUpload": {"type": "array", "items": {"type": "string"}}, "BGColor": {"type": "integer"}}, "required": ["Music", "SpriteGFX", "GFXUpload", "BGColor"]}, "Layers": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Type": {"type": "string"}, "Tileset": {"type": "string"}, "Data": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "X": {"type": "integer"}, "Y": {"type": "integer"}, "W": {"type": "integer"}, "H": {"type": "integer"}}, "required": ["Id", "X", "Y", "W", "H"]}}}, "required": ["Name", "Type", "Tileset", "Data"]}}}, "required": ["Meta", "Header", "Layers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Meta" : {"Name" : "example level", "Comment" : "", "Width" : 128, "Height" : 30, "TileWidth" : 16, "TileHeight" : 16, "GridWidth" : 16, "GridHeight" : 15, "ExportFormat" : "PrincessNES", "FormatVersion" : 1}, "Header" : {"Music" : "NONE", "SpriteGFX" : ["SP_WALKER", "SP_CANNON", "SP_LIFE", "SP_HANNAH"], "GFXUpload" : ["PAL_BUMMER", "BG_COMMON", "BG_BUMMER", "BG_CHIP", "BG_HANNAH", "PAL_ENEMY3"], "BGColor" : 15}, "Layers" : [{"Name" : "Foreground", "Type" : "Rectangle", "Tileset" : "novafg", "Data" : [{"Id" : "SOLID_LEDGE", "X" : 22, "Y" : 10, "W" : 5, "H" : 1}, {"Id" : "TOGGLE_BLOCK_ON", "X" : 20, "Y" : 11, "W" : 8, "H" : 1}, {"Id" : "TOGGLE_BLOCK_ON", "X" : 20, "Y" : 7, "W" : 8, "H" : 1}, {"Id" : "TOGGLE_BLOCK_ON", "X" : 20, "Y" : 8, "W" : 1, "H" : 3}, {"Id" : "TOGGLE_BLOCK_ON", "X" : 27, "Y" : 8, "W" : 1, "H" : 3}, {"Id" : "TOGGLE_SWITCH", "X" : 25, "Y" : 9, "W" : 1, "H" : 1}, {"Id" : "SPRING", "X" : 30, "Y" : 10, "W" : 1, "H" : 1}, {"Id" : "SMALL_ROCK", "X" : 29, "Y" : 11, "W" : 3, "H" : 1}, {"Id" : "SOLID_LEDGE", "X" : 29, "Y" : 7, "W" : 3, "H" : 1}, {"Id" : "SOLID_LEDGE", "X" : 25, "Y" : 5, "W" : 3, "H" : 1}]}, {"Name" : "Sprites", "Type" : "Sprite", "Tileset" : "novasp", "Data" : []}, {"Name" : "Control", "Type" : "Control", "Tileset" : "novact", "Data" : [{"Id" : "PLAYER_START_R", "X" : 23, "Y" : 9, "W" : 1, "H" : 1}, {"Id" : "SCROLL_LOCK", "X" : 127, "Y" : 0, "W" : 1, "H" : 1}, {"Id" : "SCROLL_LOCK", "X" : 127, "Y" : 15, "W" : 1, "H" : 1}]}]}
json_instruct
{"type": "object", "properties": {"Meta": {"type": "object", "properties": {"Name": {"type": "string"}, "Comment": {"type": "string"}, "Width": {"type": "integer"}, "Height": {"type": "integer"}, "TileWidth": {"type": "integer"}, "TileHeight": {"type": "integer"}, "GridWidth": {"type": "integer"}, "GridHeight": {"type": "integer"}, "ExportFormat": {"type": "string"}, "FormatVersion": {"type": "integer"}}, "required": ["Name", "Comment", "Width", "Height", "TileWidth", "TileHeight", "GridWidth", "GridHeight", "ExportFormat", "FormatVersion"]}, "Header": {"type": "object", "properties": {"Music": {"type": "string"}, "SpriteGFX": {"type": "array", "items": {"type": "string"}}, "GFXUpload": {"type": "array", "items": {"type": "string"}}, "BGColor": {"type": "integer"}}, "required": ["Music", "SpriteGFX", "GFXUpload", "BGColor"]}, "Layers": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Type": {"type": "string"}, "Tileset": {"type": "string"}, "Data": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "X": {"type": "integer"}, "Y": {"type": "integer"}, "W": {"type": "integer"}, "H": {"type": "integer"}}, "required": ["Id", "X", "Y", "W", "H"]}}}, "required": ["Name", "Type", "Tileset", "Data"]}}}, "required": ["Meta", "Header", "Layers"], "$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"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "version", "description", "license", "repository", "main", "scripts", "keywords", "author", "gitHead", "bugs", "homepage", "maintainers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "postcode-validator", "version" : "2.0.0", "description" : "Validate postcodes based on country", "license" : "MIT", "repository" : {"type" : "git", "url" : "[email protected]:melwynfurtado/postcode-validator"}, "main" : "./lib/index.js", "scripts" : {"test" : "node test/all"}, "keywords" : ["postcode", "validation"], "author" : {"name" : "Melwyn Furtado", "email" : "[email protected]"}, "gitHead" : "d11ad2bf5ae28bc47e2e14a9149b1049206941ca", "bugs" : {"url" : "https://github.com/melwynfurtado/postcode-validator/issues"}, "homepage" : "https://github.com/melwynfurtado/postcode-validator", "maintainers" : [{"name" : "melwynfurtado", "email" : "[email protected]"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "version", "description", "license", "repository", "main", "scripts", "keywords", "author", "gitHead", "bugs", "homepage", "maintainers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "null"}, "version": {"type": "string"}, "scrypt": {"type": "object", "properties": {"n": {"type": "integer"}, "r": {"type": "integer"}, "p": {"type": "integer"}}, "required": ["n", "r", "p"]}, "accounts": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "label": {"type": "null"}, "isDefault": {"type": "boolean"}, "lock": {"type": "boolean"}, "key": {"type": "string"}, "contract": {"type": "object", "properties": {"script": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "deployed": {"type": "boolean"}}, "required": ["script", "parameters", "deployed"]}, "extra": {"type": "null"}}, "required": ["address", "label", "isDefault", "lock", "key", "contract", "extra"]}}, "extra": {"type": "null"}}, "required": ["name", "version", "scrypt", "accounts", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : null, "version" : "1.0", "scrypt" : {"n" : 16384, "r" : 8, "p" : 8}, "accounts" : [{"address" : "AU8fBXPDFzZR8VfXzN3ZPGoXqcz9sE68vV", "label" : null, "isDefault" : false, "lock" : false, "key" : "6PYT4jBNBi4Gh22KbibQNok2kt6sELmcbgsxHq71jENGUrVEjZApEuR7o8", "contract" : {"script" : "2103cc384ca982168bf6f08922d27c8acc4357d52a7e8ad8281d4af6683e6f63e94dac", "parameters" : [{"name" : "signature", "type" : "Signature"}], "deployed" : false}, "extra" : null}, {"address" : "AXMv2SYVYovAEQgtYoAcTw2aA4kPLW2XkJ", "label" : null, "isDefault" : false, "lock" : false, "key" : "6PYT4jBNBi4Gh22KbibQNok2kt6sELmcbgsxHq71jENGUrVEjZApEuR7o8", "contract" : {"script" : "5321037ebe29fff57d8c177870e9d9eecb046b27fc290ccbac88a0e3da8bac5daa630d2103b34a4be80db4a38f62bb41d63f9b1cb664e5e0416c1ac39db605a8e30ef270cc2103cc384ca982168bf6f08922d27c8acc4357d52a7e8ad8281d4af6683e6f63e94d2103da4ed85a991134bf45592a5b04d6d71399f23a85843f43e6ac1a5d30f547371154ae", "parameters" : [{"name" : "parameter0", "type" : "Signature"}, {"name" : "parameter1", "type" : "Signature"}, {"name" : "parameter2", "type" : "Signature"}], "deployed" : false}, "extra" : null}], "extra" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "null"}, "version": {"type": "string"}, "scrypt": {"type": "object", "properties": {"n": {"type": "integer"}, "r": {"type": "integer"}, "p": {"type": "integer"}}, "required": ["n", "r", "p"]}, "accounts": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "label": {"type": "null"}, "isDefault": {"type": "boolean"}, "lock": {"type": "boolean"}, "key": {"type": "string"}, "contract": {"type": "object", "properties": {"script": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "deployed": {"type": "boolean"}}, "required": ["script", "parameters", "deployed"]}, "extra": {"type": "null"}}, "required": ["address", "label", "isDefault", "lock", "key", "contract", "extra"]}}, "extra": {"type": "null"}}, "required": ["name", "version", "scrypt", "accounts", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}, "profile": {"type": "array", "items": {"type": "string"}}}, "required": ["lastUpdated", "profile"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueUri": {"type": "string"}}, "required": ["url", "valueUri"]}}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "publisher": {"type": "string"}, "contact": {"type": "array", "items": {"type": "object", "properties": {"telecom": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "value": {"type": "string"}}, "required": ["system", "value"]}}}, "required": ["telecom"]}}, "date": {"type": "string"}, "description": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}}, "required": ["system"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "meta", "text", "extension", "url", "version", "name", "status", "experimental", "publisher", "contact", "date", "description", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "ValueSet", "id" : "linkage-type", "meta" : {"lastUpdated" : "2016-03-31T08:01:25.570+11:00", "profile" : ["http://hl7.org/fhir/StructureDefinition/valueset-shareable-definition"]}, "text" : {"status" : "generated", "div" : "<div><h2>LinkageType</h2><p>Used to distinguish different roles a resource can play within a set of linked resources</p><p>This value set includes codes from the following code systems:</p><ul><li>Include all codes defined in <a href=\"codesystem-linkage-type.html\">http://hl7.org/fhir/linkage-type</a></li></ul></div>"}, "extension" : [{"url" : "http://hl7.org/fhir/StructureDefinition/valueset-oid", "valueUri" : "urn:oid:2.16.840.1.113883.4.642.2.525"}], "url" : "http://hl7.org/fhir/ValueSet/linkage-type", "version" : "1.4.0", "name" : "LinkageType", "status" : "draft", "experimental" : false, "publisher" : "HL7 (FHIR Project)", "contact" : [{"telecom" : [{"system" : "other", "value" : "http://hl7.org/fhir"}, {"system" : "email", "value" : "[email protected]"}]}], "date" : "2016-03-31T08:01:25+11:00", "description" : "Used to distinguish different roles a resource can play within a set of linked resources", "compose" : {"include" : [{"system" : "http://hl7.org/fhir/linkage-type"}]}}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}, "profile": {"type": "array", "items": {"type": "string"}}}, "required": ["lastUpdated", "profile"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueUri": {"type": "string"}}, "required": ["url", "valueUri"]}}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "publisher": {"type": "string"}, "contact": {"type": "array", "items": {"type": "object", "properties": {"telecom": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "value": {"type": "string"}}, "required": ["system", "value"]}}}, "required": ["telecom"]}}, "date": {"type": "string"}, "description": {"type": "string"}, "compose": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}}, "required": ["system"]}}}, "required": ["include"]}}, "required": ["resourceType", "id", "meta", "text", "extension", "url", "version", "name", "status", "experimental", "publisher", "contact", "date", "description", "compose"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "cep": {"type": "string"}, "uf": {"type": "string"}}, "required": ["id", "cep", "uf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "26172617", "cep" : "11438290", "uf" : "SP"}, {"id" : "yqiqalqi", "cep" : "23632732", "uf" : "RJ"}, {"id" : "aha7e92p", "cep" : "34324234", "uf" : "MG"}, {"id" : "26172617", "cep" : "64565445", "uf" : "MT"}, {"id" : "shao17199", "cep" : "4654544", "uf" : "SP"}, {"id" : "26172617", "cep" : "11438290", "uf" : "SP"}, {"id" : "yqiqalqi", "cep" : "23632732", "uf" : "RJ"}, {"id" : "aha7e92p", "cep" : "34324234", "uf" : "MG"}, {"id" : "26172617", "cep" : "64565445", "uf" : "MT"}, {"id" : "shao17199", "cep" : "4654544", "uf" : "SP"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "cep": {"type": "string"}, "uf": {"type": "string"}}, "required": ["id", "cep", "uf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "year": {"type": "integer"}, "venue": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "id": {"type": "string"}}, "required": ["title", "url", "year", "venue", "authors", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "The New Darwinism of the Payment System: Will Bitcoin Replace our Cash-based Society?", "url" : "http://www.icommercecentral.com/open-access/the-new-darwinism-of-the-payment-system-will-bitcoin-replace-our-cashbased-society.pdf", "year" : 2015, "venue" : "Journal of Internet Banking and Commerce", "authors" : [{"name" : "j. Wonglimpiyarat"}], "id" : "wonglimpiryarat2015"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "year": {"type": "integer"}, "venue": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "id": {"type": "string"}}, "required": ["title", "url", "year", "venue", "authors", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "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": {"history": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router": {"type": "string"}}, "required": ["history", "react", "react-dom", "react-router"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-react-hmre": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-devserver": {"type": "string"}, "webpack-hot-middleware": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "babel-preset-react-hmre", "webpack", "webpack-dev-server", "webpack-devserver", "webpack-hot-middleware"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-sample-app", "version" : "1.0.0", "description" : "react sample application", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/gsaini/react-sample-app.git"}, "keywords" : ["reactJS", "flux", "jsx", "es6"], "author" : "Gopal Saini", "license" : "ISC", "bugs" : {"url" : "https://github.com/gsaini/react-sample-app/issues"}, "homepage" : "https://github.com/gsaini/react-sample-app#readme", "dependencies" : {"history" : "^1.17.0", "react" : "^15.3.2", "react-dom" : "^15.3.2", "react-router" : "^3.0.0"}, "devDependencies" : {"babel-core" : "^6.18.2", "babel-loader" : "^6.2.7", "babel-preset-es2015" : "^6.18.0", "babel-preset-react" : "^6.16.0", "babel-preset-react-hmre" : "^1.1.1", "webpack" : "^1.13.3", "webpack-dev-server" : "^1.16.2", "webpack-devserver" : "0.0.6", "webpack-hot-middleware" : "^2.13.2"}, "scripts" : {"dev" : "./node_modules/.bin/webpack-dev-server --content-base app --inline --hot", "build" : "webpack -p"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"history": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router": {"type": "string"}}, "required": ["history", "react", "react-dom", "react-router"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-react-hmre": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-devserver": {"type": "string"}, "webpack-hot-middleware": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "babel-preset-react-hmre", "webpack", "webpack-dev-server", "webpack-devserver", "webpack-hot-middleware"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "short_name": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}, "display": {"type": "string"}, "lang": {"type": "string"}, "orientation": {"type": "string"}, "start_url": {"type": "string"}, "scope": {"type": "string"}, "splash_pages": {"type": "null"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "description", "short_name", "theme_color", "background_color", "display", "lang", "orientation", "start_url", "scope", "splash_pages", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Yale BioImage Suite Web (Local)", "description" : "This is the Yale BioImage Suite Web Medical Image Analysis Software Package", "short_name" : "BISWeb-LH", "theme_color" : "#375a7f", "background_color" : "#375a7f", "display" : "standalone", "lang" : "English", "orientation" : "any", "start_url" : "index.html", "scope" : "http://localhost:8080/build/web/", "splash_pages" : null, "icons" : [{"src" : "images/bisweb-32.png", "sizes" : "32x32", "type" : "image/png"}, {"src" : "images/bisweb-72.png", "sizes" : "72x72", "type" : "image/png"}, {"src" : "images/bisweb-128.png", "sizes" : "128x128", "type" : "image/png"}, {"src" : "images/bisweb-192.png", "sizes" : "192x192", "type" : "image/png"}, {"src" : "images/bisweb-256.png", "sizes" : "256x256", "type" : "image/png"}, {"src" : "images/bisweb-512.png", "sizes" : "512x512", "type" : "image/png"}, {"src" : "images/bisweb-1024.png", "sizes" : "1024x1024", "type" : "image/png"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "short_name": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}, "display": {"type": "string"}, "lang": {"type": "string"}, "orientation": {"type": "string"}, "start_url": {"type": "string"}, "scope": {"type": "string"}, "splash_pages": {"type": "null"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "description", "short_name", "theme_color", "background_color", "display", "lang", "orientation", "start_url", "scope", "splash_pages", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"copyright": {"type": "string"}}, "required": ["copyright"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyright" : "Tom Harvey"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}}, "required": ["copyright"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Friedrich-List-Berufskolleg Wirtschaft und Verwaltung", "id" : "NRW-188724", "address" : "Vorheider Weg 14, 59067 Hamm", "school_type" : "Berufskolleg", "fax" : "02381 9149225", "phone" : "02381 914920", "website" : " http://www.schulen.hamm.de/flistkfmsch/", "email" : " [email protected] ", "state" : "NRW", "programs" : {"programs" : ["Fairtrade Schools"]}, "full_time_school" : false, "lon" : 7.7974, "lat" : 51.672536}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"terser": {"type": "string"}}, "required": ["terser"]}}, "required": ["private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "dependencies" : {"terser" : "^3.16.1"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"terser": {"type": "string"}}, "required": ["terser"]}}, "required": ["private", "dependencies"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "webpack": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "webpack", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-compile-handlebars": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify": {"type": "string"}, "pump": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["autoprefixer", "babel-core", "babel-preset-env", "babel-preset-es2015", "browser-sync", "gulp", "gulp-babel", "gulp-compile-handlebars", "gulp-concat", "gulp-cssnano", "gulp-htmlmin", "gulp-postcss", "gulp-rename", "gulp-sass", "gulp-sourcemaps", "gulp-uglify", "pump", "webpack"]}, "dependencies": {"type": "object", "properties": {"aos": {"type": "string"}, "chart.js": {"type": "string"}, "modularscale-sass": {"type": "string"}, "normalize.css": {"type": "string"}, "typi": {"type": "string"}}, "required": ["aos", "chart.js", "modularscale-sass", "normalize.css", "typi"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "project", "version" : "1.0.0", "description" : "This is my starting point with [Gulp](http://gulpjs.com/) for static websites.", "main" : "gulpfile.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "webpack" : "NODE_ENV=development webpack -w", "build" : "NODE_ENV=production webpack -p"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"autoprefixer" : "^6.7.3", "babel-core" : "^6.23.1", "babel-preset-env" : "^1.1.8", "babel-preset-es2015" : "^6.22.0", "browser-sync" : "^2.18.8", "gulp" : "^3.9.1", "gulp-babel" : "^6.1.2", "gulp-compile-handlebars" : "^0.6.1", "gulp-concat" : "^2.6.1", "gulp-cssnano" : "^2.1.2", "gulp-htmlmin" : "^3.0.0", "gulp-postcss" : "^6.3.0", "gulp-rename" : "^1.2.2", "gulp-sass" : "^3.1.0", "gulp-sourcemaps" : "^2.4.1", "gulp-uglify" : "^2.0.1", "pump" : "^1.0.2", "webpack" : "^2.3.3"}, "dependencies" : {"aos" : "^2.1.1", "chart.js" : "^2.5.0", "modularscale-sass" : "^2.1.1", "normalize.css" : "^5.0.0", "typi" : "^2.3.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "webpack": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "webpack", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "babel-core": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-babel": {"type": "string"}, "gulp-compile-handlebars": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-htmlmin": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify": {"type": "string"}, "pump": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["autoprefixer", "babel-core", "babel-preset-env", "babel-preset-es2015", "browser-sync", "gulp", "gulp-babel", "gulp-compile-handlebars", "gulp-concat", "gulp-cssnano", "gulp-htmlmin", "gulp-postcss", "gulp-rename", "gulp-sass", "gulp-sourcemaps", "gulp-uglify", "pump", "webpack"]}, "dependencies": {"type": "object", "properties": {"aos": {"type": "string"}, "chart.js": {"type": "string"}, "modularscale-sass": {"type": "string"}, "normalize.css": {"type": "string"}, "typi": {"type": "string"}}, "required": ["aos", "chart.js", "modularscale-sass", "normalize.css", "typi"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}}, "required": ["image", "attributes", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"image" : "https://ipfs.infura.io/ipfs/Qmf55gd4jingXp134D9a8fWhw1e2rVEv1kfA6AcEZtEpWE", "attributes" : [{"trait_type" : "Type", "value" : "Human"}, {"trait_type" : "Gender", "value" : "Female"}, {"trait_type" : "Hair Style", "value" : "Top Swoosh"}, {"trait_type" : "Top", "value" : "Cowl"}, {"trait_type" : "Top Color", "value" : "Dark Red"}, {"trait_type" : "Scarf", "value" : "Tight-necked"}, {"trait_type" : "Scarf Color", "value" : "Ocean Blue"}, {"trait_type" : "Hair Color", "value" : "Blonde"}], "code" : "hfssk1ha1#ffcc00to8#5a2222sc1#111d4f"}
json_instruct
{"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}}, "required": ["image", "attributes", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "Saint-Didier-sur-Beaujeu", "circ" : "9\u00e8me circonscription", "dpt" : "Rh\u00f4ne", "inscrits" : 425, "abs" : 228, "votants" : 197, "blancs" : 13, "nuls" : 2, "exp" : 182, "res" : [{"nuance" : "LR", "nom" : "M. Bernard PERRUT", "voix" : 116}, {"nuance" : "REM", "nom" : "Mme Marion CROIZEAU", "voix" : 66}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 101895235, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "978217bd264987166acb5d6eb06b63ab", "wof:id" : 101895235, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.35826094992632, 45.30870906126381, 4.36661780233476, 45.31942022413085], "geometry" : {"coordinates" : [[[4.36170519577979, 45.31942022413085], [4.361797015001, 45.31852196028092], [4.3630675818776, 45.31859002105534], [4.36343473783461, 45.31499695396582], [4.3647052255921, 45.31506499431214], [4.364796984355, 45.31416672461756], [4.36606745444789, 45.31423474837686], [4.36661780233476, 45.30884510873648], [4.36407711072354, 45.30870906126381], [4.36398535485682, 45.30960733362144], [4.36017427714262, 45.30940314378165], [4.36008245594627, 45.31030141164177], [4.36135283284312, 45.31036949150757], [4.36107740729904, 45.31306429498522], [4.3585365334489, 45.31292811226393], [4.35826094992632, 45.31562290214231], [4.3608019466684, 45.31575909254826], [4.360434611237, 45.31935214676719], [4.36170519577979, 45.31942022413085]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"se": {"type": "string"}, "title": {"type": "string"}, "tt": {"type": "integer"}, "air_date": {"type": "string"}, "description": {"type": "null"}, "cast": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "nm": {"type": "integer"}, "roles": {"type": "array", "items": {"type": "object", "properties": {"char": {"type": "string"}}, "required": ["char"]}}}, "required": ["name", "nm", "roles"]}}}, "required": ["se", "title", "tt", "air_date", "description", "cast"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"se" : "S01E01", "title" : "Pilot", "tt" : 2621122, "air_date" : "1993-06-27", "description" : null, "cast" : [{"name" : "Barbara Alyn Woods", "nm" : 940504, "roles" : [{"char" : "Eve Sinclair"}]}, {"name" : "Jeff Griggs", "nm" : 341828, "roles" : [{"char" : "Grant Sinclair"}]}, {"name" : "Steve Chase", "nm" : 153836, "roles" : [{"char" : "Josh Sinclair"}]}, {"name" : "Darcy DeMoss", "nm" : 218674, "roles" : [{"char" : "Randi Banks"}]}, {"name" : "Jack Armstrong", "nm" : 35737, "roles" : [{"char" : "B.D."}]}, {"name" : "Diana Barton", "nm" : 59125, "roles" : [{"char" : "Andrea"}]}, {"name" : "Kristen Fontaine", "nm" : 284830, "roles" : []}, {"name" : "Elizabeth Lambert", "nm" : 483136, "roles" : [{"char" : "Victoria"}]}, {"name" : "Christoph M. Ohrt", "nm" : 645178, "roles" : [{"char" : "Ian"}]}, {"name" : "Jill Pierce", "nm" : 682389, "roles" : [{"char" : "Jill Pierce"}]}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"se": {"type": "string"}, "title": {"type": "string"}, "tt": {"type": "integer"}, "air_date": {"type": "string"}, "description": {"type": "null"}, "cast": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "nm": {"type": "integer"}, "roles": {"type": "array", "items": {"type": "object", "properties": {"char": {"type": "string"}}, "required": ["char"]}}}, "required": ["name", "nm", "roles"]}}}, "required": ["se", "title", "tt", "air_date", "description", "cast"]}, "$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": {"Config": {"type": "string"}, "RepoTags": {"type": "array", "items": {"type": "string"}}, "Layers": {"type": "array", "items": {"type": "string"}}}, "required": ["Config", "RepoTags", "Layers"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Config" : "411a417c1f6ef5b93fac71c92276013f45762dde0bb36a80a6148ca114d1b0fa.json", "RepoTags" : ["busybox:test-build-engine"], "Layers" : ["393ccd5c4dd90344c9d725125e13f636ce0087c62f5ca89050faaacbb9e3ed5b/layer.tar"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Config": {"type": "string"}, "RepoTags": {"type": "array", "items": {"type": "string"}}, "Layers": {"type": "array", "items": {"type": "string"}}}, "required": ["Config", "RepoTags", "Layers"]}, "$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"}, "appCode": {"type": "string"}, "menuId": {"type": "integer"}}, "required": ["name", "appCode", "menuId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "", "appCode" : "kcword", "menuId" : 9}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "appCode": {"type": "string"}, "menuId": {"type": "integer"}}, "required": ["name", "appCode", "menuId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"url": {"type": "string"}, "template": {"type": "object", "properties": {"root": {"type": "string"}, "feed": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "post": {"type": "object", "properties": {"link": {"type": "string"}, "title": {"type": "string"}, "innerImg": {"type": "string"}}, "required": ["link", "title", "innerImg"]}}, "required": ["root", "feed", "post"]}}, "required": ["url", "template"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https?:\\/\\/ani(\\.best|drama\\.org)/.*", "template" : {"root" : "#dle-content>a", "feed" : {"title" : "meta[name*=description] @content"}, "post" : {"link" : "a @href", "title" : "div.title", "innerImg" : "img @src"}}}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "template": {"type": "object", "properties": {"root": {"type": "string"}, "feed": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "post": {"type": "object", "properties": {"link": {"type": "string"}, "title": {"type": "string"}, "innerImg": {"type": "string"}}, "required": ["link", "title", "innerImg"]}}, "required": ["root", "feed", "post"]}}, "required": ["url", "template"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x9db21e6228b347e504cc346baf15067d44d12ce0", "tool" : "maian", "start" : 1565231267.7858703, "end" : 1565231392.0760105, "duration" : 124.29014015197754, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Statuette sinistre", "description" : "Une statuette sculpt\u00e9e \u00e0 l'effigie d'une personne inconnue.\nElle a \u00e9t\u00e9 t\u00e9moin du passage du temps, mais demeure intacte. Son pr\u00e9c\u00e9dent propri\u00e9taire semble l'avoir ch\u00e9rie comme une ic\u00f4ne sainte.", "sortorder" : 1777, "rarity" : "2", "category" : "AVATAR_MATERIAL", "materialtype" : "Mat\u00e9riau d'am\u00e9lioration de personnage", "source" : ["Butin de Serpent noir", "\u00c9change Astrions"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Rivex.finance", "symbol" : "YRX", "address" : "0xB440f28A2723756FE3b23BdB7851f113EB10aA48", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "code": {"type": "string"}, "sort-code": {"type": "integer"}, "description": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "leaf": {"type": "boolean"}, "hierarchicalCategories.lvl2": {"type": "string"}, "hierarchicalCategories.lvl1": {"type": "string"}, "hierarchicalCategories.lvl0": {"type": "string"}, "parent": {"type": "string"}}, "required": ["id", "name", "type", "code", "sort-code", "description", "categories", "leaf", "hierarchicalCategories.lvl2", "hierarchicalCategories.lvl1", "hierarchicalCategories.lvl0", "parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "436a762eb28c150221d133924c675978", "name" : "Verbindlichkeiten >5 Jahre gegen\u00fcber Kreditinstituten", "type" : "Verbindlichkeit", "code" : "1503", "sort-code" : 1503, "description" : "Verbindlichkeiten gegen\u00fcber Kreditinstituten \u2013 Restlaufzeit mehr als 5 Jahre", "categories" : ["1500 Verbindlichkeiten gegen\u00fcber Kreditinstituten", "1300-1989 VERBINDLICHKEITEN", "1 passive Verm\u00f6gensposten"], "leaf" : true, "hierarchicalCategories.lvl2" : "1 passive Verm\u00f6gensposten > 1300-1989 VERBINDLICHKEITEN > 1500 Verbindlichkeiten gegen\u00fcber Kreditinstituten", "hierarchicalCategories.lvl1" : "1 passive Verm\u00f6gensposten > 1300-1989 VERBINDLICHKEITEN", "hierarchicalCategories.lvl0" : "1 passive Verm\u00f6gensposten", "parent" : "6c2e57a2ff618e4033df95b97dd2e1be"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "code": {"type": "string"}, "sort-code": {"type": "integer"}, "description": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "leaf": {"type": "boolean"}, "hierarchicalCategories.lvl2": {"type": "string"}, "hierarchicalCategories.lvl1": {"type": "string"}, "hierarchicalCategories.lvl0": {"type": "string"}, "parent": {"type": "string"}}, "required": ["id", "name", "type", "code", "sort-code", "description", "categories", "leaf", "hierarchicalCategories.lvl2", "hierarchicalCategories.lvl1", "hierarchicalCategories.lvl0", "parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"views": {"type": "string"}, "server_routes": {"type": "string"}, "server_controllers": {"type": "string"}, "client_controllers": {"type": "string"}, "client_wiring": {"type": "string"}}, "required": ["views", "server_routes", "server_controllers", "client_controllers", "client_wiring"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"views" : ".bin/views", "server_routes" : "controllers/routes.js", "server_controllers" : "controllers", "client_controllers" : "client/js/controllers", "client_wiring" : ".bin/wiring.js"}
json_instruct
{"type": "object", "properties": {"views": {"type": "string"}, "server_routes": {"type": "string"}, "server_controllers": {"type": "string"}, "client_controllers": {"type": "string"}, "client_wiring": {"type": "string"}}, "required": ["views", "server_routes", "server_controllers", "client_controllers", "client_wiring"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "name": {"type": "string"}}, "required": ["type", "features", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-4.17359969155, 55.982138724, 0.0], [-4.17084599863, 56.0021592676, 0.0], [-4.13715790872, 56.0039810878, 0.0], [-4.13394430448, 55.9845240188, 0.0], [-4.12461573345, 55.9794570921, 0.0], [-4.12127629193, 55.9760048447, 0.0], [-4.11095154017, 55.9714967051, 0.0], [-4.10534942469, 55.9705919229, 0.0], [-4.1046318881, 55.9704700555, 0.0], [-4.10409552822, 55.9697840068, 0.0], [-4.10337006883, 55.968688963, 0.0], [-4.09971569007, 55.9677537109, 0.0], [-4.09811836676, 55.9669529189, 0.0], [-4.09352430824, 55.9614967989, 0.0], [-4.09431432976, 55.9608164423, 0.0], [-4.09544434905, 55.9602248658, 0.0], [-4.09643306434, 55.9598566899, 0.0], [-4.09980012845, 55.9589781172, 0.0], [-4.10862542473, 55.9581313671, 0.0], [-4.11032902494, 55.9535226927, 0.0], [-4.12474297247, 55.9528973586, 0.0], [-4.12858432185, 55.9543289615, 0.0], [-4.13006028178, 55.9564021404, 0.0], [-4.13061145482, 55.9565300464, 0.0], [-4.14750219611, 55.9559429431, 0.0], [-4.14796828372, 55.9546590046, 0.0], [-4.16290947726, 55.9538598259, 0.0], [-4.16882569327, 55.9510452572, 0.0], [-4.17031715507, 55.9502373975, 0.0], [-4.17093519232, 55.950317264, 0.0], [-4.17206698974, 55.9515389265, 0.0], [-4.18064678632, 55.9575970396, 0.0], [-4.18339307142, 55.9589865146, 0.0], [-4.18279981664, 55.9598547143, 0.0], [-4.18431986438, 55.9638830222, 0.0], [-4.18132161215, 55.9689122915, 0.0], [-4.18132049177, 55.9689170941, 0.0], [-4.18069455264, 55.9698789073, 0.0], [-4.1801325372, 55.9702027457, 0.0], [-4.18417314105, 55.9764493648, 0.0], [-4.17359969155, 55.982138724, 0.0]]]}}], "name" : "G66 8"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "name": {"type": "string"}}, "required": ["type", "features", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"tuples": {"type": "array", "items": {"type": "object", "properties": {"siret": {"type": "string"}, "periode": {"type": "string"}, "random_order": {"type": "number"}}, "required": ["siret", "periode", "random_order"]}}, "events": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "startDate": {"type": "string"}, "event": {"type": "object", "properties": {"batchKey": {"type": "string"}, "headFatal": {"type": "array", "items": {}}, "headRejected": {"type": "array", "items": {}}, "isFatal": {"type": "boolean"}, "linesParsed": {"type": "integer"}, "linesRejected": {"type": "integer"}, "linesSkipped": {"type": "integer"}, "linesValid": {"type": "integer"}, "summary": {"type": "string"}}, "required": ["batchKey", "headFatal", "headRejected", "isFatal", "linesParsed", "linesRejected", "linesSkipped", "linesValid", "summary"]}, "priority": {"type": "string"}, "parserCode": {"type": "string"}, "report_type": {"type": "string"}}, "required": ["date", "startDate", "event", "priority", "parserCode", "report_type"]}}}, "required": ["tuples", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tuples" : [{"siret" : "11111111111111", "periode" : "2015-01-01T00:00:00Z", "random_order" : 0.9664535356921388}, {"siret" : "11111111111111", "periode" : "2015-02-01T00:00:00Z", "random_order" : 0.4407325991753527}, {"siret" : "11111111111111", "periode" : "2015-03-01T00:00:00Z", "random_order" : 0.007491470058587191}, {"siret" : "11111111111111", "periode" : "2015-04-01T00:00:00Z", "random_order" : 0.9109759624491242}], "events" : [{"date" : "0001-01-01T00:00:00Z", "startDate" : "0001-01-01T00:00:00Z", "event" : {"batchKey" : "", "headFatal" : [], "headRejected" : [], "isFatal" : false, "linesParsed" : 4, "linesRejected" : 0, "linesSkipped" : 0, "linesValid" : 4, "summary" : "testData/reporderTestData.csv: int\u00e9gration termin\u00e9e, 4 lignes trait\u00e9es, 0 erreurs fatales, 0 lignes rejet\u00e9es, 0 lignes filtr\u00e9es, 4 lignes valides"}, "priority" : "info", "parserCode" : "reporder", "report_type" : ""}]}
json_instruct
{"type": "object", "properties": {"tuples": {"type": "array", "items": {"type": "object", "properties": {"siret": {"type": "string"}, "periode": {"type": "string"}, "random_order": {"type": "number"}}, "required": ["siret", "periode", "random_order"]}}, "events": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "startDate": {"type": "string"}, "event": {"type": "object", "properties": {"batchKey": {"type": "string"}, "headFatal": {"type": "array", "items": {}}, "headRejected": {"type": "array", "items": {}}, "isFatal": {"type": "boolean"}, "linesParsed": {"type": "integer"}, "linesRejected": {"type": "integer"}, "linesSkipped": {"type": "integer"}, "linesValid": {"type": "integer"}, "summary": {"type": "string"}}, "required": ["batchKey", "headFatal", "headRejected", "isFatal", "linesParsed", "linesRejected", "linesSkipped", "linesValid", "summary"]}, "priority": {"type": "string"}, "parserCode": {"type": "string"}, "report_type": {"type": "string"}}, "required": ["date", "startDate", "event", "priority", "parserCode", "report_type"]}}}, "required": ["tuples", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"group": {"type": "object", "properties": {"Input_device_name": {"type": "string"}, "Line_0_color": {"type": "string"}, "Line_1_color": {"type": "string"}, "Line_2_color": {"type": "string"}, "Pulse_response__px_": {"type": "string"}, "React_to_audio": {"type": "string"}, "Rotation_velocity_factor": {"type": "string"}, "Scale_X": {"type": "string"}, "Scale_Y": {"type": "string"}, "Start_playing_on_activation": {"type": "string"}, "Velocity_factor": {"type": "string"}}, "required": ["Input_device_name", "Line_0_color", "Line_1_color", "Line_2_color", "Pulse_response__px_", "React_to_audio", "Rotation_velocity_factor", "Scale_X", "Scale_Y", "Start_playing_on_activation", "Velocity_factor"]}}, "required": ["group"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"group" : {"Input_device_name" : "Microphone (USB Audio CODEC )", "Line_0_color" : "255, 0, 0, 255", "Line_1_color" : "255, 136, 0, 255", "Line_2_color" : "255, 242, 0, 255", "Pulse_response__px_" : "23.44", "React_to_audio" : "1", "Rotation_velocity_factor" : "1", "Scale_X" : "1", "Scale_Y" : "1", "Start_playing_on_activation" : "1", "Velocity_factor" : "1"}}
json_instruct
{"type": "object", "properties": {"group": {"type": "object", "properties": {"Input_device_name": {"type": "string"}, "Line_0_color": {"type": "string"}, "Line_1_color": {"type": "string"}, "Line_2_color": {"type": "string"}, "Pulse_response__px_": {"type": "string"}, "React_to_audio": {"type": "string"}, "Rotation_velocity_factor": {"type": "string"}, "Scale_X": {"type": "string"}, "Scale_Y": {"type": "string"}, "Start_playing_on_activation": {"type": "string"}, "Velocity_factor": {"type": "string"}}, "required": ["Input_device_name", "Line_0_color", "Line_1_color", "Line_2_color", "Pulse_response__px_", "React_to_audio", "Rotation_velocity_factor", "Scale_X", "Scale_Y", "Start_playing_on_activation", "Velocity_factor"]}}, "required": ["group"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"jquery-scrolltofixed-min.js": {"type": "string"}, "jquery-scrolltofixed.js": {"type": "string"}}, "required": ["jquery-scrolltofixed-min.js", "jquery-scrolltofixed.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery-scrolltofixed-min.js" : "sha512-ohXbv1eFvjIHMXG/jY057oHdBZ/jhthP1U3jES/nYyFdc9g6xBpjDjKIacGoPG6hY//xVQeqpWx8tNjexXWdqA==", "jquery-scrolltofixed.js" : "sha512-fS3qLHBBP+QjahTuh0E1C6P0JbNvVeZkqg53L7t96rOSDqIKrH12j1CSACkTkOmZNiAKS1a5JHLSqHlXHDJdmQ=="}
json_instruct
{"type": "object", "properties": {"jquery-scrolltofixed-min.js": {"type": "string"}, "jquery-scrolltofixed.js": {"type": "string"}}, "required": ["jquery-scrolltofixed-min.js", "jquery-scrolltofixed.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"no_of_atoms" : 252, "centre_of_mass" : [2.7844857051266968e-05, 12.851810480176258, 38.82091303186073], "maximum_diameter" : {"diameter" : 29.8020066794576, "atom_1" : 3, "atom_2" : 248}, "pore_diameter" : {"diameter" : 2.2745917173622767, "atom" : 173}, "pore_volume" : 6.161819644912443, "pore_diameter_opt" : {"diameter" : 2.2748303524360147, "atom_1" : 58, "centre_of_mass" : [0.00015047478819352523, 12.851726214182586, 38.820825619342166]}, "pore_volume_opt" : 6.163759220107673, "windows" : {"diameters" : [2.113546343158783, 2.112693928764737], "centre_of_mass" : [[0.0003290018396955687, 12.85165898649623, 39.627522539708515], [-1.3713015787475408e-05, 12.851647780340102, 38.029292348415]]}}
json_instruct
{"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 34, "n_trials" : 210, "objective" : "shaffer_on_cube", "white" : "ultraopt_forest", "black" : "hyperopt_atpe", "traceback" : ["passing", "passing"], "best_val" : [44.42978448204474, 40.57185423963675], "best_x" : [[0.645941498126045, 0.6880971955039883, 0.04078923826990066, 0.6350072732356908, 0.27553109990307634, 0.018615437790989398, 0.8767063065812808, 0.6304656353929069, 0.4425737661023573, 0.49219137338123686, 0.3411223179074875, 0.35517458817987146, 0.48997997113930003, 0.6481388063096505, 0.34218117922243174, 0.43231390791477187, 0.5412939670440156, 0.5440735408675983, 0.914407277113685, 0.7140646176445311, 0.8445927435198937, 0.8653056244450337, 0.6761005933257374, 0.6146827768923293, 0.320295009586377, 0.533778483043034, 0.48508457658556026, 0.7115409508297985, 0.34543438527362147, 0.19764448013651104, 0.50261690344565, 0.32112357969394845, 0.44849800838477316, 0.8486297841405234], [0.5325419711935843, 0.13855698368707103, 0.31459237119025996, 0.3521646216180352, 0.592234398539567, 0.42729998156970406, 0.5536982234633246, 0.6247994066573288, 0.3311549880268308, 0.25612034077591295, 0.2799213379226146, 0.5312047709264223, 0.4943231157008229, 0.9343427297275924, 0.6364923558671425, 0.3933662140131987, 0.2169926427591959, 0.7280718434243852, 0.7319155328264082, 0.2451793394442804, 0.4711971196607158, 0.6919225148388596, 0.45393823392119587, 0.41320117159250386, 0.3080926278968612, 0.5511095561528944, 0.739824607898927, 0.5216023076854701, 0.29515174091263413, 0.30322359577891345, 0.5764499710755948, 0.4061468046145627, 0.5543646912902532, 0.7423230052596251]], "feval_count" : [210, 210], "n_trials_instructed" : [210, 210], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "hyperopt_atpe_cube", "loser" : "ultraopt_forest_cube"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 34198, "cartId" : "adc20a00-d9a1-4b8a-a89e-900a7744e0c5", "preferredProducts" : [], "productReviews" : [{"productId" : 1301, "reviewText" : "This Concrete works quite well. It romantically improves my golf by a lot.", "reviewDate" : "2018-12-11T02:33:07.4213827+02:00"}, {"productId" : 3028, "reviewText" : "talk about irritation.", "reviewDate" : "2019-05-21T13:14:17.439464+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u660e\u6bc5\u5de5\u696d\u793e", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "65005090", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u6a39\u6797\u5340\u4e2d\u83ef\u8def375-1\u865f1\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u6a39\u6797\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u9673\u6210\u5bcc", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "78579463", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u7368\u8cc7", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1050711", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["251\u91d1\u5c6c\u624b\u5de5\u5177\u53ca\u6a21\u5177", "259\u5176\u4ed6\u91d1\u5c6c\u88fd\u54c1"], "egis" : null}
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$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" : "6209100005", "district_id" : "6209100", "name" : "RANGAN SURAI"}
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#"}
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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "h2", "version" : "0.0.1", "description" : "H2 geometry and spatial indexing library on a sphere", "main" : "Cell.js", "directories" : {"test" : "test"}, "dependencies" : {}, "devDependencies" : {"mocha" : "^6.2.0"}, "scripts" : {"test" : "mocha"}, "keywords" : ["s2", "h2", "lat", "lng", "latitude", "longitude"], "author" : "Cl\u00e9ment Wiz <[email protected]>", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"home.hello": {"type": "string"}, "home.description": {"type": "string"}, "home.use": {"type": "string"}, "internal.offline": {"type": "string"}}, "required": ["home.hello", "home.description", "home.use", "internal.offline"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"home.hello" : "Ol\u00e1", "home.description" : "Esta \u00e9 a vers\u00e3o de produ\u00e7\u00e3o do boilerplate frontend da Nexpy. Este boilerplate \u00e9 baseado em Typescript e Next.js e \u00e9 de c\u00f3digo aberto.", "home.use" : "Voc\u00ea pode us\u00e1-lo em seus projetos e modelos, ou contribuir com melhorias e novos recursos!", "internal.offline" : "Parece que voc\u00ea est\u00e1 offline. Verifique a sua conex\u00e3o e tente novamente."}
json_instruct
{"type": "object", "properties": {"home.hello": {"type": "string"}, "home.description": {"type": "string"}, "home.use": {"type": "string"}, "internal.offline": {"type": "string"}}, "required": ["home.hello", "home.description", "home.use", "internal.offline"], "$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"}, "comment": {"type": "string"}, "packageName": {"type": "string"}, "email": {"type": "string"}, "dependentChangeType": {"type": "string"}, "date": {"type": "string"}}, "required": ["type", "comment", "packageName", "email", "dependentChangeType", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "prerelease", "comment" : "Create nuget package for Microsoft.ReacNative.Cxx", "packageName" : "react-native-windows", "email" : "[email protected]", "dependentChangeType" : "patch", "date" : "2020-07-09T20:58:33.492Z"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "comment": {"type": "string"}, "packageName": {"type": "string"}, "email": {"type": "string"}, "dependentChangeType": {"type": "string"}, "date": {"type": "string"}}, "required": ["type", "comment", "packageName", "email", "dependentChangeType", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}