input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"kriswallsmith/assetic": {"type": "string"}}, "required": ["kriswallsmith/assetic"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"kriswallsmith/assetic" : "^1.4"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"kriswallsmith/assetic": {"type": "string"}}, "required": ["kriswallsmith/assetic"]}}, "required": ["require"], "$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"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "\u54fa\u4e73\u671f\u7684\u5c0f\u5c11\u5987\u9732\u8138\u989c\u503c\u5f88\u9ad8\uff0c\u60c5\u8da3\u809a\u515c\u8bf1\u60d1\u64a9\u4eba\uff0c\u542c\u72fc\u53cb\u6307\u6325\u8131\u5149\u5149\u81ea\u6170\u9a9a\u7a74\u547b\u541f\u8868\u60c5\u597d\u9a9a\uff0c\u6324\u5976\u6c34\u7ed9\u72fc\u53cb\u559d", "size" : 325243018, "link" : "https://streamtape.com/e/92QO00V98xTa8L4", "created_at" : "2022\u5e7404\u670810\u65e5 07:21:53", "downloads" : 0, "linkid" : "92QO00V98xTa8L4", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "\u54fa\u4e73\u671f\u7684\u5c0f\u5c11\u5987\u9732\u8138\u989c\u503c\u5f88\u9ad8\uff0c\u60c5\u8da3\u809a\u515c\u8bf1\u60d1\u64a9\u4eba\uff0c\u542c\u72fc\u53cb\u6307\u6325\u8131\u5149\u5149\u81ea\u6170\u9a9a\u7a74\u547b\u541f\u8868\u60c5\u597d\u9a9a\uff0c\u6324\u5976\u6c34\u7ed9\u72fc\u53cb\u559d", "thumbUrl" : "https://thumb.tapecontent.net/thumb/92QO00V98xTa8L4/0ZXzp2k9OlUZov.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Achristodoulou\\Calendar\\": {"type": "string"}}, "required": ["Achristodoulou\\Calendar\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Achristodoulou\\Test\\": {"type": "string"}}, "required": ["Achristodoulou\\Test\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "minimum-stability", "license", "authors", "autoload", "require-dev", "autoload-dev", "scripts", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "achristodoulou/calendar", "description" : "A package that provides easy access to calendar functionality.", "minimum-stability" : "stable", "license" : "MIT", "authors" : [{"name" : "Andreas Christodoulou", "email" : "andreas22@gmail.com"}], "autoload" : {"psr-4" : {"Achristodoulou\\Calendar\\" : "src/"}}, "require-dev" : {"phpunit/phpunit" : "4.8.*"}, "autoload-dev" : {"psr-4" : {"Achristodoulou\\Test\\" : "tests"}}, "scripts" : {"test" : "phpunit"}, "extra" : {"branch-alias" : {"dev-master" : "1.0-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Achristodoulou\\Calendar\\": {"type": "string"}}, "required": ["Achristodoulou\\Calendar\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Achristodoulou\\Test\\": {"type": "string"}}, "required": ["Achristodoulou\\Test\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "minimum-stability", "license", "authors", "autoload", "require-dev", "autoload-dev", "scripts", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"@context": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "orderID": {"type": "string"}, "productInOrder": {"type": "array", "items": {"type": "string"}}}, "required": ["@context", "type", "orderID", "productInOrder"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"@context" : ["https://w3id.org/traceability/v1"], "type" : "EcommercePackingListItem", "orderID" : "https://vc.example.com/?queryID=AB06f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58597a", "productInOrder" : ["https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58599e"]}, {"@context" : ["https://w3id.org/traceability/v1"], "type" : "EcommercePackingListItem", "orderID" : "https://vc.example.com/?queryID=AB06f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58597a", "productInOrder" : ["https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58598a", "https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58599e"]}, {"@context" : ["https://w3id.org/traceability/v1"], "type" : "EcommercePackingListItem", "orderID" : "https://vc.example.com/?queryID=AB06f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58597a", "productInOrder" : ["https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58599e", "https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58598a", "https://vc.example.com/?queryID=7306f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58598a", "https://vc.example.com/?queryID=6206f1f744a781480c521902a1a1dbf5f1d01e7ea21daf483e7668817e58598a"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"@context": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "orderID": {"type": "string"}, "productInOrder": {"type": "array", "items": {"type": "string"}}}, "required": ["@context", "type", "orderID", "productInOrder"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "required": ["login", "id", "avatar_url", "html_url"]}, "html_url": {"type": "string"}, "description": {"type": "string"}, "fork": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "stargazers_count": {"type": "integer"}, "watchers_count": {"type": "integer"}, "forks_count": {"type": "integer"}, "forks": {"type": "integer"}, "watchers": {"type": "integer"}, "score": {"type": "integer"}}, "required": ["id", "name", "full_name", "owner", "html_url", "description", "fork", "created_at", "updated_at", "pushed_at", "stargazers_count", "watchers_count", "forks_count", "forks", "watchers", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 99396176, "name" : "Triple_Fetch-Kernel-Creds", "full_name" : "JosephShenton/Triple_Fetch-Kernel-Creds", "owner" : {"login" : "JosephShenton", "id" : 12966231, "avatar_url" : "https://avatars2.githubusercontent.com/u/12966231?v=4", "html_url" : "https://github.com/JosephShenton"}, "html_url" : "https://github.com/JosephShenton/Triple_Fetch-Kernel-Creds", "description" : "Attempt to steal kernelcredentials from launchd + task_t pointer (Based on: CVE-2017-7047)", "fork" : false, "created_at" : "2017-08-05T03:23:13Z", "updated_at" : "2020-01-27T21:17:28Z", "pushed_at" : "2017-08-05T09:21:56Z", "stargazers_count" : 3, "watchers_count" : 3, "forks_count" : 5, "forks" : 5, "watchers" : 3, "score" : 0}, {"id" : 99915573, "name" : "Triple_fetch", "full_name" : "q1f3/Triple_fetch", "owner" : {"login" : "q1f3", "id" : 9603950, "avatar_url" : "https://avatars2.githubusercontent.com/u/9603950?v=4", "html_url" : "https://github.com/q1f3"}, "html_url" : "https://github.com/q1f3/Triple_fetch", "description" : "This is an exploit for CVE-2017-7047, Works on 10.3.2 and below.", "fork" : false, "created_at" : "2017-08-10T11:24:47Z", "updated_at" : "2020-02-20T07:46:38Z", "pushed_at" : "2017-08-03T23:47:30Z", "stargazers_count" : 0, "watchers_count" : 0, "forks_count" : 1, "forks" : 1, "watchers" : 0, "score" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "required": ["login", "id", "avatar_url", "html_url"]}, "html_url": {"type": "string"}, "description": {"type": "string"}, "fork": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "stargazers_count": {"type": "integer"}, "watchers_count": {"type": "integer"}, "forks_count": {"type": "integer"}, "forks": {"type": "integer"}, "watchers": {"type": "integer"}, "score": {"type": "integer"}}, "required": ["id", "name", "full_name", "owner", "html_url", "description", "fork", "created_at", "updated_at", "pushed_at", "stargazers_count", "watchers_count", "forks_count", "forks", "watchers", "score"]}, "$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"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@chookslint/eslint-config": {"type": "string"}, "@chookslint/eslint-config-typescript": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@chookslint/eslint-config", "@chookslint/eslint-config-typescript", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "typescript"]}}, "required": ["name", "private", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chooks-eslint-config", "private" : true, "license" : "MIT", "devDependencies" : {"@chookslint/eslint-config" : "*", "@chookslint/eslint-config-typescript" : "*", "@types/node" : "^17.0.8", "@typescript-eslint/eslint-plugin" : "^5.9.1", "@typescript-eslint/parser" : "^5.9.1", "eslint" : "^8.6.0", "typescript" : "^4.5.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@chookslint/eslint-config": {"type": "string"}, "@chookslint/eslint-config-typescript": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@chookslint/eslint-config", "@chookslint/eslint-config-typescript", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "typescript"]}}, "required": ["name", "private", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "single_instance_allowed": {"type": "string"}}, "required": ["already_configured", "single_instance_allowed"]}, "error": {"type": "object", "properties": {"bad_dsn": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["bad_dsn", "unknown"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"dsn": {"type": "string"}}, "required": ["dsn"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["user"]}}, "required": ["abort", "error", "step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"data": {"type": "object", "properties": {"environment": {"type": "string"}, "event_custom_components": {"type": "string"}, "event_handled": {"type": "string"}, "event_third_party_packages": {"type": "string"}, "logging_event_level": {"type": "string"}, "logging_level": {"type": "string"}, "tracing": {"type": "string"}, "tracing_sample_rate": {"type": "string"}}, "required": ["environment", "event_custom_components", "event_handled", "event_third_party_packages", "logging_event_level", "logging_level", "tracing", "tracing_sample_rate"]}}, "required": ["data"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"already_configured" : "Sentry ya est\u00e1 configurado", "single_instance_allowed" : "Ya configurado. Solo es posible una \u00fanica configuraci\u00f3n."}, "error" : {"bad_dsn" : "DSN no v\u00e1lido", "unknown" : "Error inesperado"}, "step" : {"user" : {"data" : {"dsn" : "DSN"}, "description" : "Introduzca su DSN Sentry", "title" : "Sentry"}}}, "options" : {"step" : {"init" : {"data" : {"environment" : "Nombre opcional del entorno.", "event_custom_components" : "Env\u00eda eventos desde componentes personalizados", "event_handled" : "Enviar eventos controlados", "event_third_party_packages" : "Env\u00eda eventos desde paquetes de terceros", "logging_event_level" : "El nivel de registro Sentry registrar\u00e1 un evento para", "logging_level" : "El nivel de registro Sentry registrar\u00e1 registros como migas de pan para", "tracing" : "Habilitar el seguimiento del rendimiento", "tracing_sample_rate" : "Seguimiento de la frecuencia de muestreo; entre 0.0 y 1.0 (1.0 = 100%)"}}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "single_instance_allowed": {"type": "string"}}, "required": ["already_configured", "single_instance_allowed"]}, "error": {"type": "object", "properties": {"bad_dsn": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["bad_dsn", "unknown"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"dsn": {"type": "string"}}, "required": ["dsn"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["user"]}}, "required": ["abort", "error", "step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"data": {"type": "object", "properties": {"environment": {"type": "string"}, "event_custom_components": {"type": "string"}, "event_handled": {"type": "string"}, "event_third_party_packages": {"type": "string"}, "logging_event_level": {"type": "string"}, "logging_level": {"type": "string"}, "tracing": {"type": "string"}, "tracing_sample_rate": {"type": "string"}}, "required": ["environment", "event_custom_components", "event_handled", "event_third_party_packages", "logging_event_level", "logging_level", "tracing", "tracing_sample_rate"]}}, "required": ["data"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "CYPRUS", "frequency" : 79, "males" : "92.40506329113924 %", "females" : "7.59493670886076 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"sdr": {"type": "object", "properties": {"Difficulty Date": {"type": "string"}, "Unique Control #": {"type": "string"}, "Submitter Type": {"type": "string"}, "Submission Date": {"type": "string"}, "Submitter Designator": {"type": "string"}, "Registration #": {"type": "string"}}, "required": ["Difficulty Date", "Unique Control #", "Submitter Type", "Submission Date", "Submitter Designator", "Registration #"]}, "manufacturer": {"type": "object", "properties": {"text": {"type": "string"}, "value": {"type": "string"}}, "required": ["text", "value"]}}, "required": ["sdr", "manufacturer"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"sdr" : {"Difficulty Date" : "", "Unique Control #" : "2014FA0000055", "Submitter Type" : "B", "Submission Date" : "2/3/2014 11:09:51 AM", "Submitter Designator" : "", "Registration #" : ""}, "manufacturer" : {"text" : "AVIANW - AVIAN BALLOON SPOKANE WASHINGTON", "value" : "AVIANW"}}, {"sdr" : {"Difficulty Date" : "", "Unique Control #" : "2014FA0000054", "Submitter Type" : "B", "Submission Date" : "2/3/2014 11:04:02 AM", "Submitter Designator" : "", "Registration #" : ""}, "manufacturer" : {"text" : "AVIANW - AVIAN BALLOON SPOKANE WASHINGTON", "value" : "AVIANW"}}, {"sdr" : {"Difficulty Date" : "", "Unique Control #" : "95ZZZX2627", "Submitter Type" : "B", "Submission Date" : "3/26/2000 4:11:31 PM", "Submitter Designator" : "NQ2R", "Registration #" : "3823R"}, "manufacturer" : {"text" : "AVIANW - AVIAN BALLOON SPOKANE WASHINGTON", "value" : "AVIANW"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"sdr": {"type": "object", "properties": {"Difficulty Date": {"type": "string"}, "Unique Control #": {"type": "string"}, "Submitter Type": {"type": "string"}, "Submission Date": {"type": "string"}, "Submitter Designator": {"type": "string"}, "Registration #": {"type": "string"}}, "required": ["Difficulty Date", "Unique Control #", "Submitter Type", "Submission Date", "Submitter Designator", "Registration #"]}, "manufacturer": {"type": "object", "properties": {"text": {"type": "string"}, "value": {"type": "string"}}, "required": ["text", "value"]}}, "required": ["sdr", "manufacturer"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease two loaf pans.", "In a medium mixing bowl, combine flour, baking soda, salt, baking powder, nutmeg, allspice, cinnamon and cloves.", "In a large bowl with an electric mixer, blend sugar, oil and eggs. Stir in pumpkin. Slowly blend the flour mixture into pumpkin mixture. While blending the mixture add water incrementally. Pour the batter into two prepared loaf pans.", "Bake in a preheated 350 degrees F (175 degrees C) oven for 90 minutes. Let cool for 10 minutes before removing from the pans."], "image" : "https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=3865&h=2024&url=https%3A%2F%2Fimages.media-allrecipes.com%2Fuserphotos%2F5722114.jpg", "ingredients" : ["3\u2009\u00bd cups all-purpose flour", "2 teaspoons baking soda", "2 teaspoons salt", "1 teaspoon baking powder", "1 teaspoon ground nutmeg", "1 teaspoon ground allspice", "1 teaspoon ground cinnamon", "\u00bd teaspoon ground cloves", "3 cups white sugar", "1 cup canola oil", "4 eggs, beaten", "2 cups solid pack pumpkin puree", "\u2154 cup water"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Pumpkin Bread", "url" : "http://allrecipes.com/recipe/18392/pumpkin-bread/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"token": {"type": "string"}, "user": {"type": "string"}, "highlightsFolder": {"type": "string"}, "isConnected": {"type": "boolean"}, "template": {"type": "string"}, "syncOnBoot": {"type": "boolean"}, "dateTimeFormat": {"type": "string"}, "history": {"type": "object", "properties": {"totalArticles": {"type": "integer"}, "totalHighlights": {"type": "integer"}}, "required": ["totalArticles", "totalHighlights"]}, "syncedFiles": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "uri": {"type": "string"}}, "required": ["filename", "uri"]}}, "groups": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "public": {"type": "boolean"}, "type": {"type": "string"}, "selected": {"type": "boolean"}}, "required": ["id", "name", "public", "type", "selected"]}}, "lastSyncDate": {"type": "string"}}, "required": ["token", "user", "highlightsFolder", "isConnected", "template", "syncOnBoot", "dateTimeFormat", "history", "syncedFiles", "groups", "lastSyncDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"token" : "6879-4rUjESVcVqeJAXheAtbZV_YHawiia6q_gHL1Y6kGEUM", "user" : "acct:dbelveze@hypothes.is", "highlightsFolder" : "hypothesis", "isConnected" : true, "template" : "{% if is_new_article %}# {{title}}\n\n## source:\n{% if author %}- Author: [{{author}}]({{authorUrl}}){% endif %}\n- Title: {{title}}\n{% if url %}- Reference: {{url}}{% endif %}\n- Category: #article{% endif %}\n\n{% if is_new_article -%}## Highlights{%- endif %}\n{% for highlight in highlights -%}- {{highlight.text}} \u2014 [Updated on {{highlight.updated}}]({{highlight.incontext}})\n{% if highlight.tags | length %} - Tags: {% for tag in highlight.tags -%}#{{tag| replace(\" \", \"-\")}} {%- endfor %}{%- endif %}\n{% if highlight.annotation %} - annotation: {{highlight.annotation}}{%- endif -%}{%- endfor -%}", "syncOnBoot" : true, "dateTimeFormat" : "YYYY-MM-DD", "history" : {"totalArticles" : 2, "totalHighlights" : 3}, "syncedFiles" : [{"filename" : "Au Mexique, l\u2019avion de mauvais augure du Pr\u00e9sident.md", "uri" : "https%3A%2F%2Fwww.liberation.fr%2Finternational%2Famerique%2Fau-mexique-lavion-de-mauvais-augure-du-president-20211127_NEPQAAZOARFGNCCFGFZR75SY7E%2F"}, {"filename" : "Covid-19\u00a0 la sant\u00e9 publique comme laboratoire du contr\u00f4le social - AOC media - Analyse Opinion Critique.md", "uri" : "https%3A%2F%2Faoc.media%2Fanalyse%2F2021%2F11%2F23%2Fcovid-19-la-sante-publique-comme-laboratoire-du-controle-social%2F"}], "groups" : [{"id" : "__world__", "name" : "Public", "public" : true, "type" : "open", "selected" : true}], "lastSyncDate" : "2022-01-15T06:46:16.875Z"} | json_instruct | {"type": "object", "properties": {"token": {"type": "string"}, "user": {"type": "string"}, "highlightsFolder": {"type": "string"}, "isConnected": {"type": "boolean"}, "template": {"type": "string"}, "syncOnBoot": {"type": "boolean"}, "dateTimeFormat": {"type": "string"}, "history": {"type": "object", "properties": {"totalArticles": {"type": "integer"}, "totalHighlights": {"type": "integer"}}, "required": ["totalArticles", "totalHighlights"]}, "syncedFiles": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "uri": {"type": "string"}}, "required": ["filename", "uri"]}}, "groups": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "public": {"type": "boolean"}, "type": {"type": "string"}, "selected": {"type": "boolean"}}, "required": ["id", "name", "public", "type", "selected"]}}, "lastSyncDate": {"type": "string"}}, "required": ["token", "user", "highlightsFolder", "isConnected", "template", "syncOnBoot", "dateTimeFormat", "history", "syncedFiles", "groups", "lastSyncDate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[6435.0, 12870.0, 19305.0, 25740.0, 32175.0, 38610.0, 45045.0, 51480.0, 57915.0, 64350.0, 70785.0, 77220.0, 83655.0, 90090.0, 96525.0, 102960.0, 109395.0, 115830.0, 122265.0, 128700.0, 135135.0, 141570.0, 148005.0, 154440.0, 160875.0, 167310.0, 173745.0, 180180.0, 186615.0, 193050.0, 199485.0, 205920.0, 212355.0, 218790.0, 225225.0, 231660.0, 238095.0, 244530.0, 250965.0, 257400.0, 263835.0, 270270.0, 276705.0, 283140.0, 289575.0, 296010.0, 302445.0, 308880.0, 315315.0, 321750.0, 328185.0, 334620.0, 341055.0, 347490.0, 353925.0, 360360.0, 366795.0, 373230.0, 379665.0, 386100.0, 392535.0, 398970.0, 405405.0, 411840.0, 418275.0, 424710.0, 431145.0, 437580.0, 444015.0, 450450.0, 456885.0, 463320.0, 469755.0, 476190.0, 482625.0, 489060.0, 495495.0, 501930.0, 508365.0, 514800.0, 521235.0, 527670.0, 534105.0, 540540.0, 546975.0, 553410.0, 559845.0, 566280.0, 572715.0, 579150.0, 585585.0, 592020.0, 598455.0, 604890.0, 611325.0, 617760.0, 624195.0, 630630.0, 637065.0, 643500.0], [989732.0, 1979070.0, 2967169.0, 3970730.0, 4945732.0, 5943418.0, 6928102.0, 7916615.0, 8907460.0, 9898792.0, 10888237.0, 11875307.0, 12864930.0, 13852712.0, 14849313.0, 15835723.0, 16819417.0, 17808135.0, 18798386.0, 19792094.0, 20782808.0, 21776136.0, 22755642.0, 23752406.0, 24732089.0, 25732709.0, 26707537.0, 27707477.0, 28700957.0, 29693330.0, 30677730.0, 31659593.0, 32665929.0, 33639363.0, 34646266.0, 35618083.0, 36633602.0, 37617613.0, 38602927.0, 39744729.0, 40575615.0, 41561264.0, 42547273.0, 43542690.0, 44536941.0, 45532588.0, 46501233.0, 47480110.0, 48499900.0, 49485819.0, 50497114.0, 51441862.0, 52445758.0, 53427806.0, 54433864.0, 55425478.0, 56419254.0, 57387051.0, 58402707.0, 59394126.0, 60541061.0, 61330414.0, 62352378.0, 63342933.0, 64325233.0, 65313915.0, 66320839.0, 67299420.0, 68280623.0, 69254278.0, 70246501.0, 71236977.0, 72223554.0, 73221222.0, 74218144.0, 75387620.0, 76198029.0, 77192379.0, 78198973.0, 79184561.0, 80152533.0, 81116177.0, 82109189.0, 83119094.0, 84083365.0, 85095107.0, 86105351.0, 87690398.0, 88240603.0, 89054573.0, 90036286.0, 91049713.0, 92046541.0, 93000913.0, 93998071.0, 94981749.0, 95991115.0, 96985979.0, 97996043.0, 99116882.0]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}}, "required": ["bootstrap", "font-awesome"]}}, "required": ["name", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pool", "devDependencies" : {"bootstrap" : "~3.3.7", "font-awesome" : "fontawesome#~4.7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}}, "required": ["bootstrap", "font-awesome"]}}, "required": ["name", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "89759031", "name" : "Cooper Drive", "nodes" : [{"type" : "node", "id" : 1040135366, "lat" : 52.3169765, "lon" : -0.6993799}, {"type" : "node", "id" : 1040135373, "lat" : 52.3169845, "lon" : -0.6990158}, {"type" : "node", "id" : 1040135446, "lat" : 52.3169407, "lon" : -0.6983071}, {"type" : "node", "id" : 1040135474, "lat" : 52.3168613, "lon" : -0.7001927}, {"type" : "node", "id" : 1040135504, "lat" : 52.3169646, "lon" : -0.699575}, {"type" : "node", "id" : 1040135575, "lat" : 52.3169725, "lon" : -0.6985737}, {"type" : "node", "id" : 1040135617, "lat" : 52.3169169, "lon" : -0.6999131}, {"type" : "node", "id" : 1040135645, "lat" : 52.3168056, "lon" : -0.6975789}, {"type" : "node", "id" : 1040135691, "lat" : 52.3169845, "lon" : -0.6988338}, {"type" : "node", "id" : 1040135783, "lat" : 52.316897, "lon" : -0.6980015}, {"type" : "node", "id" : 1040135853, "lat" : 52.3169845, "lon" : -0.6990808}], "volunteer_postcode" : "NN8 4UW", "closest_distance" : 25} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "licenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dpd-feeder", "version" : "0.1.2", "description" : "import json into your deployd resources", "main" : "index.js", "dependencies" : {}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git://github.com/Qwal/dpd-feeder.git"}, "keywords" : ["deployd", "dpd", "json"], "author" : "Damian Kowalski", "licenses" : [{"type" : "MIT", "url" : "https://github.com/Qwal/dpd-feeder/blob/master/LICENSE"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "licenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "build:sm": {"type": "string"}, "db:migrate": {"type": "string"}, "db:rb": {"type": "string"}, "db:mc": {"type": "string"}}, "required": ["start", "build", "build:sm", "db:migrate", "db:rb", "db:mc"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "knex": {"type": "string"}, "mysql2": {"type": "string"}, "nodemon": {"type": "string"}, "objection": {"type": "string"}, "request": {"type": "string"}, "request-promise-native": {"type": "string"}}, "required": ["express", "knex", "mysql2", "nodemon", "objection", "request", "request-promise-native"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/knex": {"type": "string"}, "@types/mysql": {"type": "string"}, "@types/node": {"type": "string"}, "@types/request": {"type": "string"}, "@types/request-promise-native": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@types/knex", "@types/mysql", "@types/node", "@types/request", "@types/request-promise-native", "ts-node", "typescript"]}}, "required": ["version", "license", "author", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.0.1", "license" : "MIT", "author" : "Eliran Levi", "scripts" : {"start" : "nodemon", "build" : "tsc", "build:sm" : "tsc --sourcemap", "db:migrate" : "knex migrate:latest", "db:rb" : "knex migrate:rollback", "db:mc" : "knex migrate:make"}, "dependencies" : {"express" : "^4.16.4", "knex" : "^0.19.5", "mysql2" : "^1.6.1", "nodemon" : "^1.18.5", "objection" : "^1.4.0", "request" : "^2.88.0", "request-promise-native" : "^1.0.5"}, "devDependencies" : {"@types/express" : "^4.16.0", "@types/knex" : "^0.14.26", "@types/mysql" : "^2.15.5", "@types/node" : "^10.12.0", "@types/request" : "^2.47.1", "@types/request-promise-native" : "^1.0.15", "ts-node" : "^7.0.1", "typescript" : "^3.1.3"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "build:sm": {"type": "string"}, "db:migrate": {"type": "string"}, "db:rb": {"type": "string"}, "db:mc": {"type": "string"}}, "required": ["start", "build", "build:sm", "db:migrate", "db:rb", "db:mc"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "knex": {"type": "string"}, "mysql2": {"type": "string"}, "nodemon": {"type": "string"}, "objection": {"type": "string"}, "request": {"type": "string"}, "request-promise-native": {"type": "string"}}, "required": ["express", "knex", "mysql2", "nodemon", "objection", "request", "request-promise-native"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/knex": {"type": "string"}, "@types/mysql": {"type": "string"}, "@types/node": {"type": "string"}, "@types/request": {"type": "string"}, "@types/request-promise-native": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@types/knex", "@types/mysql", "@types/node", "@types/request", "@types/request-promise-native", "ts-node", "typescript"]}}, "required": ["version", "license", "author", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"beacon": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "beaconMessage": {"type": "string"}, "validPackets": {"type": "integer"}, "rxErrorWrongSize": {"type": "integer"}, "rxErrorGolayFailed": {"type": "integer"}, "rxErrorWrongSignature": {"type": "integer"}, "rxErrorInvalidSerial": {"type": "integer"}, "obcComTrxErrorStatistic": {"type": "integer"}, "ackInfo": {"type": "array", "items": {"type": "object", "properties": {"serial": {"type": "integer"}, "rssi": {"type": "number"}}, "required": ["serial", "rssi"]}}}, "required": ["timestamp", "beaconMessage", "validPackets", "rxErrorWrongSize", "rxErrorGolayFailed", "rxErrorWrongSignature", "rxErrorInvalidSerial", "obcComTrxErrorStatistic", "ackInfo"]}, "beginSample": {"type": "integer"}, "beginMillis": {"type": "integer"}}, "required": ["beacon", "beginSample", "beginMillis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"beacon" : {"timestamp" : 1583459671, "beaconMessage" : "First operating 1PQ satellite in space!", "validPackets" : 59, "rxErrorWrongSize" : 0, "rxErrorGolayFailed" : 0, "rxErrorWrongSignature" : 1, "rxErrorInvalidSerial" : 11, "obcComTrxErrorStatistic" : 4299, "ackInfo" : [{"serial" : 3082, "rssi" : -94.0}, {"serial" : 3081, "rssi" : -93.5}, {"serial" : 3080, "rssi" : -92.0}]}, "beginSample" : 0, "beginMillis" : 0} | json_instruct | {"type": "object", "properties": {"beacon": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "beaconMessage": {"type": "string"}, "validPackets": {"type": "integer"}, "rxErrorWrongSize": {"type": "integer"}, "rxErrorGolayFailed": {"type": "integer"}, "rxErrorWrongSignature": {"type": "integer"}, "rxErrorInvalidSerial": {"type": "integer"}, "obcComTrxErrorStatistic": {"type": "integer"}, "ackInfo": {"type": "array", "items": {"type": "object", "properties": {"serial": {"type": "integer"}, "rssi": {"type": "number"}}, "required": ["serial", "rssi"]}}}, "required": ["timestamp", "beaconMessage", "validPackets", "rxErrorWrongSize", "rxErrorGolayFailed", "rxErrorWrongSignature", "rxErrorInvalidSerial", "obcComTrxErrorStatistic", "ackInfo"]}, "beginSample": {"type": "integer"}, "beginMillis": {"type": "integer"}}, "required": ["beacon", "beginSample", "beginMillis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/.git": {"type": "boolean"}, "**/.svn": {"type": "boolean"}, "**/.hg": {"type": "boolean"}, "**/CVS": {"type": "boolean"}, "**/.DS_Store": {"type": "boolean"}, "**/Thumbs.db": {"type": "boolean"}, "**/.github": {"type": "boolean"}, "**/node_modules": {"type": "boolean"}, "**/dist": {"type": "boolean"}, "**/.yarn": {"type": "boolean"}, "**/README.content": {"type": "boolean"}, "**/.prettier**": {"type": "boolean"}, "**/package-lock.json": {"type": "boolean"}, "**/tsconfig.json": {"type": "boolean"}}, "required": ["**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/Thumbs.db", "**/.github", "**/node_modules", "**/dist", "**/.yarn", "**/README.content", "**/.prettier**", "**/package-lock.json", "**/tsconfig.json"]}, "files.associations": {"type": "object", "properties": {"*.env": {"type": "string"}}, "required": ["*.env"]}}, "required": ["files.exclude", "files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files.exclude" : {"**/.git" : true, "**/.svn" : true, "**/.hg" : true, "**/CVS" : true, "**/.DS_Store" : true, "**/Thumbs.db" : true, "**/.github" : true, "**/node_modules" : true, "**/dist" : true, "**/.yarn" : true, "**/README.content" : true, "**/.prettier**" : true, "**/package-lock.json" : true, "**/tsconfig.json" : true}, "files.associations" : {"*.env" : "env"}} | json_instruct | {"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/.git": {"type": "boolean"}, "**/.svn": {"type": "boolean"}, "**/.hg": {"type": "boolean"}, "**/CVS": {"type": "boolean"}, "**/.DS_Store": {"type": "boolean"}, "**/Thumbs.db": {"type": "boolean"}, "**/.github": {"type": "boolean"}, "**/node_modules": {"type": "boolean"}, "**/dist": {"type": "boolean"}, "**/.yarn": {"type": "boolean"}, "**/README.content": {"type": "boolean"}, "**/.prettier**": {"type": "boolean"}, "**/package-lock.json": {"type": "boolean"}, "**/tsconfig.json": {"type": "boolean"}}, "required": ["**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/Thumbs.db", "**/.github", "**/node_modules", "**/dist", "**/.yarn", "**/README.content", "**/.prettier**", "**/package-lock.json", "**/tsconfig.json"]}, "files.associations": {"type": "object", "properties": {"*.env": {"type": "string"}}, "required": ["*.env"]}}, "required": ["files.exclude", "files.associations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "unlockType": {"type": "integer"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}}, "required": ["hasIcon"]}, "scope": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "redacted", "unlockType", "displayProperties", "scope"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 10450, "hash" : 1523275602, "blacklisted" : false, "redacted" : false, "unlockType" : 0, "displayProperties" : {"hasIcon" : false}, "scope" : 0} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "unlockType": {"type": "integer"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}}, "required": ["hasIcon"]}, "scope": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "redacted", "unlockType", "displayProperties", "scope"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "protect-category": {"type": "string"}, "protect-images": {"type": "string"}, "protect-links": {"type": "string"}, "protect-ref": {"type": "string"}, "protect-simple": {"type": "string"}}, "required": ["@metadata", "protect-category", "protect-images", "protect-links", "protect-ref", "protect-simple"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Alvaro Vidal-Abarca"]}, "protect-category" : "Robot: Protegint totes les p\u00e0gines de la categoria %(cat)s", "protect-images" : "Robot: Protegint totes les imatges de la p\u00e0gina %(page)s", "protect-links" : "Robot: Protegint totes les p\u00e0gines que s'enllacen des de %(page)s", "protect-ref" : "Robot: Protegint totes les p\u00e0gines amb refer\u00e8ncia des de %(page)s", "protect-simple" : "Robot: Protegint una llista de fitxers."} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "protect-category": {"type": "string"}, "protect-images": {"type": "string"}, "protect-links": {"type": "string"}, "protect-ref": {"type": "string"}, "protect-simple": {"type": "string"}}, "required": ["@metadata", "protect-category", "protect-images", "protect-links", "protect-ref", "protect-simple"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"max": {"type": "array", "items": {"type": "number"}}, "centroid": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "numVertices": {"type": "integer"}, "min": {"type": "array", "items": {"type": "number"}}}, "required": ["max", "centroid", "id", "numVertices", "min"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"max" : [2.47119, 0.43, -0.850784], "centroid" : [2.241192500000001, 0.1779999999999999, -1.0807834500000004], "id" : "de2d9b57b6bd695c6ef50a3361f29610", "numVertices" : 120, "min" : [2.01119, 0.0, -1.31078]} | json_instruct | {"type": "object", "properties": {"max": {"type": "array", "items": {"type": "number"}}, "centroid": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "numVertices": {"type": "integer"}, "min": {"type": "array", "items": {"type": "number"}}}, "required": ["max", "centroid", "id", "numVertices", "min"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "This presentation was recorded at GOTO Chicago 2016\nhttp://gotochgo.com\n\nJohn Downey - Security Lead at Braintree\n\nABSTRACT\nAs developers we tend do a poor job of implementing cryptography and other security measures in our systems. Often the primitives used are out of date and overlook very subtle flaws. These mistakes lead to systems that are hopelessly insecure despite our [...]\n\nDownload slides and read the full abstract here:\nhttp://gotocon.com/chicago-2016/presentation/Cryptography%20Pitfalls\n\nhttps://twitter.com/gotochgo\nhttps://www.facebook.com/GOTOConference\nhttp://gotocon.com", "favorite" : "0", "length" : "44:28", "likes" : "37", "recorded" : "2016-05-23", "speakers" : ["john-downey"], "tags" : [], "thumbnail_url" : "https://i.ytimg.com/vi/nucBqQLHv-A/hqdefault.jpg", "title" : "Cryptography Pitfalls", "videos" : [{"code" : "nucBqQLHv-A", "type" : "youtube"}], "views" : "1235"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "type"]}}, "views": {"type": "string"}}, "required": ["description", "favorite", "length", "likes", "recorded", "speakers", "tags", "thumbnail_url", "title", "videos", "views"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "ghcn": {"type": "string"}}, "required": ["wmo", "ghcn"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "34737", "name" : {"en" : "Kuscevskaja"}, "country" : "RU", "region" : "KDA", "identifiers" : {"wmo" : "34737", "ghcn" : "RSM00034737"}, "location" : {"latitude" : 46.5333, "longitude" : 39.6167, "elevation" : 14}, "timezone" : "Europe/Volgograd"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "ghcn": {"type": "string"}}, "required": ["wmo", "ghcn"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$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"}, "objects": {"type": "object", "properties": {"E01006225": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01006225"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01006225" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00031557", "LAD11CD" : "E08000010"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00031558", "LAD11CD" : "E08000010"}, "arcs" : [[4, -1, 5, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00031565", "LAD11CD" : "E08000010"}, "arcs" : [[-8, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00031568", "LAD11CD" : "E08000010"}, "arcs" : [[9, 10, -3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00031569", "LAD11CD" : "E08000010"}, "arcs" : [[-6, -4, -11, 11]]}]}}, "arcs" : [[[5809, 5528], [-34, 353], [246, 76], [-306, 2904]], [[5715, 8861], [1586, 603], [183, -82], [14, -1159], [766, -39], [652, -762], [45, -938], [-1158, -296]], [[7803, 6188], [-47, 377], [-473, -147], [-26, -501], [111, -700], [229, -13], [168, -1382]], [[7765, 3822], [-249, -318], [-549, 510], [-257, 1816], [-901, -302]], [[3929, 8831], [966, -366], [820, 396]], [[5809, 5528], [82, -839], [-550, -1474], [728, -3037]], [[6069, 178], [-986, -125], [-386, -53], [-486, 110], [4, 737], [-419, 752]], [[3796, 1599], [476, 1412], [-287, 2904], [-458, -18], [64, 484], [601, 488], [-344, 1369], [81, 593]], [[3796, 1599], [-2703, 6384], [-472, 178], [-73, 1501], [-548, 242], [1540, 95], [2011, -981], [378, -187]], [[7803, 6188], [24, -989], [278, -593], [317, 520], [591, -178], [77, -1399], [284, 73], [76, -1402], [-7, -467]], [[9443, 1753], [-454, 349], [-139, -298], [-69, 1027], [-916, -158], [-100, 1149]], [[9443, 1753], [556, -582], [-1811, -789], [-2119, -204]]], "transform" : {"scale" : [2.043432989612372e-06, 6.472573225244756e-07], "translate" : [-2.654145697838559, 53.48016567626751]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01006225": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01006225"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 1671010009, "parent" : 1671010, "name" : "KEMANG MANIS", "latitude" : null, "longitude" : null, "postal" : [30144], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PRODUCT_NAME" : "Nesly white conditioner", "MANUFACTURER" : "Nescon Kenya Ltd", "BRANDNAME" : "", "WEIGHT" : ""} | json_instruct | {"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublish", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"download-github-repo": {"type": "string"}, "rimraf": {"type": "string"}, "ncp": {"type": "string"}, "mkdirp": {"type": "string"}, "async": {"type": "string"}}, "required": ["download-github-repo", "rimraf", "ncp", "mkdirp", "async"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}}, "required": ["grunt", "grunt-contrib-jshint", "grunt-contrib-nodeunit"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "playerglobal", "version" : "0.1.9", "description" : "A Node.js module wrapper for downloading/installing ALL versions of the \"playerglobal.swc\" API library in order to target all modern versions of Flash Player.", "main" : "index.js", "scripts" : {"prepublish" : "node prepublish.js", "test" : "grunt travis --verbose"}, "repository" : {"type" : "git", "url" : "git://github.com/JamesMGreene/node-playerglobal.git"}, "keywords" : ["playerglobal", "playerglobal.swc", "flash", "flashplayer", "swf", "flex", "build", "download", "install"], "author" : {"name" : "James M. Greene", "email" : "james.m.greene@gmail.com", "url" : "http://greene.io/"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/JamesMGreene/node-playerglobal/issues"}, "homepage" : "https://github.com/JamesMGreene/node-playerglobal", "dependencies" : {"download-github-repo" : "^0.1.1", "rimraf" : "^2.2.6", "ncp" : "^0.5.0", "mkdirp" : "^0.3.5", "async" : "^0.6.2"}, "devDependencies" : {"grunt" : "^0.4.4", "grunt-contrib-jshint" : "^0.9.2", "grunt-contrib-nodeunit" : "^0.3.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublish", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"download-github-repo": {"type": "string"}, "rimraf": {"type": "string"}, "ncp": {"type": "string"}, "mkdirp": {"type": "string"}, "async": {"type": "string"}}, "required": ["download-github-repo", "rimraf", "ncp", "mkdirp", "async"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}}, "required": ["grunt", "grunt-contrib-jshint", "grunt-contrib-nodeunit"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "generate": {"type": "string"}}, "required": ["dev", "build", "serve", "generate"]}, "dependencies": {"type": "object", "properties": {"@urql/devtools": {"type": "string"}, "@urql/vue": {"type": "string"}, "graphql": {"type": "string"}, "jwt-decode": {"type": "string"}, "primeflex": {"type": "string"}, "primeicons": {"type": "string"}, "primevue": {"type": "string"}, "subscriptions-transport-ws": {"type": "string"}, "vue": {"type": "string"}, "vue-router": {"type": "string"}}, "required": ["@urql/devtools", "@urql/vue", "graphql", "jwt-decode", "primeflex", "primeicons", "primevue", "subscriptions-transport-ws", "vue", "vue-router"]}, "devDependencies": {"type": "object", "properties": {"@graphql-codegen/cli": {"type": "string"}, "@graphql-codegen/typescript": {"type": "string"}, "@graphql-codegen/typescript-operations": {"type": "string"}, "@graphql-codegen/typescript-vue-urql": {"type": "string"}, "@types/node": {"type": "string"}, "@types/ws": {"type": "string"}, "@vitejs/plugin-vue": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "sass": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}, "vue-tsc": {"type": "string"}}, "required": ["@graphql-codegen/cli", "@graphql-codegen/typescript", "@graphql-codegen/typescript-operations", "@graphql-codegen/typescript-vue-urql", "@types/node", "@types/ws", "@vitejs/plugin-vue", "@vue/compiler-sfc", "sass", "typescript", "vite", "vue-tsc"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vue", "version" : "0.0.0", "scripts" : {"dev" : "vite", "build" : "vue-tsc --noEmit && vite build", "serve" : "vite preview", "generate" : "graphql-codegen"}, "dependencies" : {"@urql/devtools" : "^2.0.3", "@urql/vue" : "0.4.3", "graphql" : "15.5.3", "jwt-decode" : "^3.1.2", "primeflex" : "3.0.1", "primeicons" : "4.1.0", "primevue" : "3.7.1", "subscriptions-transport-ws" : "0.9.19", "vue" : "^3.2.6", "vue-router" : "^4.0.11"}, "devDependencies" : {"@graphql-codegen/cli" : "^2.2.0", "@graphql-codegen/typescript" : "^2.2.2", "@graphql-codegen/typescript-operations" : "^2.1.4", "@graphql-codegen/typescript-vue-urql" : "^2.1.4", "@types/node" : "^16.9.1", "@types/ws" : "^7.4.7", "@vitejs/plugin-vue" : "1.6.2", "@vue/compiler-sfc" : "^3.2.6", "sass" : "^1.39.2", "typescript" : "4.4.2", "vite" : "2.5.8", "vue-tsc" : "0.2.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "generate": {"type": "string"}}, "required": ["dev", "build", "serve", "generate"]}, "dependencies": {"type": "object", "properties": {"@urql/devtools": {"type": "string"}, "@urql/vue": {"type": "string"}, "graphql": {"type": "string"}, "jwt-decode": {"type": "string"}, "primeflex": {"type": "string"}, "primeicons": {"type": "string"}, "primevue": {"type": "string"}, "subscriptions-transport-ws": {"type": "string"}, "vue": {"type": "string"}, "vue-router": {"type": "string"}}, "required": ["@urql/devtools", "@urql/vue", "graphql", "jwt-decode", "primeflex", "primeicons", "primevue", "subscriptions-transport-ws", "vue", "vue-router"]}, "devDependencies": {"type": "object", "properties": {"@graphql-codegen/cli": {"type": "string"}, "@graphql-codegen/typescript": {"type": "string"}, "@graphql-codegen/typescript-operations": {"type": "string"}, "@graphql-codegen/typescript-vue-urql": {"type": "string"}, "@types/node": {"type": "string"}, "@types/ws": {"type": "string"}, "@vitejs/plugin-vue": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "sass": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}, "vue-tsc": {"type": "string"}}, "required": ["@graphql-codegen/cli", "@graphql-codegen/typescript", "@graphql-codegen/typescript-operations", "@graphql-codegen/typescript-vue-urql", "@types/node", "@types/ws", "@vitejs/plugin-vue", "@vue/compiler-sfc", "sass", "typescript", "vite", "vue-tsc"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"inspectorFields": {"type": "string"}, "traversableIndexableVarIndexes": {"type": "string"}, "traversableInstVarIndexes": {"type": "string"}, "traverseWithMemory:seen:": {"type": "string"}}, "required": ["inspectorFields", "traversableIndexableVarIndexes", "traversableInstVarIndexes", "traverseWithMemory:seen:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"inspectorFields" : "lr 2/6/2010 11:52", "traversableIndexableVarIndexes" : "jf 2/21/2009 01:57", "traversableInstVarIndexes" : "jf 2/21/2009 01:55", "traverseWithMemory:seen:" : "jf 2/21/2009 01:56"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"inspectorFields": {"type": "string"}, "traversableIndexableVarIndexes": {"type": "string"}, "traversableInstVarIndexes": {"type": "string"}, "traverseWithMemory:seen:": {"type": "string"}}, "required": ["inspectorFields", "traversableIndexableVarIndexes", "traversableInstVarIndexes", "traverseWithMemory:seen:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"471011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "537062": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "339030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "4750XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "514120": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113121": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["471011", "count", "537062", "411012", "339030", "4750XX", "399021", "514120", "37201X", "N.A.//", "533030", "411011", "113121"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"471011" : {"count" : 1}, "count" : 48, "537062" : {"count" : 2}, "411012" : {"count" : 1}, "339030" : {"count" : 1}, "4750XX" : {"count" : 1}, "399021" : {"count" : 1}, "514120" : {"count" : 1}, "37201X" : {"count" : 2}, "N.A.//" : {"count" : 34}, "533030" : {"count" : 2}, "411011" : {"count" : 1}, "113121" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"471011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "537062": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "339030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "4750XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "514120": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113121": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["471011", "count", "537062", "411012", "339030", "4750XX", "399021", "514120", "37201X", "N.A.//", "533030", "411011", "113121"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "USERNAME", "password" : "PASSWORD"} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "coachella-valley-brewing-co", "name" : "Coachella Valley Brewing Co", "brewery_type" : "micro", "street" : "30-640 Gunther St", "city" : "Thousand Palms", "state" : "California", "postal_code" : "92276-2333", "website_url" : "http://www.cvbco.com", "phone" : "7603435973", "created_at" : "2018-07-24 01:32:53.936262", "updated_at" : "2018-08-23 23:26:52.131964", "country" : "United States", "longitude" : "-116.401697", "latitude" : "33.826202", "tags" : []}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Agoraphobia", "definitions" : ["Extreme or irrational fear of entering open or crowded places, of leaving one's own home, or of being in places from which escape is difficult."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Montesquieu", "circ" : "2\u00e8me circonscription", "dpt" : "Tarn-et-Garonne", "inscrits" : 613, "abs" : 288, "votants" : 325, "blancs" : 45, "nuls" : 12, "exp" : 268, "res" : [{"nuance" : "RDG", "nom" : "Mme Sylvia PINEL", "voix" : 152}, {"nuance" : "FN", "nom" : "M. Romain LOPEZ", "voix" : 116}]} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "11aa713f4b4a54b207fd5b7706441fa5e5b61da9"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-x62j-p92q-x3qm", "modified" : "2022-03-08T00:00:48Z", "published" : "2022-02-19T00:01:02Z", "aliases" : ["CVE-2022-24046"], "details" : "This vulnerability allows network-adjacent attackers to execute arbitrary code on affected installations of Sonos One Speaker prior to 3.4.1 (S2 systems) and 11.2.13 build 57923290 (S1 systems). Authentication is not required to exploit this vulnerability. The specific flaw exists within the anacapd daemon. The issue results from the lack of proper validation of user-supplied data, which can result in an integer underflow before writing to memory. An attacker can leverage this vulnerability to execute code in the context of root. Was ZDI-CAN-15828.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2022-24046"}, {"type" : "WEB", "url" : "https://www.zerodayinitiative.com/advisories/ZDI-22-260/"}], "database_specific" : {"cwe_ids" : ["CWE-191"], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "cordova": {"type": "object", "properties": {"platforms": {"type": "array", "items": {"type": "string"}}, "plugins": {"type": "object", "properties": {"cordova-plugin-whitelist": {"type": "object", "properties": {}, "required": []}, "cordova-plugin-personaly": {"type": "object", "properties": {}, "required": []}}, "required": ["cordova-plugin-whitelist", "cordova-plugin-personaly"]}}, "required": ["platforms", "plugins"]}, "dependencies": {"type": "object", "properties": {"cordova-android": {"type": "string"}, "cordova-ios": {"type": "string"}, "cordova-plugin-whitelist": {"type": "string"}, "cordova-plugin-personaly": {"type": "string"}}, "required": ["cordova-android", "cordova-ios", "cordova-plugin-whitelist", "cordova-plugin-personaly"]}, "devDependencies": {"type": "object", "properties": {"cordova": {"type": "string"}}, "required": ["cordova"]}}, "required": ["name", "version", "displayName", "cordova", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hello.personaly", "version" : "1.0.0", "displayName" : "Hello Personaly", "cordova" : {"platforms" : ["android", "ios"], "plugins" : {"cordova-plugin-whitelist" : {}, "cordova-plugin-personaly" : {}}}, "dependencies" : {"cordova-android" : "6.4.0", "cordova-ios" : "~4.5.3", "cordova-plugin-whitelist" : "^1.3.3", "cordova-plugin-personaly" : "~0.0.1"}, "devDependencies" : {"cordova" : "^7.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "cordova": {"type": "object", "properties": {"platforms": {"type": "array", "items": {"type": "string"}}, "plugins": {"type": "object", "properties": {"cordova-plugin-whitelist": {"type": "object", "properties": {}, "required": []}, "cordova-plugin-personaly": {"type": "object", "properties": {}, "required": []}}, "required": ["cordova-plugin-whitelist", "cordova-plugin-personaly"]}}, "required": ["platforms", "plugins"]}, "dependencies": {"type": "object", "properties": {"cordova-android": {"type": "string"}, "cordova-ios": {"type": "string"}, "cordova-plugin-whitelist": {"type": "string"}, "cordova-plugin-personaly": {"type": "string"}}, "required": ["cordova-android", "cordova-ios", "cordova-plugin-whitelist", "cordova-plugin-personaly"]}, "devDependencies": {"type": "object", "properties": {"cordova": {"type": "string"}}, "required": ["cordova"]}}, "required": ["name", "version", "displayName", "cordova", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200860005365000, "key" : "48c6b2eb2e94ab5d7213afcee708b869{\"background\":\"rgba(0,0,0,1)\",\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"trim\":false,\"toFormat\":\"png\",\"toFormatBase64\":\"\",\"cropFocus\":17,\"fit\":\"cover\",\"width\":20,\"height\":15}", "val" : {"src" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAPCAYAAADkmO9VAAAACXBIWXMAAAsTAAALEwEAmpwYAAAC/0lEQVQ4y3VTbUsbQRC+2lLo72ihH/sLCko/9Z/0HwTBlw9aVBDfwDeINb4GMdw1+eCeJmh6m4hSE5OLiljje4xEFBXFmNs4fXabCymlA3M7uzc7M88zs9ru7m55Y2NDXF9fi7u7O3F/fy8eHx/F6emp2NvbE/v7+yKRSIhisSgymYz6J30fHh7EyclJCX4EiWsQrC800zSptbWVenp6qK2tjVZXV2lwcJBisRhNTk4S55zGx8cJyailpUX5NTU1UXd3NzU2Nip/yK9qQHy+I6t+cXFhFAoF4/n52Tg8PDSEEMbZ2Zlxe3tr5HI5AxWp/9ls1kBVhvSHHbi5uQkhxtdqQECObW1tcUDlgMV3dnY4gvFUKsWfnp745eUlB0T1//z8nOMSPzo6spBM2dC3lWB1UE2bmZlRUL1eLw0NDVF/fz+NjY1Rb28v+f1+8ng8NDExQeCPBgYGlE9nZycZhkEV+SwDAvpLVSHgmAcHBwwwGSAwZGaomuGcoRK2ubmpbHDI8vl81e/q6oqVy2WGIO+1WsHBItSUCsgmODTdPaBXbVw2j4+PTXCp9qDDdByHwX8RicLQCM4D2tramurm7Oys6q6E19fXRz6fT8GzLEt1squri0ZGRtR5R0cH6bquaJqamlKUYbwUfg2zxjEiFhpjoSEWeLMwShbOrUgkYkWjUdkAC0EtQFV+S0tLP2D/jMfjSewT6+vrCVCQRLyoGhuoDgi6XF0Fb3/tpQKiLkcMdhD6rkLZq0qH6xSHiE7Dw8PVzkooqI6am5tpfn5eUREIBEhOg4QsfaRgjD7K+w0NDS9q+qFp29vbmVAolF5eXrYXFhZswLTxpOyVlRUbT9LGS7HD4XAK3GZHR0fz6XQ6h0YUoB9q508qzjQNk+4rlUrfcPA/9UL90E+VAG9Q3WtVjVtVrSArtbe309zcnOqgfKsStqRhenqaUKWCiKQe6V9fX1/n3sVsav9IMpkUgOUEg0FHrowxB8Ps4FUoG50sVl7EF7cJmMk/8CDu6spv98FmRGziZRYAAAAASUVORK5CYII=", "width" : 20, "height" : 15, "aspectRatio" : 1.3333333333333333, "originalName" : "TargetingText.png"}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-88.540882, 42.619194], [-88.487174, 42.619293], [-88.486438, 42.620209], [-88.48454, 42.619106], [-88.478103, 42.619327], [-88.477362, 42.6256], [-88.471089, 42.629038], [-88.457267, 42.617839], [-88.450098, 42.615273], [-88.446995, 42.615226], [-88.445978, 42.614071], [-88.450535, 42.612649], [-88.461186, 42.611789], [-88.462631, 42.610792], [-88.463136, 42.609248], [-88.465685, 42.607559], [-88.474575, 42.604187], [-88.491246, 42.602348], [-88.498361, 42.59927], [-88.507052, 42.593885], [-88.508159, 42.587801], [-88.505577, 42.58825], [-88.507978, 42.586738], [-88.512388, 42.585787], [-88.513683, 42.582904], [-88.521482, 42.582834], [-88.529718, 42.586864], [-88.537323, 42.596817], [-88.540847, 42.600207], [-88.540882, 42.619194]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 81578}}]} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "react": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "deploy": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "react", "build", "test", "deploy", "eject"]}, "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": {"classnames": {"type": "string"}, "electron": {"type": "string"}, "firebase": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-router-dom": {"type": "string"}, "redux": {"type": "string"}}, "required": ["classnames", "electron", "firebase", "react", "react-bootstrap", "react-dom", "react-redux", "react-router-dom", "redux"]}, "devDependencies": {"type": "object", "properties": {"react-scripts": {"type": "string"}}, "required": ["react-scripts"]}}, "required": ["name", "version", "private", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "toss-stock", "version" : "0.0.1", "private" : true, "main" : "main.js", "scripts" : {"start" : "npm run build && electron .", "react" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "deploy" : "npm run build && firebase deploy", "eject" : "react-scripts eject"}, "repository" : {"type" : "git", "url" : "https://github.com/EdStudio/toss-stock.git"}, "keywords" : ["Electron", "React"], "author" : "Edmund Hung <edmund@edstud.io>", "license" : "MIT", "bugs" : {"url" : "https://github.com/EdStudio/toss-stock/issues"}, "homepage" : ".", "dependencies" : {"classnames" : "^2.2.5", "electron" : "^1.6.5", "firebase" : "^4.1.3", "react" : "^15.5.4", "react-bootstrap" : "^0.31.0", "react-dom" : "^15.5.4", "react-redux" : "^5.0.5", "react-router-dom" : "^4.1.1", "redux" : "^3.7.0"}, "devDependencies" : {"react-scripts" : "0.9.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "react": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "deploy": {"type": "string"}, "eject": {"type": "string"}}, "required": ["start", "react", "build", "test", "deploy", "eject"]}, "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": {"classnames": {"type": "string"}, "electron": {"type": "string"}, "firebase": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "react-router-dom": {"type": "string"}, "redux": {"type": "string"}}, "required": ["classnames", "electron", "firebase", "react", "react-bootstrap", "react-dom", "react-redux", "react-router-dom", "redux"]}, "devDependencies": {"type": "object", "properties": {"react-scripts": {"type": "string"}}, "required": ["react-scripts"]}}, "required": ["name", "version", "private", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0b1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.0b1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["1.0"], "meta" : {"description" : "A queriable source for accessing users and/or groups", "homepage" : "http://pypi.python.org/pypi/plone.principalsource", "license" : "GPL"}, "versions" : {"1.0" : {"sha256" : "3dbf9301c695a37e31b73e940d2bea67d9b0e5177a28ac692384481d54f41c50", "url" : "https://files.pythonhosted.org/packages/b9/b8/86d79f3271b81b4dc47a1b8adcccf6a64b75d601784f2f7e9a60f9d4dac0/plone.principalsource-1.0.zip"}, "1.0b1" : {"sha256" : "52b0c35c330490cee9776a3ad535279bebed679801448f51b40fee63d92b3755", "url" : "https://files.pythonhosted.org/packages/88/ab/13c7dc7d9636848480ecb3ddeda5e7c6ba792987b200ec3b20372291f46d/plone.principalsource-1.0b1.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.0b1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.0b1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"emergency-call": {"type": "object", "properties": {"src": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"destination": {"type": "string"}}, "required": ["destination"]}}, "required": ["src", "options"]}}, "required": ["emergency-call"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"emergency-call" : {"src" : ["apps/emergency-call/js/**/*.js"], "options" : {"destination" : "docs/emergency-call"}}} | json_instruct | {"type": "object", "properties": {"emergency-call": {"type": "object", "properties": {"src": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"destination": {"type": "string"}}, "required": ["destination"]}}, "required": ["src", "options"]}}, "required": ["emergency-call"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["#forge:planks/oak", "#forge:planks/spruce", "#forge:planks/birch", "#forge:planks/jungle", "#forge:planks/dark_oak", "#forge:planks/crimson", "#forge:planks/warped", "quark:azalea_planks"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"searchValue": {"type": "string"}}, "required": ["searchValue"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"searchValue" : "retrievePackagingHierarchy"} | json_instruct | {"type": "object", "properties": {"searchValue": {"type": "string"}}, "required": ["searchValue"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Commands", "image" : "reference-card/commands.png"}, {"title" : "Defense Tokens", "image" : "reference-card/defense-tokens.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "image": {"type": "string"}}, "required": ["title", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"author": {"type": "string"}, "bugs": {"type": "object", "properties": {"email": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "url"]}, "dependencies": {"type": "object", "properties": {"botbuilder": {"type": "string"}, "botkit": {"type": "string"}, "node-fetch": {"type": "string"}, "sms77-client": {"type": "string"}}, "required": ["botbuilder", "botkit", "node-fetch", "sms77-client"]}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "ts-node", "typescript"]}, "files": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "name": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "prepublishOnly", "test"]}, "types": {"type": "string"}, "version": {"type": "string"}}, "required": ["author", "bugs", "dependencies", "description", "devDependencies", "files", "homepage", "keywords", "license", "main", "name", "repository", "scripts", "types", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Andr\u00e9 Matthies <matthiez@gmail.com> (https://github.com/matthiez)", "bugs" : {"email" : "support@sms77.io", "url" : "https://github.com/sms77io/botbuilder-adapter-sms77-sms/issues"}, "dependencies" : {"botbuilder" : "^4.13.5", "botkit" : "^4.10.0", "node-fetch" : "^2.6.1", "sms77-client" : "^2.12.0"}, "description" : "Connect Botkit or BotBuilder to send SMS via Sms77", "devDependencies" : {"@types/node" : "^12.20.15", "ts-node" : "^10.0.0", "typescript" : "^4.3.2"}, "files" : ["/dist", "/src"], "homepage" : "https://github.com/sms77io/botbuilder-adapter-sms77-sms.", "keywords" : ["2fa", "gateway", "otp", "sms", "sms77"], "license" : "MIT", "main" : "./dist/index.js", "name" : "@sms77.io/botbuilder-adapter-sms", "repository" : {"type" : "git", "url" : "git+https://github.com/sms77io/botbuilder-adapter-sms77-sms.git"}, "scripts" : {"build" : "tsc", "prepublishOnly" : "npm run build", "test" : "echo \"Error: no test specified\" && exit 1"}, "types" : "./dist/index.d.ts", "version" : "1.0.0"} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "bugs": {"type": "object", "properties": {"email": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "url"]}, "dependencies": {"type": "object", "properties": {"botbuilder": {"type": "string"}, "botkit": {"type": "string"}, "node-fetch": {"type": "string"}, "sms77-client": {"type": "string"}}, "required": ["botbuilder", "botkit", "node-fetch", "sms77-client"]}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "ts-node", "typescript"]}, "files": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "name": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "prepublishOnly", "test"]}, "types": {"type": "string"}, "version": {"type": "string"}}, "required": ["author", "bugs", "dependencies", "description", "devDependencies", "files", "homepage", "keywords", "license", "main", "name", "repository", "scripts", "types", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "SELF": {"type": "string"}, "RESPONSE": {"type": "string"}, "RESPONSE_AWW": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "SELF", "RESPONSE", "RESPONSE_AWW"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"DESCRIPTION" : "Rendre un utilisateur muet dans ce serveur.", "USAGE" : "hug [@user]", "SELF" : "vient de se faire un c\u00e2lin. :hugging: *Ce n'est pas du tout bizarre.* :eyes:", "RESPONSE" : "vient de donner un c\u00e2lin \u00e0 {{user}} . :hugging:", "RESPONSE_AWW" : "vient de donner un c\u00e2lin \u00e0 {{user}} . :hugging: Aww!"} | json_instruct | {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "SELF": {"type": "string"}, "RESPONSE": {"type": "string"}, "RESPONSE_AWW": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "SELF", "RESPONSE", "RESPONSE_AWW"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Arbois", "url" : "arbois-1"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See locfinnei on Metamath](http://us.metamath.org/mpegif/locfinnei.html)"}], "names" : ["locfinnei"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cX", "#T_wceq", "#T_cuni", "#T_cJ", "#T_cA", "#T_wcel", "#T_clocfin", "#T_cfv", "#T_cJ", "#T_wa", "#T_cP", "#T_wcel", "#T_cX", "#T_wi", "#T_wrex--1", "#T_vn", "#T_wrex--2", "#T_cJ", "#T_cP", "#T_wcel", "#T_vn", "#T_wa", "#T_crab--1", "#T_vs", "#T_crab--2", "#T_cA", "#T_crab--3", "#T_vs", "#T_cin", "#T_vn", "#T_wne", "#T_c0", "#T_crab--4", "#T_wcel", "#T_cfn", "#T_cA", "#T_vn", "#T_vs", "#T_cJ", "#T_vn", "#T_cP", "#T_vn"], "metaLanguage" : "METAMATH", "remarks" : " A point covered by a locally finite cover has a neighborhood which intersects only finitely many elements of the cover. (Contributed by Jeff Hankins, 21-Jan-2010.) ", "statement" : "locfinnei.1 $e |- X = U. J $.\nlocfinnei $p |- ( ( A e. ( LocFin ` J ) /\\ P e. X ) -> E. n e. J ( P e. n /\\ { s e. A | ( s i^i n ) =/= (/) } e. Fin ) ) $.\n$d A n s $.\n$d J n $.\n$d P n $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x01653e20d03d450658740691087ea7155bcd9726", "tool" : "osiris", "start" : 1564637192.932454, "end" : 1564637198.0617557, "duration" : 5.12930154800415, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"thag1.116:0.1": {"type": "string"}, "thag1.116:0.2": {"type": "string"}, "thag1.116:0.3": {"type": "string"}, "thag1.116:0.4": {"type": "string"}, "thag1.116:1.1": {"type": "string"}, "thag1.116:1.2": {"type": "string"}, "thag1.116:1.3": {"type": "string"}, "thag1.116:1.4": {"type": "string"}}, "required": ["thag1.116:0.1", "thag1.116:0.2", "thag1.116:0.3", "thag1.116:0.4", "thag1.116:1.1", "thag1.116:1.2", "thag1.116:1.3", "thag1.116:1.4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"thag1.116:0.1" : "Verses of the Senior Monks", "thag1.116:0.2" : "The Book of the Ones", "thag1.116:0.3" : "Chapter Twelve", "thag1.116:0.4" : "P\u0101r\u0101pariya (1st)", "thag1.116:1.1" : "I\u2019ve given up the six spheres of sense-contact,", "thag1.116:1.2" : "my sense-doors are guarded and well restrained;", "thag1.116:1.3" : "I\u2019ve ejected the root of misery", "thag1.116:1.4" : "and attained the ending of defilements."} | json_instruct | {"type": "object", "properties": {"thag1.116:0.1": {"type": "string"}, "thag1.116:0.2": {"type": "string"}, "thag1.116:0.3": {"type": "string"}, "thag1.116:0.4": {"type": "string"}, "thag1.116:1.1": {"type": "string"}, "thag1.116:1.2": {"type": "string"}, "thag1.116:1.3": {"type": "string"}, "thag1.116:1.4": {"type": "string"}}, "required": ["thag1.116:0.1", "thag1.116:0.2", "thag1.116:0.3", "thag1.116:0.4", "thag1.116:1.1", "thag1.116:1.2", "thag1.116:1.3", "thag1.116:1.4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "boom": {"type": "string"}, "debug": {"type": "string"}, "glob": {"type": "string"}, "jsonfile": {"type": "string"}, "lodash": {"type": "string"}, "precision": {"type": "string"}}, "required": ["async", "boom", "debug", "glob", "jsonfile", "lodash", "precision"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-subset": {"type": "string"}, "mocha": {"type": "string"}, "standard": {"type": "string"}}, "required": ["chai", "chai-subset", "mocha", "standard"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "description", "version", "author", "keywords", "main", "dependencies", "devDependencies", "scripts", "license", "repository", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "relationize", "description" : "Takes a set of JSON Schema definitions and returns a relational database structure capable of storing compliant data.", "version" : "0.0.20", "author" : "Tim Needham", "keywords" : ["json", "schema", "pg", "postgres"], "main" : "./lib/index.js", "dependencies" : {"async" : "2.6.1", "boom" : "7.2.0", "debug" : "3.1.0", "glob" : "7.1.2", "jsonfile" : "4.0.0", "lodash" : "4.17.10", "precision" : "1.0.1"}, "devDependencies" : {"chai" : "4.1.2", "chai-subset" : "1.6.0", "mocha" : "5.2.0", "standard" : "11.0.1"}, "scripts" : {"lint" : "standard", "test" : "standard && mocha"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/wmfs/tymly"}, "bugs" : {"url" : "https://github.com/wmfs/tymly/issues"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "boom": {"type": "string"}, "debug": {"type": "string"}, "glob": {"type": "string"}, "jsonfile": {"type": "string"}, "lodash": {"type": "string"}, "precision": {"type": "string"}}, "required": ["async", "boom", "debug", "glob", "jsonfile", "lodash", "precision"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-subset": {"type": "string"}, "mocha": {"type": "string"}, "standard": {"type": "string"}}, "required": ["chai", "chai-subset", "mocha", "standard"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "test"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "description", "version", "author", "keywords", "main", "dependencies", "devDependencies", "scripts", "license", "repository", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oid" : "64q1kyi4k7rhhl00", "hafta" : 648, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "05/01/2015", "cekilisTuru" : "ON_NUMARA", "rakamlar" : "37#02#29#07#76#52#25#75#56#27#47#11#13#03#53#05#72#64#36#35#44#39", "rakamlarNumaraSirasi" : "02 - 03 - 05 - 07 - 11 - 13 - 25 - 27 - 29 - 35 - 36 - 37 - 39 - 44 - 47 - 52 - 53 - 56 - 64 - 72 - 75 - 76", "devretti" : true, "devirSayisi" : 2, "bilenKisiler" : [{"oid" : "64iocci4k7rhhh04", "kisiBasinaDusenIkramiye" : 3.35, "kisiSayisi" : 155969, "tur" : "$HIC"}, {"oid" : "64iocci4k7rhhh03", "kisiBasinaDusenIkramiye" : 3.65, "kisiSayisi" : 110043, "tur" : "$6_BILEN"}, {"oid" : "64iocci4k7rhhh02", "kisiBasinaDusenIkramiye" : 20.7, "kisiSayisi" : 18538, "tur" : "$7_BILEN"}, {"oid" : "64iocci4k7rhhh01", "kisiBasinaDusenIkramiye" : 108.55, "kisiSayisi" : 1857, "tur" : "$8_BILEN"}, {"oid" : "64iocci4k7rhhh00", "kisiBasinaDusenIkramiye" : 2237.15, "kisiSayisi" : 90, "tur" : "$9_BILEN"}, {"oid" : "64iocci4k7rhhg00", "kisiBasinaDusenIkramiye" : 565118.3, "kisiSayisi" : 0, "tur" : "$10_BILEN"}], "buyukIkrKazananIlIlceler" : [], "kibrisHasilati" : 15496, "devirTutari" : 263209.56, "kolonSayisi" : 5275008, "kdv" : 802298.44, "toplamHasilat" : 5275008, "hasilat" : 4472709.56, "sov" : 447270.96, "ikramiyeEH" : 4025438.5999999996, "buyukIkramiye" : 301907.89, "haftayaDevredenTutar" : 565118.3} | json_instruct | {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "Connection Number": {"type": "integer"}, "to": {"type": "string"}}, "required": ["from", "Connection Number", "to"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"from" : "ROW2", "Connection Number" : 0, "to" : "ROW1"}, {"from" : "ROW3", "Connection Number" : 1, "to" : "ROW2"}, {"from" : "ROW4", "Connection Number" : 2, "to" : "ROW3"}, {"from" : "ROW5", "Connection Number" : 3, "to" : "ROW4"}, {"from" : "ROW6", "Connection Number" : 4, "to" : "ROW5"}, {"from" : "ROW7", "Connection Number" : 5, "to" : "ROW6"}, {"from" : "ROW8", "Connection Number" : 6, "to" : "ROW7"}, {"from" : "ROW9", "Connection Number" : 7, "to" : "ROW8"}, {"from" : "ROW10", "Connection Number" : 8, "to" : "ROW9"}, {"from" : "ROW11", "Connection Number" : 9, "to" : "ROW10"}, {"from" : "ROW12", "Connection Number" : 10, "to" : "ROW11"}, {"from" : "ROW13", "Connection Number" : 11, "to" : "ROW12"}, {"from" : "ROW14", "Connection Number" : 12, "to" : "ROW13"}, {"from" : "ROW15", "Connection Number" : 13, "to" : "ROW14"}, {"from" : "ROW16", "Connection Number" : 14, "to" : "ROW15"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "Connection Number": {"type": "integer"}, "to": {"type": "string"}}, "required": ["from", "Connection Number", "to"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"almightysavo": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "string"}, "badge_starting": {"type": "string"}, "badge_3m": {"type": "string"}, "badge_6m": {"type": "string"}, "badge_12m": {"type": "string"}, "badge_24m": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}}, "required": ["code", "image_id"]}}}, "required": ["title", "channel_id", "link", "desc", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "set", "emotes"]}}, "required": ["almightysavo"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"almightysavo" : {"title" : "AlmightySavo", "channel_id" : 37180029, "link" : "http://twitch.tv/almightysavo", "desc" : null, "id" : "almightysavo", "first_seen" : "2016-05-06 08:10:03", "badge" : "https://static-cdn.jtvnw.net/badges/v1/768dba49-e61f-4288-b54d-4d15bf1a742c/1", "badge_starting" : "https://static-cdn.jtvnw.net/badges/v1/768dba49-e61f-4288-b54d-4d15bf1a742c/3", "badge_3m" : "https://static-cdn.jtvnw.net/badges/v1/def609d2-5190-494c-bc3e-5e37db2063b2/3", "badge_6m" : "https://static-cdn.jtvnw.net/badges/v1/7121f94d-1a8b-4252-9097-9f0f74f9b29b/3", "badge_12m" : "https://static-cdn.jtvnw.net/badges/v1/bc86272a-ff7d-419e-bbbe-bb596c29544e/3", "badge_24m" : null, "set" : 14884, "emotes" : [{"code" : "savo2J", "image_id" : 97610}, {"code" : "savoGF", "image_id" : 69431}, {"code" : "savoFIRE", "image_id" : 70269}, {"code" : "savoFACE", "image_id" : 67456}, {"code" : "savoWLCM", "image_id" : 67459}, {"code" : "savoRAIN", "image_id" : 68332}, {"code" : "savoSAVO", "image_id" : 67730}, {"code" : "savoBB", "image_id" : 74885}]}}} | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"almightysavo": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "string"}, "badge_starting": {"type": "string"}, "badge_3m": {"type": "string"}, "badge_6m": {"type": "string"}, "badge_12m": {"type": "string"}, "badge_24m": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}}, "required": ["code", "image_id"]}}}, "required": ["title", "channel_id", "link", "desc", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "set", "emotes"]}}, "required": ["almightysavo"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ping_description": {"type": "string"}}, "required": ["ping_description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ping_description" : "Mostra o atraso do bot para enviar uma mensagem."} | json_instruct | {"type": "object", "properties": {"ping_description": {"type": "string"}}, "required": ["ping_description"], "$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"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"connectionString": {"type": "string"}}, "required": ["connectionString"]}}, "required": ["type", "typeProperties"]}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DocumentDbLinkedService", "properties" : {"type" : "DocumentDb", "typeProperties" : {"connectionString" : "<AccountEndpoint=<>;AccountKey=<>;Database=<>"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"connectionString": {"type": "string"}}, "required": ["connectionString"]}}, "required": ["type", "typeProperties"]}}, "required": ["name", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "cost": {"type": "number"}, "description_short": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}}, "required": ["type"]}}, "required": ["name", "type", "version", "cost", "description_short", "description", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Compress", "type" : "Page", "version" : "0.0.1", "cost" : 5.99, "description_short" : "Serachable Compression", "description" : "", "files" : {"type" : ["compress.php"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "cost": {"type": "number"}, "description_short": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}}, "required": ["type"]}}, "required": ["name", "type", "version", "cost", "description_short", "description", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "exulceratory", "definition" : "Having a tendency to form ulcers; rendering ulcerous."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x98ac129fe2d74d55c79e47d8f43f033facf6a9f0", "tool" : "slither", "start" : 1563797428.8561802, "end" : 1563797432.8605058, "duration" : 4.00432562828064, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "problemchanges-category": {"type": "string"}}, "required": ["@metadata", "problemchanges-category"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["TRYPPN"]}, "problemchanges-category" : "\u0baa\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc1:"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "problemchanges-category": {"type": "string"}}, "required": ["@metadata", "problemchanges-category"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"some": {"type": "string"}, "link_to": {"type": "string"}}, "required": ["some", "link_to"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"some" : "stuff we do not care about", "link_to" : "http://api.example.com/follow/me"} | json_instruct | {"type": "object", "properties": {"some": {"type": "string"}, "link_to": {"type": "string"}}, "required": ["some", "link_to"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 3314, "redacted" : false, "hash" : 1150024238, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "65b3f8106429afc3e672", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"placeholderImage": {"type": "object", "properties": {"childImageSharp": {"type": "object", "properties": {"fluid": {"type": "object", "properties": {"base64": {"type": "string"}, "aspectRatio": {"type": "integer"}, "src": {"type": "string"}, "srcSet": {"type": "string"}, "sizes": {"type": "string"}}, "required": ["base64", "aspectRatio", "src", "srcSet", "sizes"]}}, "required": ["fluid"]}}, "required": ["childImageSharp"]}}, "required": ["placeholderImage"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"placeholderImage" : {"childImageSharp" : {"fluid" : {"base64" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAy/AAAMvwGsHpZjAAABdUlEQVQ4y62UPy9EQRTF51lBIlGoFAqJ7BcQlKpNEJ3/30AhUW+iINGoNAqaLTRqCtGoRIiIQoRSdBqRKAT73r51Rs4kx817dsVO8svMu3PnzL1z541zjVvkWtja2K+A7f+KFdiPgDpZpq39r2KRRHhDsRcQg6KJvqkWIlin2CoocXzSzDkVhA7ahylwB7poq5jUO83aX6MOqRaN/RakYDBv4RBYANNgDkyCXYodg3EwT/x4i3OnYIpr/NpFZuXepIpKjZFkzcU5dl84dy9ONZKImB9/kthsmLAPdn8cbpMfVYqkIpbmRF43vkFwxwtOmBSt2DtYA0vg0YgGv4TjWS/YC54zRMOuZSngWEZ0QfwVDATHI3PYuuuMCPZLEVPjd6ZXpyyCWgzfX/PO9YA9M6dBbKjgaEYqelYfTMkWSlMuqWA3eJBqJ0JVRLLmvP2JtfjxTFVyLmszHOoLFJ6qPrAPrsA5uGiA97kEB/JfR6185r81vgBh9c0IOAZEcAAAAABJRU5ErkJggg==", "aspectRatio" : 1, "src" : "/static/2df2ede3c88c26fe6850994014878269/b22c5/panier.png", "srcSet" : "/static/2df2ede3c88c26fe6850994014878269/b6dc2/panier.png 5w,\n/static/2df2ede3c88c26fe6850994014878269/16b07/panier.png 10w,\n/static/2df2ede3c88c26fe6850994014878269/b22c5/panier.png 20w,\n/static/2df2ede3c88c26fe6850994014878269/a74cd/panier.png 30w,\n/static/2df2ede3c88c26fe6850994014878269/0efb1/panier.png 40w,\n/static/2df2ede3c88c26fe6850994014878269/bc59e/panier.png 512w", "sizes" : "(max-width: 20px) 100vw, 20px"}}}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"placeholderImage": {"type": "object", "properties": {"childImageSharp": {"type": "object", "properties": {"fluid": {"type": "object", "properties": {"base64": {"type": "string"}, "aspectRatio": {"type": "integer"}, "src": {"type": "string"}, "srcSet": {"type": "string"}, "sizes": {"type": "string"}}, "required": ["base64", "aspectRatio", "src", "srcSet", "sizes"]}}, "required": ["fluid"]}}, "required": ["childImageSharp"]}}, "required": ["placeholderImage"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "test", "prepublishOnly"]}, "dependencies": {"type": "object", "properties": {"loglevel": {"type": "string"}, "node-sql-parser": {"type": "string"}}, "required": ["loglevel", "node-sql-parser"]}, "peerDependencies": {"type": "object", "properties": {"@push-rpc/core": {"type": "string"}, "binlog-triggers-mysql": {"type": "string"}}, "required": ["@push-rpc/core", "binlog-triggers-mysql"]}, "devDependencies": {"type": "object", "properties": {"@push-rpc/core": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "binlog-triggers-mysql": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "mysql": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@push-rpc/core", "@types/chai", "@types/mocha", "@types/node", "binlog-triggers-mysql", "chai", "mocha", "mysql", "prettier", "ts-node", "typescript"]}, "license": {"type": "string"}}, "required": ["name", "version", "main", "types", "files", "repository", "keywords", "author", "scripts", "dependencies", "peerDependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "live-query-mysql", "version" : "1.0.3", "main" : "dist/index.js", "types" : "dist/index.d.ts", "files" : ["dist"], "repository" : "https://github.com/vasyas/live-query-mysql.git", "keywords" : ["mysql", "binlog", "query", "nodejs", "live query"], "author" : "vasyas <vasyl@stashuk.com>", "scripts" : {"build" : "tsc", "test" : "mocha -r ts-node/register ./tests/**/*.ts", "prepublishOnly" : "yarn build"}, "dependencies" : {"loglevel" : "^1.7.0", "node-sql-parser" : "^3.6.0"}, "peerDependencies" : {"@push-rpc/core" : "^1.2.6", "binlog-triggers-mysql" : "^1.0.8"}, "devDependencies" : {"@push-rpc/core" : "^1.2.9", "@types/chai" : "^4.2.5", "@types/mocha" : "^8.0.0", "@types/node" : "^14.0.22", "binlog-triggers-mysql" : "^1.0.8", "chai" : "^4.2.0", "mocha" : "^8.1.3", "mysql" : "^2.18.1", "prettier" : "^2.1.2", "ts-node" : "^9.0.0", "typescript" : "^4.0.3"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "test", "prepublishOnly"]}, "dependencies": {"type": "object", "properties": {"loglevel": {"type": "string"}, "node-sql-parser": {"type": "string"}}, "required": ["loglevel", "node-sql-parser"]}, "peerDependencies": {"type": "object", "properties": {"@push-rpc/core": {"type": "string"}, "binlog-triggers-mysql": {"type": "string"}}, "required": ["@push-rpc/core", "binlog-triggers-mysql"]}, "devDependencies": {"type": "object", "properties": {"@push-rpc/core": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "binlog-triggers-mysql": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "mysql": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@push-rpc/core", "@types/chai", "@types/mocha", "@types/node", "binlog-triggers-mysql", "chai", "mocha", "mysql", "prettier", "ts-node", "typescript"]}, "license": {"type": "string"}}, "required": ["name", "version", "main", "types", "files", "repository", "keywords", "author", "scripts", "dependencies", "peerDependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "provider": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "fax", "phone", "email", "provider", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Grundschule Haseldorfer Marsch", "id" : "SH-0702507", "address" : "Kamperrege 1, 25489 Haseldorf", "school_type" : "Grundschule", "legal_status" : 1, "fax" : "04129 - 955985", "phone" : "04103 - 7029040", "email" : "grundschule-haseldorfer-marsch.haseldorf@schule.landsh.de", "provider" : "Amt Haseldorf", "headmaster" : "Herr K\u00e4hler", "state" : "SH", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 9.604347, "lat" : 53.633998} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "provider": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "fax", "phone", "email", "provider", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "from G960 (\u0392\u03b5\u03c1\u03bf\u03b9\u03b1\u1fd6\u03bf\u03c2);", "kjv_def" : "of Berea", "lemma" : "\u0392\u03b5\u03c1\u03bf\u03b9\u03b1\u1fd6\u03bf\u03c2", "frequency" : 1, "strongs_def" : " a Ber\u0153oean or native of Ber\u0153a", "outline" : "<ol><li> a resident of Berea</li></ol>"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Polygon", "coordinates" : [[[-85.497137, 30.997536], [-85.004212, 31.003013], [-84.867289, 30.712735], [-83.498053, 30.647012], [-82.216449, 30.570335], [-82.167157, 30.356734], [-82.046664, 30.362211], [-82.002849, 30.564858], [-82.041187, 30.751074], [-81.948079, 30.827751], [-81.718048, 30.745597], [-81.444201, 30.707258], [-81.383954, 30.27458], [-81.257985, 29.787132], [-80.967707, 29.14633], [-80.524075, 28.461713], [-80.589798, 28.41242], [-80.56789, 28.094758], [-80.381674, 27.738757], [-80.091397, 27.021277], [-80.03115, 26.796723], [-80.036627, 26.566691], [-80.146166, 25.739673], [-80.239274, 25.723243], [-80.337859, 25.465826], [-80.304997, 25.383672], [-80.49669, 25.197456], [-80.573367, 25.241272], [-80.759583, 25.164595], [-81.077246, 25.120779], [-81.170354, 25.224841], [-81.126538, 25.378195], [-81.351093, 25.821827], [-81.526355, 25.903982], [-81.679709, 25.843735], [-81.800202, 26.090198], [-81.833064, 26.292844], [-82.041187, 26.517399], [-82.09048, 26.665276], [-82.057618, 26.878877], [-82.172634, 26.917216], [-82.145249, 26.791246], [-82.249311, 26.758384], [-82.566974, 27.300601], [-82.692943, 27.437525], [-82.391711, 27.837342], [-82.588881, 27.815434], [-82.720328, 27.689464], [-82.851774, 27.886634], [-82.676512, 28.434328], [-82.643651, 28.888914], [-82.764143, 28.998453], [-82.802482, 29.14633], [-82.994175, 29.179192], [-83.218729, 29.420177], [-83.399469, 29.518762], [-83.410422, 29.66664], [-83.536392, 29.721409], [-83.640454, 29.885717], [-84.02384, 30.104795], [-84.357933, 30.055502], [-84.341502, 29.902148], [-84.451041, 29.929533], [-84.867289, 29.743317], [-85.310921, 29.699501], [-85.299967, 29.80904], [-85.404029, 29.940487], [-85.924338, 30.236241], [-86.29677, 30.362211], [-86.630863, 30.395073], [-86.910187, 30.373165], [-87.518128, 30.280057], [-87.37025, 30.427934], [-87.446927, 30.510088], [-87.408589, 30.674397], [-87.633143, 30.86609], [-87.600282, 30.997536], [-85.497137, 30.997536]]]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cycle-dom.js": {"type": "string"}, "cycle-dom.min.js": {"type": "string"}}, "required": ["cycle-dom.js", "cycle-dom.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cycle-dom.js" : "sha256-Kv+n+M4taH/EgG85CrkyLLlIA52za4nTDOiOr3p1nHU=", "cycle-dom.min.js" : "sha256-MFvLldkPor4u7uSfX+3UNs2ClQpn6oAJK/NI2ezJ5Bs="} | json_instruct | {"type": "object", "properties": {"cycle-dom.js": {"type": "string"}, "cycle-dom.min.js": {"type": "string"}}, "required": ["cycle-dom.js", "cycle-dom.min.js"], "$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" : 101896733, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "614e6afd136f2c79473421346460328a", "wof:id" : 101896733, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.09680417540028, 43.71256630013897, 4.10380465688172, 43.72058710244909], "geometry" : {"coordinates" : [[[4.09927430126146, 43.72058710244909], [4.09954955508726, 43.71788987556067], [4.10078456508802, 43.71796078213271], [4.10087628980472, 43.71706170370464], [4.10211128351574, 43.71713259418993], [4.10229468361956, 43.71533443249837], [4.10352964204702, 43.71540530562248], [4.10380465688172, 43.71270805354834], [4.1013348566882, 43.71256630013897], [4.10124315087086, 43.71346538237572], [4.09877332351579, 43.71332356717596], [4.09868157593417, 43.71422264609981], [4.09744664732398, 43.71415171500911], [4.09680417540028, 43.72044523721451], [4.09927430126146, 43.72058710244909]]], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "devDependencies": {"type": "object", "properties": {"@cypress/webpack-preprocessor": {"type": "string"}, "cypress": {"type": "string"}, "cypress-skip-and-only-ui": {"type": "string"}}, "required": ["@cypress/webpack-preprocessor", "cypress", "cypress-skip-and-only-ui"]}}, "required": ["private", "name", "version", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "name" : "e2e", "version" : "0.1.0", "scripts" : {"start" : "./node_modules/.bin/cypress open", "test" : "node ./start.js"}, "devDependencies" : {"@cypress/webpack-preprocessor" : "^5.4.5", "cypress" : "^5.1.0", "cypress-skip-and-only-ui" : "^1.2.7"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "devDependencies": {"type": "object", "properties": {"@cypress/webpack-preprocessor": {"type": "string"}, "cypress": {"type": "string"}, "cypress-skip-and-only-ui": {"type": "string"}}, "required": ["@cypress/webpack-preprocessor", "cypress", "cypress-skip-and-only-ui"]}}, "required": ["private", "name", "version", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "141128200200", "text" : "\u8d64\u7ea2\u6751\u59d4\u4f1a"}, {"id" : "141128200201", "text" : "\u79ef\u7fe0\u6751\u59d4\u4f1a"}, {"id" : "141128200202", "text" : "\u5367\u9f99\u6f6d\u6751\u59d4\u4f1a"}, {"id" : "141128200203", "text" : "\u5b54\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "141128200204", "text" : "\u5218\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "141128200205", "text" : "\u51af\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "141128200206", "text" : "\u83ba\u5cea\u6751\u59d4\u4f1a"}, {"id" : "141128200207", "text" : "\u5357\u9633\u6751\u59d4\u4f1a"}, {"id" : "141128200208", "text" : "\u7a9d\u5de8\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "141128200209", "text" : "\u5e2e\u7f57\u6751\u59d4\u4f1a"}, {"id" : "141128200210", "text" : "\u65b9\u5c71\u6751\u59d4\u4f1a"}, {"id" : "141128200211", "text" : "\u51e4\u7ffc\u6751\u59d4\u4f1a"}, {"id" : "141128200212", "text" : "\u6c34\u795e\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "141128200213", "text" : "\u5357\u864e\u6ee9\u6751\u59d4\u4f1a"}, {"id" : "141128200214", "text" : "\u4ee3\u5c45\u6751\u59d4\u4f1a"}, {"id" : "141128200215", "text" : "\u4e1c\u738b\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"HostConfigHash": {"type": "null"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HostConfigHash" : null, "CardHash" : "ba06e99", "Error" : null} | json_instruct | {"type": "object", "properties": {"HostConfigHash": {"type": "null"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["530425002001", "\u516d\u8857\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["530425002002", "\u67cf\u6811\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["530425002003", "\u4e8c\u8857\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["530425002004", "\u8336\u6811\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530425002005", "\u65e7\u53bf\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530425002201", "\u94c1\u5382\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["530425002202", "\u767d\u9091\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Determining If a Function is Even or Odd\n\n[imath]f(t)=t^{2}+2 t-3[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=OGp2MNxC65A"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["illuminate/support", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}, "orchestra/testbench": {"type": "string"}, "sempro/phpunit-pretty-print": {"type": "string"}}, "required": ["phpunit/phpunit", "mockery/mockery", "orchestra/testbench", "sempro/phpunit-pretty-print"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Diorgesl\\DiorgesBB\\": {"type": "string"}}, "required": ["Diorgesl\\DiorgesBB\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Diorgesl\\DiorgesBB\\Tests\\": {"type": "string"}}, "required": ["Diorgesl\\DiorgesBB\\Tests\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {"DiorgesBB": {"type": "string"}}, "required": ["DiorgesBB"]}}, "required": ["providers", "aliases"]}}, "required": ["laravel"]}}, "required": ["name", "description", "license", "authors", "homepage", "keywords", "require", "require-dev", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "diorgesl/diorgesbb", "description" : "Boletos com API Piloto do Banco do Brasil", "license" : "MIT", "authors" : [{"name" : "Diorges Rocha", "email" : "diorges@gis.net.br", "homepage" : "https://gis.net.br/"}], "homepage" : "https://github.com/diorgesl/diorgesbb", "keywords" : ["Laravel", "DiorgesBB"], "require" : {"illuminate/support" : "~5|~6|~7|~8", "guzzlehttp/guzzle" : "~6|~7"}, "require-dev" : {"phpunit/phpunit" : "~8.0|~9.0", "mockery/mockery" : "^1.1", "orchestra/testbench" : "~3|~4|~5|~6", "sempro/phpunit-pretty-print" : "^1.0"}, "autoload" : {"psr-4" : {"Diorgesl\\DiorgesBB\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Diorgesl\\DiorgesBB\\Tests\\" : "tests"}}, "extra" : {"laravel" : {"providers" : ["Diorgesl\\DiorgesBB\\DiorgesBBServiceProvider"], "aliases" : {"DiorgesBB" : "Diorgesl\\DiorgesBB\\Facades\\DiorgesBB"}}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["illuminate/support", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "mockery/mockery": {"type": "string"}, "orchestra/testbench": {"type": "string"}, "sempro/phpunit-pretty-print": {"type": "string"}}, "required": ["phpunit/phpunit", "mockery/mockery", "orchestra/testbench", "sempro/phpunit-pretty-print"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Diorgesl\\DiorgesBB\\": {"type": "string"}}, "required": ["Diorgesl\\DiorgesBB\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Diorgesl\\DiorgesBB\\Tests\\": {"type": "string"}}, "required": ["Diorgesl\\DiorgesBB\\Tests\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {"DiorgesBB": {"type": "string"}}, "required": ["DiorgesBB"]}}, "required": ["providers", "aliases"]}}, "required": ["laravel"]}}, "required": ["name", "description", "license", "authors", "homepage", "keywords", "require", "require-dev", "autoload", "autoload-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Gladstone", "state_name" : "Oregon", "state_abbrv" : "OR", "lat" : "45.3899", "long" : "-122.5902"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$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"}, "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": {}}}, "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" : "Erich K\u00e4stner-Schule F\u00f6rderschule mit dem F\u00f6rderschwerpunkt Sprache des Kreises Paderborn -Primarst-", "id" : "NRW-188566", "address" : "Bastfelder Weg 25, 33098 Paderborn", "school_type" : "F\u00f6rderschule", "fax" : "05251 5401997", "phone" : "05251 5401991", "website" : " http://www.eks-pb.de", "email" : " 188566@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 8.746251, "lat" : 51.704462} | 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": {}}}, "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": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "js-inheritance-wrapper", "description" : "A simple wrapper for javascript inheritance.", "main" : "class.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"latitude": {"type": "string"}, "longitude": {"type": "string"}, "tracker_id": {"type": "string"}, "datetime": {"type": "string"}}, "required": ["latitude", "longitude", "tracker_id", "datetime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latitude" : "1", "longitude" : "2", "tracker_id" : "1", "datetime" : "20150807144736"} | json_instruct | {"type": "object", "properties": {"latitude": {"type": "string"}, "longitude": {"type": "string"}, "tracker_id": {"type": "string"}, "datetime": {"type": "string"}}, "required": ["latitude", "longitude", "tracker_id", "datetime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d851-27", "text" : "SEGALOFF:\n\u25a0 LEhCH;\nSEGALOFFs\nThe communist nations, on the other hand, have a highly\nskilled and experienced corps of propagandists hard at work\nconstantly promoting their interests. From such centers as\nMoscow, Peiping, Pyongyang, and Vladivostok, regular and\nfrequent radio programs are beamed to the Japanese, Until\nlate last year, the Communists operated a station, ironically\ncalled \u201cRadio Free Japan11 devoted entirely to Japan and broad-\ncasting from Red China. Commercial trading companies,\ndealing almost exclusively in material from the Communist\norbit, import large quantities of reading matter that is\nsold for ridiculously low prices. It is often possible to\npurchase a dozen high quality Communist magazines for the\nprice of one popular American magazine. In addition to the\nSoviet Union and Red China, East Germany, Czechoslovakia,\nPoland, Bulgaria, North Korea, and strangely enough, the\nCommunist Party of the United States have provided material\navailable to Tokyo\u2019s millions and, :n considerably lesser\namounts, throughout the country. The secret of the Communist\ntactic would appear to be their close cooperation with and\nreliance upon local groups who do the actual spreading of\nthe material to the public.\nThere are, of course, anti-Communist publications, including\nstrong and influential dailies such as the \u201cTokyo Shimbun,\u201d\nIn spite of their ingenuity .and industry, the Communists have\nnot gained the suppbrt thatmignfbe expected from their\nactivities.\nIn the final analysis, it must be remembered that Japan has\nthe most well informed, intelligent population in all of\nAsia. They are not likely to be led astray easily. They\nwill make final decisions themselves.\n( 7 )"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442736850.292065, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 325462598407394821723578579450192500482, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["mountain", "landscape", "nobody", "travel", "sky", "nature", "outdoors", "rural", "hill", "hiking", "tree", "ancient", "high", "remote", "countryside", "daytime", "road", "water", "summer", "forest"], "probs" : [0.9982860088348389, 0.9951010942459106, 0.9941994547843933, 0.9915521144866943, 0.9866496920585632, 0.9829629063606262, 0.9786429405212402, 0.9524548053741455, 0.9492372274398804, 0.9443425536155701, 0.9383225440979004, 0.9361094236373901, 0.9321895837783813, 0.9285093545913696, 0.9272832274436951, 0.9167541265487671, 0.9146255254745483, 0.9106523990631104, 0.9101584553718567, 0.906367301940918]}}, "docid_str" : "f4d9d0ffec80e5e43b501302a39c9702"}]} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}}, "required": ["labelAnnotations"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"responses" : [{"labelAnnotations" : [{"mid" : "/m/0g6b5", "description" : "Fireworks", "score" : 0.98500007, "topicality" : 0.98500007}, {"mid" : "/m/015h7g", "description" : "New Years Day", "score" : 0.88019145, "topicality" : 0.88019145}, {"mid" : "/m/01bqvp", "description" : "Sky", "score" : 0.8622455, "topicality" : 0.8622455}, {"mid" : "/m/081pkj", "description" : "Event", "score" : 0.82429516, "topicality" : 0.82429516}, {"mid" : "/m/03gkl", "description" : "Holiday", "score" : 0.80018365, "topicality" : 0.80018365}, {"mid" : "/m/01d74z", "description" : "Night", "score" : 0.76756305, "topicality" : 0.76756305}, {"mid" : "/m/03bxns", "description" : "Independence day", "score" : 0.76571947, "topicality" : 0.76571947}, {"mid" : "/m/020dwk", "description" : "Passenger ship", "score" : 0.73685968, "topicality" : 0.73685968}, {"mid" : "/m/05fdr", "description" : "New year", "score" : 0.70533538, "topicality" : 0.70533538}, {"mid" : "/m/06bm2", "description" : "Recreation", "score" : 0.70152813, "topicality" : 0.70152813}]}]} | json_instruct | {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "required": ["mid", "description", "score", "topicality"]}}}, "required": ["labelAnnotations"]}}}, "required": ["responses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "WillGamerYT", "scores" : [{"xp" : 7271, "rank" : 170, "cardId" : 507}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "status": {"type": "object", "properties": {"H": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}, "S": {"type": "string"}}, "required": ["H", "A", "B", "C", "D", "S"]}, "egg_groups": {"type": "array", "items": {"type": "string"}}, "mega_evolve": {"type": "boolean"}}, "required": ["id", "name", "type", "abilities", "status", "egg_groups", "mega_evolve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3", "name" : "\u30d5\u30b7\u30ae\u30d0\u30ca", "type" : ["\u304f\u3055", "\u3069\u304f"], "abilities" : [{"name" : "\u3057\u3093\u308a\u3087\u304f"}, {"name" : "*\u3088\u3046\u308a\u3087\u304f\u305d"}], "status" : {"H" : "80", "A" : "82", "B" : "83", "C" : "100", "D" : "100", "S" : "80"}, "egg_groups" : ["\u602a\u7363", "\u690d\u7269"], "mega_evolve" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "status": {"type": "object", "properties": {"H": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}, "S": {"type": "string"}}, "required": ["H", "A", "B", "C", "D", "S"]}, "egg_groups": {"type": "array", "items": {"type": "string"}}, "mega_evolve": {"type": "boolean"}}, "required": ["id", "name", "type", "abilities", "status", "egg_groups", "mega_evolve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 421193671, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "20b998b91942cf2b62f81952d3d83ea4", "wof:id" : 421193671, "wof:repo" : "whosonfirst-data-admin-tv"}, "bbox" : [176.31958, -6.2897, 176.31958, -6.2897], "geometry" : {"coordinates" : [176.31958, -6.2897], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["hasIcon", "description", "name"]}, "subtitle": {"type": "string"}}, "required": ["index", "hash", "blacklisted", "redacted", "displayProperties", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 1136, "hash" : 1668657300, "blacklisted" : false, "redacted" : false, "displayProperties" : {"hasIcon" : false, "description" : "The Pit. The depths where light dies and Light is a sin greater than heresy. There, in the crimson palaces of ancient legions where the plotters of ruin gaze with keen eye upon the harsh caress of beauteous carnage. There, where the armies of marrow clash for the honored glory of oblivion or its opposite\u2014evolution through pain, evolution through force of will and the shattering of all deemed unworthy by the right of blade and fist and heel and tooth and claw. The Pit. The sunken paradise of blood and dust where a Prince was once celebrated with the gift of slaughter, his sword dulled upon the rigid bone of violent sacrifice. There, where a lost Swarm sought a new King of Depths, Lord of Chaos and Ruin. There, in the absence of He Who Mastered Shapes, where that Hidden Swarm found themselves unfit for the logic's prize, where no champion could stand, where a heartbroken Daughter looked upon sin and saw not damnation but the desperate lie of its other. There, in the deepest chambers of decay, proud Hashlad\u00fbn found salvation in the twisting of the logic's truth. The Pit. The sacred hollow where the Daughters of the Breaker of Worlds, the beloved Granddaughters of the Taker of Will, denied the logic. There, where a shattered champion\u2014a failure according to all that was holy\u2014was resurrected. Not to rule, but to ensure that a tattered lineage held claim to a broken throne through force and lies and war\u2014a joining of the Three. The Pit. The temple where mighty Zulmak fought and died and was risen\u2014no longer a champion, no longer anything but death born of lies and bred anew to conqueror life until life was no more.", "name" : "Blasphemer"}, "subtitle" : "\"The logic is ineluctable: Those who die deserve oblivion.\" \u2014Kuldax"} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["hasIcon", "description", "name"]}, "subtitle": {"type": "string"}}, "required": ["index", "hash", "blacklisted", "redacted", "displayProperties", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See xkoccn on Metamath](http://us.metamath.org/mpegif/xkoccn.html)"}], "names" : ["xkoccn"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cR", "#T_wcel", "#T_ctopon", "#T_cfv", "#T_cX", "#T_wa", "#T_cS", "#T_wcel", "#T_ctopon", "#T_cfv", "#T_cY", "#T_wi", "#T_vx", "#T_cmpt--1", "#T_cY", "#T_cmpt--2", "#T_cX", "#T_cxp", "#T_csn--1", "#T_vx", "#T_csn--2", "#T_wcel", "#T_cS", "#T_ccn", "#T_cS", "#T_cxko", "#T_cR", "#T_cR", "#T_vx", "#T_cS", "#T_vx", "#T_cX", "#T_vx", "#T_cY", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " The \"constant function\" function which maps ` x e. Y ` to the constant function ` z e. X |-> x ` is a continuous function from ` X ` into the space of continuous functions from ` Y ` to ` X ` . This can also be understood as the currying of the first projection function. (The currying of the second projection function is ` x e. Y |-> ( z e. X |-> z ) ` , which we already know is continuous because it is a constant function.) (Contributed by Mario Carneiro, 19-Mar-2015.) ", "statement" : "xkoccn $p |- ( ( R e. ( TopOn ` X ) /\\ S e. ( TopOn ` Y ) ) -> ( x e. Y |-> ( X X. { x } ) ) e. ( S Cn ( S ^ko R ) ) ) $.\n$d R x $.\n$d S x $.\n$d X x $.\n$d Y x $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"monthly_value": {"type": "object", "properties": {"format": {"type": "string"}, "type": {"type": "string"}}, "required": ["format", "type"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "status": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["enum", "type"]}}, "required": ["monthly_value", "name", "status"]}, "type": {"type": "string"}}, "required": ["properties", "type"]}}, "required": ["id", "requestBody"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"id" : {"required" : true, "type" : "number"}, "requestBody" : {"properties" : {"monthly_value" : {"format" : "float", "type" : "number"}, "name" : {"type" : "string"}, "status" : {"enum" : ["paying", "prospect", "not_paying"], "type" : "string"}}, "type" : "object"}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"monthly_value": {"type": "object", "properties": {"format": {"type": "string"}, "type": {"type": "string"}}, "required": ["format", "type"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "status": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["enum", "type"]}}, "required": ["monthly_value", "name", "status"]}, "type": {"type": "string"}}, "required": ["properties", "type"]}}, "required": ["id", "requestBody"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x7984bfe8e61ed32bcdfe4cbcd8d98c7f96ff38cdc2837dc19b02859819121900", "parentHash" : "0x099da7d508f65bbc470b4e19f8f0d5b15a463b5fc20f0400aa1b4185360dae31", "number" : 38662, "timestamp" : 1438791650, "nonce" : "0xeea97832877264ae", "difficulty" : 1371822391086, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x8B454d830feF179e66206840F8F3D1d83bC32b17", "extraData" : "0x476574682f76312e302e302f77696e646f77732f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Accept-Ranges": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "Set-Cookie": {"type": "string"}, "X-CDN": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-Iinfo": {"type": "string"}}, "required": ["Accept-Ranges", "Content-Length", "Content-Type", "Date", "ETag", "Last-Modified", "Set-Cookie", "X-CDN", "X-Frame-Options", "X-Iinfo"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "1.781", "endpoint-url" : "https://www.bradford.gov.uk/media/6150/infrastructure-funding-statement-2019-20.pdf", "entry-date" : "2021-10-28T00:25:17.450597", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "User-Agent" : "Digital Land"}, "resource" : "d388c12ad9cc3e076f3d12b5c431dde02560992808f8e05d3238b22c26730f4b", "response-headers" : {"Accept-Ranges" : "bytes", "Content-Length" : "2670190", "Content-Type" : "application/pdf", "Date" : "Thu, 28 Oct 2021 00:25:51 GMT", "ETag" : "\"NS-1cedb73a6630-90b569fe83d4d61:0\"", "Last-Modified" : "Thu, 17 Dec 2020 14:50:42 GMT", "Set-Cookie" : "visid_incap_1845735=dY3Fx7h6TTSgemXwbsZtASrueWEAAAAAQUIPAAAAAACH2ReJEaSwU+bt+IPz+IS4; expires=Thu, 27 Oct 2022 19:48:54 GMT; HttpOnly; path=/; Domain=.bradford.gov.uk, incap_ses_483_1845735=DPAnFKzn6mKwV8r+cPazBirueWEAAAAAYDQPmuOK1U/dKmL+MA3gAg==; path=/; Domain=.bradford.gov.uk", "X-CDN" : "Imperva", "X-Frame-Options" : "sameorigin", "X-Iinfo" : "10-128836154-128836161 nNNN RT(1635380778661 18) q(0 0 2 0) r(3 3) U12"}, "ssl-verify" : true, "status" : "200"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Accept-Ranges": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "Set-Cookie": {"type": "string"}, "X-CDN": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-Iinfo": {"type": "string"}}, "required": ["Accept-Ranges", "Content-Length", "Content-Type", "Date", "ETag", "Last-Modified", "Set-Cookie", "X-CDN", "X-Frame-Options", "X-Iinfo"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "RalseiGaming69", "scores" : [{"xp" : 231, "rank" : 384, "cardId" : 645}, {"xp" : 5792, "rank" : 371, "cardId" : 581}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"eggHelper.serverPort": {"type": "integer"}}, "required": ["eggHelper.serverPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"eggHelper.serverPort" : 49414} | json_instruct | {"type": "object", "properties": {"eggHelper.serverPort": {"type": "integer"}}, "required": ["eggHelper.serverPort"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "ultrawidemasterrace", "author" : "h3w1tt84", "count" : 8} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Brouvelieures", "dpt" : "Vosges", "inscrits" : 368, "abs" : 100, "votants" : 268, "blancs" : 22, "nuls" : 13, "exp" : 233, "res" : [{"panneau" : "2", "voix" : 125}, {"panneau" : "1", "voix" : 108}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"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": {}, "required": []}, "timeto": {"type": "object", "properties": {}, "required": []}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 25777, "title" : ["[Turtle Island]"], "description" : ["Flat and smooth, the large boulder is soaked at even intervals by the constant effort of the rising tide. Kelp and other forms of seaweed are tangled in the spaces between the rising boulders. Ripped and torn, the aquatic plants still have seed pods clinging to their slick ends."], "paths" : ["Obvious paths: southeast, south, southwest"], "location" : "Mist Harbor", "wayto" : {}, "timeto" : {}, "image" : "ifw-eastern_waterway-1489553700.png", "image_coords" : [2121, 2300, 2160, 2339]} | 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": {}, "required": []}, "timeto": {"type": "object", "properties": {}, "required": []}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x5e569e1ecd56fe30dd97ee233ec1675b60fb6680", "tool" : "manticore", "start" : 1563979215.6575894, "end" : 1563981017.5733898, "duration" : 1801.915800333023, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brand": {"type": "string"}}, "required": ["id", "name", "brand"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "42842210-3b68-427c-89c4-b10a6c15d217", "name" : "Alfonso XIII", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}, {"id" : "84c0b0ad-658d-47d9-b9cf-5c1355652aa5", "name" : "Carmen", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}, {"id" : "38bdb813-17de-467f-ae74-28747f202940", "name" : "H6", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}, {"id" : "5b87e68d-2f6d-4a1d-ba64-7e2bb643df22", "name" : "HS21", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}, {"id" : "c7d8ed93-f65e-4246-8a5e-e26c70733413", "name" : "J12", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}, {"id" : "d3563dc5-2886-48bb-ae8e-949973eae467", "name" : "K6", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}, {"id" : "9d178565-dfe3-47d9-b544-c885e97a24b8", "name" : "T49", "brand" : "fe508565-f59d-45c9-a8b9-d66a27d20074"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brand": {"type": "string"}}, "required": ["id", "name", "brand"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "string"}}, "required": ["include", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"include" : ["pages/**/*"], "extends" : "../../tsconfig.json"} | json_instruct | {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "string"}}, "required": ["include", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.