input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}}, "required": ["name", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Your Comic's Name", "links" : [{"name" : "search", "href" : "/search"}, {"name" : "archive", "href" : "/archive"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}}, "required": ["name", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "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-jc8c-gg53-wcm7", "modified" : "2022-05-13T01:49:47Z", "published" : "2022-05-13T01:49:47Z", "aliases" : ["CVE-2018-13420"], "details" : "** DISPUTED ** Google gperftools 2.7 has a memory leak in malloc_extension.cc, related to MallocExtension::Register and InitModule. NOTE: the software maintainer indicates that this is not a bug; it is only a false-positive report from the LeakSanitizer program.", "severity" : [{"type" : "CVSS_V3", "score" : "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"}], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2018-13420"}, {"type" : "WEB", "url" : "https://github.com/gperftools/gperftools/issues/1013"}], "database_specific" : {"cwe_ids" : ["CWE-772"], "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": {"type": "object", "properties": {"type": {"type": "string"}, "score": {"type": "string"}}, "required": ["type", "score"]}}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"area": {"type": "integer"}, "color": {"type": "string"}, "name": {"type": "string"}}, "required": ["area", "color", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"area" : 1, "color" : "#244705", "name" : "\u7b2c\u767e\u56db\u6226\u968a"}, {"area" : 2, "color" : "#413B1D", "name" : "\u30d2\u8239\u56e3"}, {"area" : 3, "color" : "#6D6D6D", "name" : "\u6a2a\u9808\u8cc0\u9632\u5099\u968a"}, {"area" : 4, "color" : "#001527", "name" : "\u9023\u5408\u8266\u968a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"area": {"type": "integer"}, "color": {"type": "string"}, "name": {"type": "string"}}, "required": ["area", "color", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"82041": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["82041"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"82041" : {"success" : false}} | json_instruct | {"type": "object", "properties": {"82041": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["82041"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[140.125, 42.5], [140.125, 42.583333333333336], [140.25, 42.583333333333336], [140.25, 42.5], [140.125, 42.5]]]}, "properties" : {"code" : 634061, "url" : "http://madefor.github.io/0410/api/v1/634061.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/634061.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`milingowa~"], "e" : ["\ufff9`Mi~`lingwa~ `ko~ `Kyokay~ `to~ `pakoyoc~ `a~ `tamdaw~.\ufffa\ufffb\u6559\u6703\u7167\u9867\u7aae\u4eba\u3002"], "f" : "\u7406\u776c\uff0c\u95dc\u7167\uff0c\u7167\u9867\u3002"}]}], "t" : "lingwa"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "userProfile.jsx"} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"judges": {"type": "array", "items": {}}, "court": {"type": "string"}, "api_url": {"type": "string"}, "author": {"type": "null"}, "text": {"type": "object", "properties": {"pdf": {"type": "string"}, "text": {"type": "string"}}, "required": ["pdf", "text"]}, "cited_laws": {"type": "null"}, "cited_cases": {"type": "null"}, "number": {"type": "string"}, "name": {"type": "string"}, "date_published": {"type": "string"}, "parties": {"type": "object", "properties": {"plaintiff": {"type": "string"}, "defendant": {"type": "string"}}, "required": ["plaintiff", "defendant"]}, "attorneys": {"type": "array", "items": {}}, "outcome": {"type": "null"}, "type": {"type": "null"}, "is_published": {"type": "boolean"}}, "required": ["judges", "court", "api_url", "author", "text", "cited_laws", "cited_cases", "number", "name", "date_published", "parties", "attorneys", "outcome", "type", "is_published"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"judges" : [], "court" : "Court of Appeals of Virginia", "api_url" : "opinions/1530982.json", "author" : null, "text" : {"pdf" : "http://www.courts.state.va.us/opinions/opncavwp/1530982.pdf", "text" : "opinions/1530982.txt"}, "cited_laws" : null, "cited_cases" : null, "number" : "1530982", "name" : "Gunst Corporation and Reliance Ins.Co. v Childress", "date_published" : "5/18/1999", "parties" : {"plaintiff" : "Gunst Corporation and Reliance Ins.Co.", "defendant" : "Childress"}, "attorneys" : [], "outcome" : null, "type" : null, "is_published" : true} | json_instruct | {"type": "object", "properties": {"judges": {"type": "array", "items": {}}, "court": {"type": "string"}, "api_url": {"type": "string"}, "author": {"type": "null"}, "text": {"type": "object", "properties": {"pdf": {"type": "string"}, "text": {"type": "string"}}, "required": ["pdf", "text"]}, "cited_laws": {"type": "null"}, "cited_cases": {"type": "null"}, "number": {"type": "string"}, "name": {"type": "string"}, "date_published": {"type": "string"}, "parties": {"type": "object", "properties": {"plaintiff": {"type": "string"}, "defendant": {"type": "string"}}, "required": ["plaintiff", "defendant"]}, "attorneys": {"type": "array", "items": {}}, "outcome": {"type": "null"}, "type": {"type": "null"}, "is_published": {"type": "boolean"}}, "required": ["judges", "court", "api_url", "author", "text", "cited_laws", "cited_cases", "number", "name", "date_published", "parties", "attorneys", "outcome", "type", "is_published"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-theme-mix": {"type": "string"}}, "required": ["vuepress", "vuepress-theme-mix"]}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}}, "required": ["docs:dev", "docs:build"]}, "dependencies": {"type": "object", "properties": {"@renovamen/vuepress-plugin-katex": {"type": "string"}, "@renovamen/vuepress-plugin-mermaid": {"type": "string"}, "vuepress-plugin-chart": {"type": "string"}}, "required": ["@renovamen/vuepress-plugin-katex", "@renovamen/vuepress-plugin-mermaid", "vuepress-plugin-chart"]}}, "required": ["name", "version", "main", "repository", "author", "license", "private", "devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cee-offer-doc", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/Jansora/cee-offer-doc.git", "author" : "Jansora <zhangyue1936@gmail.com>", "license" : "MIT", "private" : true, "devDependencies" : {"vuepress" : "^2.0.0-beta.38", "vuepress-theme-mix" : "1.3.1"}, "scripts" : {"docs:dev" : "vuepress dev docs", "docs:build" : "vuepress build docs"}, "dependencies" : {"@renovamen/vuepress-plugin-katex" : "^2.0.0-alpha.15", "@renovamen/vuepress-plugin-mermaid" : "^2.0.0-alpha.20", "vuepress-plugin-chart" : "^2.0.0-alpha.19"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-theme-mix": {"type": "string"}}, "required": ["vuepress", "vuepress-theme-mix"]}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}}, "required": ["docs:dev", "docs:build"]}, "dependencies": {"type": "object", "properties": {"@renovamen/vuepress-plugin-katex": {"type": "string"}, "@renovamen/vuepress-plugin-mermaid": {"type": "string"}, "vuepress-plugin-chart": {"type": "string"}}, "required": ["@renovamen/vuepress-plugin-katex", "@renovamen/vuepress-plugin-mermaid", "vuepress-plugin-chart"]}}, "required": ["name", "version", "main", "repository", "author", "license", "private", "devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "misbehavior", "definition" : "Improper, rude, or uncivil behavior; ill conduct. Addison."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7308c693-9029-4383-b7ff-24eb9d862536", "name" : "Main Site", "code" : "-", "address" : {"addressLine1" : "Durrington High School", "addressLine2" : "The Boulevard", "town" : "Worthing", "county" : "West Sussex", "postcode" : "BN13 1JX"}, "organisation" : {"id" : "b60b0d7c-ada0-459c-9d81-da7df3e82da9", "code" : "2AZ", "name" : "The South Downs SCITT"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"val_loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}}, "required": ["val_loss", "val_acc", "acc", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"val_loss" : [14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754, 14.490167530822754], "val_acc" : [0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101, 0.101], "acc" : [0.10223333333134652, 0.10218333333333333, 0.1021833333293597, 0.10218333333730698, 0.10218333333134651, 0.10218333333730698, 0.10218333333333333, 0.10218333333730698, 0.10218333334128062, 0.10218333333730698, 0.1021833333293597, 0.10218333334128062, 0.10218333333333333, 0.10218333333333333, 0.10218333334128062, 0.10218333333730698, 0.10218333333730698, 0.1021833333293597, 0.10218333333333333, 0.1021833333293597], "loss" : [14.427698642985026, 14.471094510396322, 14.471094543457031, 14.471094495137532, 14.471094492594402, 14.471094524637858, 14.471094530741373, 14.471094526672363, 14.47109448038737, 14.471094546000163, 14.47109448852539, 14.471094502258302, 14.47109450937907, 14.471094527689615, 14.47109448852539, 14.4710945409139, 14.471094531758625, 14.471094517008463, 14.471094504801432, 14.47109449005127]} | json_instruct | {"type": "object", "properties": {"val_loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}}, "required": ["val_loss", "val_acc", "acc", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"MUD_Manager_Version": {"type": "integer"}, "MUDManagerAPIProtocol": {"type": "string"}, "ACL_Prefix": {"type": "string"}, "ACL_Type": {"type": "string"}, "COA_Password": {"type": "string"}, "Default_Localv4": {"type": "string"}, "Default_VLAN": {"type": "integer"}, "VLANs": {"type": "array", "items": {"type": "object", "properties": {"VLAN_ID": {"type": "integer"}, "v4addrmask": {"type": "string"}}, "required": ["VLAN_ID", "v4addrmask"]}}, "Manufacturers": {"type": "array", "items": {"type": "object", "properties": {"authority": {"type": "string"}, "cert": {"type": "string"}, "my_controller_v4": {"type": "string"}, "local_networks_v4": {"type": "string"}}, "required": ["authority", "cert", "my_controller_v4", "local_networks_v4"]}}, "DNSMapping": {"type": "object", "properties": {"fw-update.luminaire.example.com": {"type": "string"}}, "required": ["fw-update.luminaire.example.com"]}, "DNSMapping_v6": {"type": "object", "properties": {"fw-update.luminaire.example.com": {"type": "string"}}, "required": ["fw-update.luminaire.example.com"]}, "ControllerMapping": {"type": "object", "properties": {"http://lightcontroller.example.com": {"type": "string"}}, "required": ["http://lightcontroller.example.com"]}, "ControllerMapping_v6": {"type": "object", "properties": {"http://lightcontroller.example.com": {"type": "string"}}, "required": ["http://lightcontroller.example.com"]}, "DefaultACL": {"type": "array", "items": {"type": "string"}}, "DefaultACL_v6": {"type": "array", "items": {"type": "string"}}}, "required": ["MUD_Manager_Version", "MUDManagerAPIProtocol", "ACL_Prefix", "ACL_Type", "COA_Password", "Default_Localv4", "Default_VLAN", "VLANs", "Manufacturers", "DNSMapping", "DNSMapping_v6", "ControllerMapping", "ControllerMapping_v6", "DefaultACL", "DefaultACL_v6"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MUD_Manager_Version" : 2, "MUDManagerAPIProtocol" : "http", "ACL_Prefix" : "ACS:", "ACL_Type" : "dACL-ingress-only", "COA_Password" : "mudtester", "Default_Localv4" : "10.0.0.0 0.255.255.255", "Default_VLAN" : 5, "VLANs" : [{"VLAN_ID" : 18, "v4addrmask" : "192.168.8.0 0.0.0.255"}, {"VLAN_ID" : 4, "v4addrmask" : "10.8.2.0 0.0.0.255"}], "Manufacturers" : [{"authority" : "luminaire.example.com", "cert" : "/home/mudtester/luminaire-cacert.pem", "my_controller_v4" : "10.1.1.4", "local_networks_v4" : "10.0.0.0 0.0.0.255"}], "DNSMapping" : {"fw-update.luminaire.example.com" : "172.12.212.10"}, "DNSMapping_v6" : {"fw-update.luminaire.example.com" : "1111:2222:4533:2223:::"}, "ControllerMapping" : {"http://lightcontroller.example.com" : "10.1.1.5"}, "ControllerMapping_v6" : {"http://lightcontroller.example.com" : "ffff:2343:4444:::"}, "DefaultACL" : ["permit udp any any eq 53", "deny ip any any"], "DefaultACL_v6" : ["permit udp any any eq 53", "deny ipv6 any any"]} | json_instruct | {"type": "object", "properties": {"MUD_Manager_Version": {"type": "integer"}, "MUDManagerAPIProtocol": {"type": "string"}, "ACL_Prefix": {"type": "string"}, "ACL_Type": {"type": "string"}, "COA_Password": {"type": "string"}, "Default_Localv4": {"type": "string"}, "Default_VLAN": {"type": "integer"}, "VLANs": {"type": "array", "items": {"type": "object", "properties": {"VLAN_ID": {"type": "integer"}, "v4addrmask": {"type": "string"}}, "required": ["VLAN_ID", "v4addrmask"]}}, "Manufacturers": {"type": "array", "items": {"type": "object", "properties": {"authority": {"type": "string"}, "cert": {"type": "string"}, "my_controller_v4": {"type": "string"}, "local_networks_v4": {"type": "string"}}, "required": ["authority", "cert", "my_controller_v4", "local_networks_v4"]}}, "DNSMapping": {"type": "object", "properties": {"fw-update.luminaire.example.com": {"type": "string"}}, "required": ["fw-update.luminaire.example.com"]}, "DNSMapping_v6": {"type": "object", "properties": {"fw-update.luminaire.example.com": {"type": "string"}}, "required": ["fw-update.luminaire.example.com"]}, "ControllerMapping": {"type": "object", "properties": {"http://lightcontroller.example.com": {"type": "string"}}, "required": ["http://lightcontroller.example.com"]}, "ControllerMapping_v6": {"type": "object", "properties": {"http://lightcontroller.example.com": {"type": "string"}}, "required": ["http://lightcontroller.example.com"]}, "DefaultACL": {"type": "array", "items": {"type": "string"}}, "DefaultACL_v6": {"type": "array", "items": {"type": "string"}}}, "required": ["MUD_Manager_Version", "MUDManagerAPIProtocol", "ACL_Prefix", "ACL_Type", "COA_Password", "Default_Localv4", "Default_VLAN", "VLANs", "Manufacturers", "DNSMapping", "DNSMapping_v6", "ControllerMapping", "ControllerMapping_v6", "DefaultACL", "DefaultACL_v6"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"components": {"type": "object", "properties": {"reader_0": {"type": "object", "properties": {"module": {"type": "string"}, "output": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"]}}, "required": ["module", "output"]}, "dataio_0": {"type": "object", "properties": {"module": {"type": "string"}, "input": {"type": "object", "properties": {"data": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"]}}, "required": ["data"]}, "output": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}, "model": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "model"]}, "need_deploy": {"type": "boolean"}}, "required": ["module", "input", "output", "need_deploy"]}, "hetero_feature_binning_0": {"type": "object", "properties": {"module": {"type": "string"}, "input": {"type": "object", "properties": {"data": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"]}}, "required": ["data"]}, "output": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}, "model": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "model"]}}, "required": ["module", "input", "output"]}}, "required": ["reader_0", "dataio_0", "hetero_feature_binning_0"]}}, "required": ["components"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"components" : {"reader_0" : {"module" : "Reader", "output" : {"data" : ["table"]}}, "dataio_0" : {"module" : "DataIO", "input" : {"data" : {"data" : ["reader_0.table"]}}, "output" : {"data" : ["train"], "model" : ["dataio"]}, "need_deploy" : true}, "hetero_feature_binning_0" : {"module" : "HeteroFeatureBinning", "input" : {"data" : {"data" : ["dataio_0.train"]}}, "output" : {"data" : ["train"], "model" : ["hetero_feature_binning"]}}}} | json_instruct | {"type": "object", "properties": {"components": {"type": "object", "properties": {"reader_0": {"type": "object", "properties": {"module": {"type": "string"}, "output": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"]}}, "required": ["module", "output"]}, "dataio_0": {"type": "object", "properties": {"module": {"type": "string"}, "input": {"type": "object", "properties": {"data": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"]}}, "required": ["data"]}, "output": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}, "model": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "model"]}, "need_deploy": {"type": "boolean"}}, "required": ["module", "input", "output", "need_deploy"]}, "hetero_feature_binning_0": {"type": "object", "properties": {"module": {"type": "string"}, "input": {"type": "object", "properties": {"data": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"]}}, "required": ["data"]}, "output": {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}, "model": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "model"]}}, "required": ["module", "input", "output"]}}, "required": ["reader_0", "dataio_0", "hetero_feature_binning_0"]}}, "required": ["components"], "$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": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"archiver": {"type": "string"}, "ftp": {"type": "string"}}, "required": ["archiver", "ftp"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@tbonz/node-utils", "version" : "1.1.0", "description" : "Node utilities to help simplify your workflow.", "main" : "lib", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/tbonz/node-utils.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/tbonz/node-utils/issues"}, "homepage" : "https://github.com/tbonz/node-utils#readme", "dependencies" : {"archiver" : "^3.0.0", "ftp" : "^0.3.10"}, "devDependencies" : {"eslint" : "^5.8.0", "eslint-config-airbnb-base" : "^13.1.0", "eslint-plugin-import" : "^2.14.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"archiver": {"type": "string"}, "ftp": {"type": "string"}}, "required": ["archiver", "ftp"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1999, 5], [2003, 6], [2005, 6], [2006, 6], [2007, 5], [2009, 7], [2011, 6], [2012, 5], [2013, 7], [2014, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "AMALIA", "frequency" : 286, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_1qznp18x", "name" : "Zatnikotel"}, "date" : {"day" : 1563321600, "full" : 1563372952, "month" : 1561939200, "week" : 1563062400}, "id" : "t3_cedf1u", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 153937, "fullUrl" : "https://preview.redd.it/r6hftkfvgva31.jpg?auto=webp&s=350cdb4304a9532d9f6a0ea30bbe679aed25db48", "hash" : "2484d97cc1", "height" : 640, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwT/xAAiEAABAwQCAgMAAAAAAAAAAAABAgMRAAQhMQUSQVEigZH/xAAVAQEBAAAAAAAAAAAAAAAAAAACA//EABgRAAIDAAAAAAAAAAAAAAAAAAABEUFh/9oADAMBAAIRAxEAPwAra2bNmh11htlSkADuklSogzGxPv1UXIMtJR1IMlOzG5GTn6pOOeDtu2lQ+YJiAc5jZ8ap+RKS0VtrZCgpOye2N+I65/ahiGps/9k=", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/HoGlDg9Foodf8qB4-WCcSO28gR0xpVMfQdpTYLKbDLM.jpg", "url" : "https://preview.redd.it/r6hftkfvgva31.jpg?width=640&crop=smart&auto=webp&s=dbdb037cac84c010fa46db738a8d00d9fac5f843", "width" : 640}, "score" : {"comments" : 34, "downs" : 0, "isCurated" : true, "ratio" : 0.99, "ups" : 295, "value" : 295}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Dungeon"], "title" : "The Empty Dungeon: The final of five maps created by suggestions and free to our community.", "url" : "https://www.reddit.com/r/dndmaps/comments/cedf1u/battlemap_50x50_the_empty_dungeon_the_final_of/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "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" : "78480", "name" : {"en" : "Jimani"}, "country" : "DO", "region" : "OU", "identifiers" : {"wmo" : "78480"}, "location" : {"latitude" : 18.3333, "longitude" : -71.85, "elevation" : 0}, "timezone" : "America/Santo_Domingo"} | 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"}}, "required": ["wmo"]}, "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Directed": {"type": "string"}, "Non-Targeted": {"type": "string"}, "Random": {"type": "string"}, "Systematic": {"type": "string"}, "Targeted": {"type": "string"}, "Unknown": {"type": "string"}}, "required": ["Directed", "Non-Targeted", "Random", "Systematic", "Targeted", "Unknown"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Directed" : "", "Non-Targeted" : "", "Random" : "", "Systematic" : "", "Targeted" : "", "Unknown" : ""} | json_instruct | {"type": "object", "properties": {"Directed": {"type": "string"}, "Non-Targeted": {"type": "string"}, "Random": {"type": "string"}, "Systematic": {"type": "string"}, "Targeted": {"type": "string"}, "Unknown": {"type": "string"}}, "required": ["Directed", "Non-Targeted", "Random", "Systematic", "Targeted", "Unknown"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"frame_id" : 5976, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "david_bronzo_donatello", "right" : 0.648359, "bottom" : 0.685055, "top" : 0.101883, "confidence" : 74, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.241173}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "Strong, though slightly rusty, iron chains."} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"user": {"type": "integer"}, "bio": {"type": "string"}}, "required": ["user", "bio"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"model" : "chat.profile", "pk" : 1, "fields" : {"user" : 1, "bio" : "I am John!"}}, {"model" : "chat.profile", "pk" : 2, "fields" : {"user" : 2, "bio" : "I am Bob!"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"user": {"type": "integer"}, "bio": {"type": "string"}}, "required": ["user", "bio"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"@context": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "body": {"type": "string"}, "target": {"type": "object", "properties": {"source": {"type": "string"}, "selector": {"type": "object", "properties": {"type": {"type": "string"}, "exact": {"type": "string"}, "prefix": {"type": "string"}, "suffix": {"type": "string"}}, "required": ["type", "exact", "prefix", "suffix"]}}, "required": ["source", "selector"]}}, "required": ["@context", "id", "type", "body", "target"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@context" : "http://www.w3.org/ns/anno.jsonld", "id" : "http://example.org/anno26", "type" : "Annotation", "body" : "http://example.org/comment1", "target" : {"source" : "http://example.org/page1", "selector" : {"type" : "TextQuoteSelector", "exact" : "anotation", "prefix" : "this is an ", "suffix" : " that has some"}}} | json_instruct | {"type": "object", "properties": {"@context": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "body": {"type": "string"}, "target": {"type": "object", "properties": {"source": {"type": "string"}, "selector": {"type": "object", "properties": {"type": {"type": "string"}, "exact": {"type": "string"}, "prefix": {"type": "string"}, "suffix": {"type": "string"}}, "required": ["type", "exact", "prefix", "suffix"]}}, "required": ["source", "selector"]}}, "required": ["@context", "id", "type", "body", "target"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404418217, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "eb29402c1a158b18fc0a5760fd79a190", "wof:id" : 404418217, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.1306147430922, 50.43988680737314, 2.16845572469832, 50.46255911202136], "geometry" : {"coordinates" : [[[2.14948959370812, 50.4416112798452], [2.14028312192762, 50.43988680737314], [2.13144092326524, 50.45214178884704], [2.1306147430922, 50.45520616878462], [2.14618277857353, 50.46255911202136], [2.15207628312037, 50.45916144803603], [2.15561474776635, 50.46031676164789], [2.15951036018832, 50.45524432274517], [2.16845572469832, 50.44913750682823], [2.16703772417693, 50.44646174143102], [2.14948959370812, 50.4416112798452]]], "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 106668, "info" : {"name" : "Github Bouncing Indicator", "description" : "Very visible notification indicator for Github\r\nLICENSE IS GNU GPLv3+\r\nPlease fork here: https://github.com/muchweb/github-notification-bouncing", "additionalInfo" : null, "format" : "uso", "category" : "github", "createdAt" : "2014-10-27T21:16:24.000Z", "updatedAt" : "2014-10-27T21:16:24.000Z", "license" : "CC-BY-SA-4.0", "author" : {"id" : 273160, "name" : "muchweb"}}, "stats" : {"installs" : {"total" : 278, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "106668_after.gif", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"github.com\") {\r\n @keyframes unreadmad0 {\r\n to {\r\n transform: scale(1.4);\r\n opacity: 1;\r\n }\r\n }\r\n\r\n @keyframes unreadmad1 {\r\n 0% {\r\n width: 14px;\r\n height: 14px;\r\n box-shadow: 0 0 8px transparent;\r\n }\r\n 50% {\r\n width: 14px;\r\n height: 14px;\r\n box-shadow: 0 0 8px transparent;\r\n }\r\n }\r\n\r\n .mail-status.unread {\r\n animation: unreadmad0 .5s ease-out infinite alternate, unreadmad1 60s linear;\r\n width: 24px;\r\n height: 24px;\r\n opacity: 0.9;\r\n transform: scale(1);\r\n box-shadow: 0 0 8px #4183C4;\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"weight": {"type": "integer"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "weight": {"type": "integer"}, "cost": {"type": "integer"}}, "required": ["id", "weight", "cost"]}}}, "required": ["weight", "items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"weight" : 15, "items" : [{"id" : 0, "weight" : 7, "cost" : 1}, {"id" : 1, "weight" : 2, "cost" : 1}, {"id" : 2, "weight" : 5, "cost" : 1}, {"id" : 3, "weight" : 6, "cost" : 1}, {"id" : 4, "weight" : 8, "cost" : 1}]} | json_instruct | {"type": "object", "properties": {"weight": {"type": "integer"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "weight": {"type": "integer"}, "cost": {"type": "integer"}}, "required": ["id", "weight", "cost"]}}}, "required": ["weight", "items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"planning-permission-status": {"type": "string"}, "site-plan-url": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-history": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "point": {"type": "string"}, "site-address": {"type": "string"}, "ownership-status": {"type": "string"}, "deliverable": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-status", "site-plan-url", "organisation", "planning-permission-history", "site", "maximum-net-dwellings", "minimum-net-dwellings", "point", "site-address", "ownership-status", "deliverable", "start-date", "planning-permission-type", "notes", "planning-permission-date", "name", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [0.254879, 50.842439]}, "properties" : {"planning-permission-status" : "permissioned", "site-plan-url" : "http://www.wealden.gov.uk/Wealden/Residents/Planning_and_Building_Control/Planning_Policy/Brownfield_Register/PPolicy_Brownfield_Register.aspx", "organisation" : "local-authority-eng:WEA", "planning-permission-history" : "http://www.planning.wealden.gov.uk/searchresults.aspx?SearchType=15&ApplicationNumber=2017/0839", "site" : "BFR26", "maximum-net-dwellings" : "24", "minimum-net-dwellings" : "24", "point" : "POINT(0.254879 50.842439)", "site-address" : "The Old Loom Mill, Ersham Road, Hailsham", "ownership-status" : "not owned by a public authority", "deliverable" : "yes", "start-date" : "2018-12-13", "planning-permission-type" : "outline planning permission", "notes" : "Total of 24 residential units comprising a mixture of 3, 4, and 5 bedroom houses", "planning-permission-date" : "2017-10-13", "name" : "BFR26", "hectares" : "4.67", "slug" : "/brownfield-land/local-authority-eng/WEA/BFR26", "entity" : 497420, "entry-date" : "2018-12-13"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"planning-permission-status": {"type": "string"}, "site-plan-url": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-history": {"type": "string"}, "site": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "point": {"type": "string"}, "site-address": {"type": "string"}, "ownership-status": {"type": "string"}, "deliverable": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-type": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "name": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-status", "site-plan-url", "organisation", "planning-permission-history", "site", "maximum-net-dwellings", "minimum-net-dwellings", "point", "site-address", "ownership-status", "deliverable", "start-date", "planning-permission-type", "notes", "planning-permission-date", "name", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"add": {"type": "array", "items": {"type": "object", "properties": {"authors": {"type": "string"}, "epubNumberOfPages": {"type": "integer"}, "id": {"type": "integer"}, "isbn": {"type": "string"}, "pageLocalId": {"type": "string"}, "pageNumberForDisplay": {"type": "string"}, "pageSequenceNumber": {"type": "integer"}, "pageText": {"type": "string"}, "publisher": {"type": "string"}, "title": {"type": "string"}, "topicNames": {"type": "null"}, "topicNamesForDisplay": {"type": "string"}, "topicNames_facet": {"type": "null"}, "yearOfPublication": {"type": "integer"}}, "required": ["authors", "epubNumberOfPages", "id", "isbn", "pageLocalId", "pageNumberForDisplay", "pageSequenceNumber", "pageText", "publisher", "title", "topicNames", "topicNamesForDisplay", "topicNames_facet", "yearOfPublication"]}}}, "required": ["add"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"add" : [{"authors" : "Herscher, Andrew", "epubNumberOfPages" : 316, "id" : 3226, "isbn" : "9780472029174", "pageLocalId" : "page_140", "pageNumberForDisplay" : "140", "pageSequenceNumber" : 148, "pageText" : "\nTrtl\nIn 2003 and 2004, abandoned buildings, bridges and road signs in and around downtown Detroit began to be tagged with graffiti featuring cartoon turtles and the words \u201ctrtl,\u201d \u201ctrdl,\u201d \u201cturdl,\u201d \u201cturtl,\u201d or \u201cturtdlz.\u201d After turtles appeared on a sculpture outside of the Detroit Artists' Market and on the Detroit Institute of Art's regal building, turtle-tagging became the object of police attention, public critique and media speculation alike.\nMost generally, turtles were understood to signify \u201cslowness.\u201d Their status as subject matter for graffiti in Detroit was thus posed as a comment on the slowness with which Detroit was being reconstructed, as if the graffiti were calling for the eradication of the derelict surfaces on which they were themselves inscribed. More precisely, however, the enigmatic action of turtle-tagging converted the city's surfaces into mirrors that reflected the the city's own collective sense of itself. The \u201cslowness\u201d ascribed to the turtle-tagger, outed by the Detroit Free Press in 2004 as the graffiti artist, Ronald Scherz, was actually a product of the artist's audience. This audience saw an image they themselves projected onto turtles\u2014the image of a city historically constructed on the basis of mobility and speed but one currently defined by torpor and inacitivity.\n", "publisher" : "The University of Michigan Press", "title" : "The Unreal Estate Guide to Detroit", "topicNames" : null, "topicNamesForDisplay" : "[]", "topicNames_facet" : null, "yearOfPublication" : 0}]} | json_instruct | {"type": "object", "properties": {"add": {"type": "array", "items": {"type": "object", "properties": {"authors": {"type": "string"}, "epubNumberOfPages": {"type": "integer"}, "id": {"type": "integer"}, "isbn": {"type": "string"}, "pageLocalId": {"type": "string"}, "pageNumberForDisplay": {"type": "string"}, "pageSequenceNumber": {"type": "integer"}, "pageText": {"type": "string"}, "publisher": {"type": "string"}, "title": {"type": "string"}, "topicNames": {"type": "null"}, "topicNamesForDisplay": {"type": "string"}, "topicNames_facet": {"type": "null"}, "yearOfPublication": {"type": "integer"}}, "required": ["authors", "epubNumberOfPages", "id", "isbn", "pageLocalId", "pageNumberForDisplay", "pageSequenceNumber", "pageText", "publisher", "title", "topicNames", "topicNamesForDisplay", "topicNames_facet", "yearOfPublication"]}}}, "required": ["add"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3212030002", "district_id" : "3212030", "name" : "BABAKANJAYA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_1fumq1yk", "name" : "Czepeku"}, "date" : {"day" : 1618876800, "full" : 1618940214, "month" : 1617235200, "week" : 1618704000}, "id" : "t3_muvs6x", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 172661, "fullUrl" : "https://preview.redd.it/fd90t8xw6du61.jpg?auto=webp&s=2d30809bf662179fe546e8ce28c6e3871d61c797", "hash" : "3a28179429", "height" : 1336, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAgDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUH/8QAIhAAAgAGAgIDAAAAAAAAAAAAAQIAAwQFERIUIQZRE0Gh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwT/xAAaEQACAgMAAAAAAAAAAAAAAAAAAQMxBBIT/9oADAMBAAIRAxEAPwCmvmrvZEt6W9UlNI+MTzjcNp2CMfkIz+XS1iWbn01O3FVNRLJyjda7E5z7Hv7hAc9SNZ00luj/2Q==", "thumbnailUrl" : "https://a.thumbs.redditmedia.com/15kNSi9tR_XEjZhKVERGgMMalIRyyqdm9cClurrAqR0.jpg", "url" : "https://preview.redd.it/fd90t8xw6du61.jpg?width=640&crop=smart&auto=webp&s=072c47c266a5f48cb1a3d2985416cf2fac7ebb8c", "width" : 640}, "score" : {"comments" : 4, "downs" : 0, "isCurated" : true, "ratio" : 1, "ups" : 249, "value" : 249}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Encounter"], "title" : "Secret Fey Fountain", "url" : "https://www.reddit.com/r/dndmaps/comments/muvs6x/secret_fey_fountain_23x48/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"page_hash": {"type": "string"}, "paragraphs": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}, "monsters": {"type": "array", "items": {}}}, "required": ["page_hash", "paragraphs", "monsters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"page_hash" : "aefb43b264e7bc4622cfdea57471f3a5b6ea282fc23fa0ab9b2310812e65da50", "paragraphs" : [{"type" : "text", "text" : "Le matin venu, vous chevauchez \u00e0 travers Saint-Jean-d'Acre jusqu'\u00e0 la sortie de la ville. Sur votre passage, les gens s'arr\u00eatent. Certains vous saluent bas, d'autres vous jettent des regards noirs. Vous arrivez bient\u00f4t aux portes de la ville o\u00f9 les gardes, un peu \u00e9tonn\u00e9s de vous voir en arri\u00e8re de la troupe du roi Richard, vous souhaitent bonne route. La ville se fait de plus en plus lointaine. Peu apr\u00e8s, vous arrivez \u00e0 une bifurcation. La route se s\u00e9pare en deux chemins distincts avant de s'enfoncer dans la plaine d'un c\u00f4t\u00e9 et dans les collines de l'autre."}, {"type" : "text", "text" : "Prendrez-vous la voie qui va :"}, {"type" : "link", "text" : "A gauche vers les collines ?", "hash" : "2200de5defa177b8fbc73cc31b0c9b9e4cdfdb13b1001bdc578b8530ba876e1d"}, {"type" : "link", "text" : "A droite dans la plaine rocailleuse ?", "hash" : "3e752aac54c31c264864ff31d256af53b6c29e13a65508abcf30e0f90417225d"}], "monsters" : []} | json_instruct | {"type": "object", "properties": {"page_hash": {"type": "string"}, "paragraphs": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}, "monsters": {"type": "array", "items": {}}}, "required": ["page_hash", "paragraphs", "monsters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[[4, 27], [41, 0], [36, 10], [41, 8], [14, 22], [3, 36], [21, 29], [41, 48], [24, 29], [39, 19], [22, 14], [3, 24], [32, 15], [6, 6], [9, 14], [25, 26], [28, 19], [9, 44], [14, 32], [5, 10], [15, 34], [43, 29], [40, 11], [7, 22], [28, 0], [25, 5], [39, 5], [19, 12], [0, 5], [11, 45], [10, 32], [8, 5], [5, 21], [4, 15], [35, 48], [3, 9], [46, 47], [35, 36], [26, 34], [21, 19], [26, 6], [9, 9], [20, 42], [47, 38], [12, 34], [5, 10]]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["dl-rpc-server", "touchka-service"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Recharts.js": {"type": "string"}, "Recharts.min.js": {"type": "string"}}, "required": ["Recharts.js", "Recharts.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Recharts.js" : "sha256-8hlq8EXsJkQUxCjYPiH5maurX139ITMs0A3dPkNuLI8=", "Recharts.min.js" : "sha256-xvVhPctvKKKsoqYZPZPlO4IZITGMiDECqY5OWjLOn4g="} | json_instruct | {"type": "object", "properties": {"Recharts.js": {"type": "string"}, "Recharts.min.js": {"type": "string"}}, "required": ["Recharts.js", "Recharts.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"molssi_bse_schema": {"type": "object", "properties": {"schema_type": {"type": "string"}, "schema_version": {"type": "string"}}, "required": ["schema_type", "schema_version"]}, "names": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": {}}, "family": {"type": "string"}, "description": {"type": "string"}, "role": {"type": "string"}, "auxiliaries": {"type": "object", "properties": {}, "required": []}}, "required": ["molssi_bse_schema", "names", "flags", "family", "description", "role", "auxiliaries"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"molssi_bse_schema" : {"schema_type" : "metadata", "schema_version" : "0.1"}, "names" : ["def2-universal-JFIT"], "flags" : [], "family" : "ahlrichs_fit", "description" : "Coulomb fitting auxiliary basis for def2 basis sets", "role" : "jfit", "auxiliaries" : {}} | json_instruct | {"type": "object", "properties": {"molssi_bse_schema": {"type": "object", "properties": {"schema_type": {"type": "string"}, "schema_version": {"type": "string"}}, "required": ["schema_type", "schema_version"]}, "names": {"type": "array", "items": {"type": "string"}}, "flags": {"type": "array", "items": {}}, "family": {"type": "string"}, "description": {"type": "string"}, "role": {"type": "string"}, "auxiliaries": {"type": "object", "properties": {}, "required": []}}, "required": ["molssi_bse_schema", "names", "flags", "family", "description", "role", "auxiliaries"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"f5": {"type": "string"}}, "required": ["f5"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"atom-workspace" : {"f5" : "sakhe:toggle"}} | json_instruct | {"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"f5": {"type": "string"}}, "required": ["f5"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/8d9b2346-1095-3630-9f2c-cce70333a64d", "expression" : [{"id" : "http://data.doremus.org/expression/b4bd0c4d-0289-36c0-a2a5-419fe9647c50"}, {"id" : "http://data.doremus.org/expression/fef031b9-9c8b-36ea-a18d-33d835d4e9ab"}, {"id" : "http://data.doremus.org/expression/700aeca2-2b1b-3ce9-a5af-1f20fb7f0e2c"}, {"id" : "http://data.doremus.org/expression/a6fb6f5c-0ca6-32c9-82ea-ae1cb9841dc2"}, {"id" : "http://data.doremus.org/expression/ab961f43-5d5f-3f17-a5e6-8b18f4bbe1e9"}, {"id" : "http://data.doremus.org/expression/33d86b5c-25e9-35ff-b06a-2a1b4d000806"}, {"id" : "http://data.doremus.org/expression/14d6e763-fc5f-35c1-a1db-31b01931f0ff"}, {"id" : "http://data.doremus.org/expression/55183856-5c01-3693-a02b-e06cb313fc29"}, {"id" : "http://data.doremus.org/expression/6a6c2fa2-8715-3c03-9005-d906c431b48c"}, {"id" : "http://data.doremus.org/expression/9ee3ec69-4b8b-36f5-a9d0-d426b66e96d6"}, {"id" : "http://data.doremus.org/expression/03b74ad3-2331-3596-a0f6-93b4f1555de4"}, {"id" : "http://data.doremus.org/expression/c0943c6c-eb84-3d82-9753-397d6fa74cca"}, {"id" : "http://data.doremus.org/expression/058d609e-b371-3805-9afd-da181093f1c0"}, {"id" : "http://data.doremus.org/expression/0a796da1-e45d-378b-bdbb-13a27a3e65f2"}, {"id" : "http://data.doremus.org/expression/900b7ef2-999e-3d78-9e36-eed3b75dfc4c"}, {"id" : "http://data.doremus.org/expression/b9c96d54-4132-3082-8238-d7e205a844d3"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K15864": {"type": "string"}, "K00368": {"type": "string"}}, "required": ["K15864", "K00368"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00910": {"type": "string"}, "rn01120": {"type": "string"}}, "required": ["rn00910", "rn01120"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "", "definition" : "Nitric oxide + H2O + Oxidized azurin <=> Nitrite + Reduced azurin + H+", "orthologs" : {"K15864" : "nitrite reductase (NO-forming) / hydroxylamine reductase [EC:1.7.2.1 1.7.99.1]", "K00368" : "nitrite reductase (NO-forming) [EC:1.7.2.1]"}, "name" : "nitric-oxide:oxidized azurin oxidoreductase", "product_stoichiometries" : ["1", "1", "1"], "enzymes" : ["1.7.2.1"], "equation" : "C00533 + C00001 + C05357 <=> C00088 + C05358 + C00080", "glycans" : false, "substrate_stoichiometries" : ["1", "1", "1"], "rpairs" : {}, "entry_id" : "R00785", "pathways" : {"rn00910" : "Nitrogen metabolism", "rn01120" : "Microbial metabolism in diverse environments"}, "products" : ["C00088", "C05358", "C00080"], "substrates" : ["C00533", "C00001", "C05357"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K15864": {"type": "string"}, "K00368": {"type": "string"}}, "required": ["K15864", "K00368"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00910": {"type": "string"}, "rn01120": {"type": "string"}}, "required": ["rn00910", "rn01120"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "status": {"type": "string"}, "manufacturer": {"type": "string"}, "manufactureDate": {"type": "string"}, "expirationDate": {"type": "string"}, "lotNumber": {"type": "string"}, "serialNumber": {"type": "string"}, "deviceName": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "modelNumber": {"type": "string"}, "type": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}, "patient": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}, "note": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["resourceType", "id", "text", "status", "manufacturer", "manufactureDate", "expirationDate", "lotNumber", "serialNumber", "deviceName", "modelNumber", "type", "patient", "note"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "Device", "id" : "Example-Device-898989dv", "text" : {"status" : "generated", "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>status</b>: active</p><p><b>manufacturer</b>: Melbea</p><p><b>manufactureDate</b>: 2020-11-20</p><p><b>expirationDate</b>: 2020-05-19</p><p><b>lotNumber</b>: 5444223455</p><p><b>serialNumber</b>: 23322333-56</p><h3>DeviceNames</h3><table class=\"grid\"><tr><td>-</td><td><b>Name</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>Dispositivo intrauterino copper-T MelbeaGold</td><td>model-name</td></tr></table><p><b>modelNumber</b>: fiatsa</p><p><b>type</b>: <span title=\"Codes: {http://snomed.info/sct 268460000}\">dispositivo anticonceptivo intrauterino</span></p><p><b>patient</b>: <a href=\"Patient-Example-Patient-87356d0d.html\">Generated Summary: National Person Identifier Chile: 347827348 (OFFICIAL), Medical Record Number: HC-6ef0a6d7 (USUAL); active; Maria Victoria null (OFFICIAL), Maria Jake(NICKNAME); Phone: +56(2)1111-1111, Phone: +56(2)2222-2222, jjmaria@example.com; gender: female; birthDate: 1975-08-14; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-MaritalStatus M}\">Married</span></a></p><p><b>note</b>: Device in perfect condition</p></div>"}, "status" : "active", "manufacturer" : "Melbea", "manufactureDate" : "2020-11-20", "expirationDate" : "2020-05-19", "lotNumber" : "5444223455", "serialNumber" : "23322333-56", "deviceName" : [{"name" : "Dispositivo intrauterino copper-T MelbeaGold", "type" : "model-name"}], "modelNumber" : "fiatsa", "type" : {"coding" : [{"system" : "http://snomed.info/sct", "code" : "268460000", "display" : "dispositivo anticonceptivo intrauterino"}]}, "patient" : {"reference" : "Patient/Example-Patient-87356d0d"}, "note" : [{"text" : "Device in perfect condition"}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "status": {"type": "string"}, "manufacturer": {"type": "string"}, "manufactureDate": {"type": "string"}, "expirationDate": {"type": "string"}, "lotNumber": {"type": "string"}, "serialNumber": {"type": "string"}, "deviceName": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "modelNumber": {"type": "string"}, "type": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}, "patient": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}, "note": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["resourceType", "id", "text", "status", "manufacturer", "manufactureDate", "expirationDate", "lotNumber", "serialNumber", "deviceName", "modelNumber", "type", "patient", "note"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "theme_colors": {"type": "object", "properties": {"foreground": {"type": "string"}, "background": {"type": "string"}, "black": {"type": "string"}, "red": {"type": "string"}, "green": {"type": "string"}, "brown": {"type": "string"}, "blue": {"type": "string"}, "magenta": {"type": "string"}, "cyan": {"type": "string"}, "white": {"type": "string"}, "light_black": {"type": "string"}, "light_red": {"type": "string"}, "light_green": {"type": "string"}, "light_brown": {"type": "string"}, "light_blue": {"type": "string"}, "light_magenta": {"type": "string"}, "light_cyan": {"type": "string"}, "light_white": {"type": "string"}}, "required": ["foreground", "background", "black", "red", "green", "brown", "blue", "magenta", "cyan", "white", "light_black", "light_red", "light_green", "light_brown", "light_blue", "light_magenta", "light_cyan", "light_white"]}}, "required": ["name", "theme_colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Urple", "theme_colors" : {"foreground" : "#877a9b", "background" : "#1b1b23", "black" : "#000000", "red" : "#b0425b", "green" : "#37a415", "brown" : "#ad5c42", "blue" : "#564d9b", "magenta" : "#6c3ca1", "cyan" : "#808080", "white" : "#87799c", "light_black" : "#5d3225", "light_red" : "#ff6388", "light_green" : "#29e620", "light_brown" : "#f08161", "light_blue" : "#867aed", "light_magenta" : "#a05eee", "light_cyan" : "#eaeaea", "light_white" : "#bfa3ff"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "theme_colors": {"type": "object", "properties": {"foreground": {"type": "string"}, "background": {"type": "string"}, "black": {"type": "string"}, "red": {"type": "string"}, "green": {"type": "string"}, "brown": {"type": "string"}, "blue": {"type": "string"}, "magenta": {"type": "string"}, "cyan": {"type": "string"}, "white": {"type": "string"}, "light_black": {"type": "string"}, "light_red": {"type": "string"}, "light_green": {"type": "string"}, "light_brown": {"type": "string"}, "light_blue": {"type": "string"}, "light_magenta": {"type": "string"}, "light_cyan": {"type": "string"}, "light_white": {"type": "string"}}, "required": ["foreground", "background", "black", "red", "green", "brown", "blue", "magenta", "cyan", "white", "light_black", "light_red", "light_green", "light_brown", "light_blue", "light_magenta", "light_cyan", "light_white"]}}, "required": ["name", "theme_colors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Ian MacLeod": {"type": "string"}, "Ingmar Stein": {"type": "string"}}, "required": ["Ian MacLeod", "Ingmar Stein"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"osx": {"type": "string"}}, "required": ["osx"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}, "public_header_files": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "description": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "authors", "source", "platforms", "source_files", "frameworks", "requires_arc", "public_header_files", "license", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SMJobKit", "version" : "0.0.9", "summary" : "Framework that simplifies SMJobBless.", "homepage" : "https://github.com/IngmarStein/SMJobKit", "authors" : {"Ian MacLeod" : "ian@nevir.net", "Ingmar Stein" : "IngmarStein@gmail.com"}, "source" : {"git" : "https://github.com/IngmarStein/SMJobKit.git", "tag" : "0.0.9"}, "platforms" : {"osx" : "10.9"}, "source_files" : "Sources/**/*.{h,swift}", "frameworks" : ["ServiceManagement", "Security"], "requires_arc" : true, "public_header_files" : "Sources/*.h", "license" : {"type" : "Apache License, Version 2.0", "file" : "LICENSE.txt"}, "description" : "Using SMJobBless and friends is rather ...painful. SMJobKit does everything in its power to alleviate that and get you back to writing awesome OS X apps.\n\nSMJobKit is more than just a framework/library to link against. It gives you:\n- A Xcode target template for SMJobBless-ready launchd services, completely configured for proper code signing!\n- A client abstraction that manages installing/upgrading your app's service(s).\n- A service library that pulls in as little additional code as possible. Less surface area for security vulnerabilities!"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Ian MacLeod": {"type": "string"}, "Ingmar Stein": {"type": "string"}}, "required": ["Ian MacLeod", "Ingmar Stein"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"osx": {"type": "string"}}, "required": ["osx"]}, "source_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "requires_arc": {"type": "boolean"}, "public_header_files": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "description": {"type": "string"}}, "required": ["name", "version", "summary", "homepage", "authors", "source", "platforms", "source_files", "frameworks", "requires_arc", "public_header_files", "license", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"directory": {"type": "string"}, "defaultZoom": {"type": "number"}, "isPixelStage": {"type": "boolean"}, "boyfriend": {"type": "array", "items": {"type": "integer"}}, "girlfriend": {"type": "array", "items": {"type": "integer"}}, "opponent": {"type": "array", "items": {"type": "integer"}}}, "required": ["directory", "defaultZoom", "isPixelStage", "boyfriend", "girlfriend", "opponent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directory" : "", "defaultZoom" : 0.9, "isPixelStage" : false, "boyfriend" : [1200, 1250], "girlfriend" : [600, 1180], "opponent" : [100, 1150]} | json_instruct | {"type": "object", "properties": {"directory": {"type": "string"}, "defaultZoom": {"type": "number"}, "isPixelStage": {"type": "boolean"}, "boyfriend": {"type": "array", "items": {"type": "integer"}}, "girlfriend": {"type": "array", "items": {"type": "integer"}}, "opponent": {"type": "array", "items": {"type": "integer"}}}, "required": ["directory", "defaultZoom", "isPixelStage", "boyfriend", "girlfriend", "opponent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"subunits": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"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": {"name": {"type": "string"}}, "required": ["name"]}, "id": {"type": "integer"}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "id", "arcs"]}}}, "required": ["type", "name", "crs", "geometries"]}, "places": {"type": "object", "properties": {"type": {"type": "null"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}}, "required": ["type", "name", "crs"]}}, "required": ["subunits", "places"]}, "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" : {"subunits" : {"type" : "GeometryCollection", "name" : "msr_gadmin1", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"name" : "Saint Georges"}, "id" : 1767, "arcs" : [[0]]}, {"type" : "Polygon", "properties" : {"name" : "Saint Peter"}, "id" : 1768, "arcs" : [[1, 2]]}, {"type" : "Polygon", "properties" : {"name" : "Saint Anthon"}, "id" : 1766, "arcs" : [[3]]}, {"type" : "Polygon", "properties" : {"name" : "Saint Georges"}, "id" : 5163, "arcs" : [[0]]}, {"type" : "Polygon", "properties" : {"name" : "Saint Anthon"}, "id" : 5162, "arcs" : [[3]]}, {"type" : "Polygon", "properties" : {"name" : "Saint Peter"}, "id" : 5164, "arcs" : [[1, 2]]}]}, "places" : {"type" : null, "name" : "ne_10m_populated_places", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}}}, "arcs" : [[[4525, 3756], [2937, 3662], [2301, -2103], [236, -2581], [-5474, 1022]], [[944, 4314], [2979, 5685], [2242, -96], [1209, -2485], [-2849, -3662]], [[4525, 3756], [-3581, 558]], [[944, 4314], [2744, -201], [6046, -1551], [-620, -2199], [-3539, -363], [-5575, 3346], [944, 968]]], "transform" : {"scale" : [9.417521952401921e-06, 1.4529155247067678e-05], "translate" : [-62.24180603027344, 16.674861907958984]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"subunits": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"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": {"name": {"type": "string"}}, "required": ["name"]}, "id": {"type": "integer"}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "id", "arcs"]}}}, "required": ["type", "name", "crs", "geometries"]}, "places": {"type": "object", "properties": {"type": {"type": "null"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}}, "required": ["type", "name", "crs"]}}, "required": ["subunits", "places"]}, "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": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urltweet": {"type": "string"}}, "required": ["text", "created", "type", "urltweet"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "The <a href=\"https://twitter.com/SaraMeagher1/status/1216461177288634370\">cutest video</a> ever. I love you are you stupid man?", "created" : "Tue, 14 Jan 2020 20:33:43 GMT", "type" : "outline", "urltweet" : "https://twitter.com/SaraMeagher1/status/1216461177288634370"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urltweet": {"type": "string"}}, "required": ["text", "created", "type", "urltweet"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[146.04080098800011, -36.77298700699998], [146.04383600000006, -36.758674001999964], [146.04396604900012, -36.75859979799998], [146.04566651100004, -36.75058274899993], [146.0455709910001, -36.750498999999934], [146.0259580080001, -36.74781799799996], [146.02482603300007, -36.747827007999945], [146.02302399200005, -36.747416991999955], [146.02087797500008, -36.747125006999966], [146.02262001000008, -36.739898998999934], [146.03225298100006, -36.68886800699994], [146.0577560050001, -36.69274499599993], [146.0701280080001, -36.69436100799993], [146.07011698500003, -36.69441199499994], [146.0881319980001, -36.74121499699993], [146.08814327700009, -36.74130914299997], [146.0872800520001, -36.745523109999965], [146.08533244800003, -36.754802136999956], [146.08522780300007, -36.75497070799997], [146.08149297700004, -36.77301699599997], [146.07953099200006, -36.77828699899993], [146.07588398500002, -36.782620993999956], [146.05939401500007, -36.78041499799997], [146.05861298900004, -36.77607299299996], [146.05866000000003, -36.773983990999966], [146.0443679870001, -36.77206700299996], [146.04397700000004, -36.773302006999984], [146.04475499700004, -36.775644994999936], [146.04303000700008, -36.774092992999954], [146.04080098800011, -36.77298700699998]]]}, "properties" : {"name" : "Moorngag", "state" : "VIC"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-786v-6x87-g35h", "modified" : "2022-04-29T02:57:43Z", "published" : "2022-04-29T02:57:43Z", "aliases" : ["CVE-2004-0428"], "details" : "Unknown vulnerability in CoreFoundation in Mac OS X 10.3.3 and Mac OS X 10.3.3 Server, related to \"the handling of an environment variable,\" has unknown attack vectors and unknown impact.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2004-0428"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/16051"}, {"type" : "WEB", "url" : "http://lists.virus.org/macsec-0405/msg00000.html"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/11539"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1010045"}, {"type" : "WEB", "url" : "http://www.auscert.org.au/render.html?it=4070"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/10270"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"900010363": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900010364": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900010365": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900010363", "900010364", "900010365"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900010363" : {"nama" : "TPS 1", "dapil" : [1101, 11109, 2111203]}, "900010364" : {"nama" : "TPS 2", "dapil" : [1101, 11109, 2111203]}, "900010365" : {"nama" : "TPS 3", "dapil" : [1101, 11109, 2111203]}} | json_instruct | {"type": "object", "properties": {"900010363": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900010364": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900010365": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900010363", "900010364", "900010365"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Combine sweetened condensed milk, skim milk, and vanilla extract in an airtight container and shake well to blend. Label the container with the expiration date of the milk used."], "ingredients" : ["1 (14 ounce) can sweetened condensed milk", "1 3/4 cups skim milk", "2 teaspoons vanilla extract"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Homemade Coffee Creamer", "url" : "http://allrecipes.com/recipe/256425/homemade-coffee-creamer/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : 18412, "hash" : 3841753134, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "version": {"type": "string"}, "default_locale": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage_url": {"type": "string"}, "browser_specific_settings": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}, "strict_min_version": {"type": "string"}, "update_url": {"type": "string"}}, "required": ["id", "strict_min_version", "update_url"]}}, "required": ["gecko"]}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "96": {"type": "string"}}, "required": ["48", "96"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "css", "js", "run_at"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "options_ui": {"type": "object", "properties": {"open_in_tab": {"type": "boolean"}, "page": {"type": "string"}}, "required": ["open_in_tab", "page"]}}, "required": ["manifest_version", "version", "default_locale", "name", "description", "author", "homepage_url", "browser_specific_settings", "icons", "permissions", "content_scripts", "background", "options_ui"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "version" : "1.1", "default_locale" : "en", "name" : "__MSG_extensionName__", "description" : "__MSG_extensionDescription__", "author" : "toshiaki.sp", "homepage_url" : "https://toshiakisp.github.io/akahuku-firefox-sp/", "browser_specific_settings" : {"gecko" : {"id" : "idcounter-webext@toshiakisp.github.io", "strict_min_version" : "57.0a1", "update_url" : "https://toshiakisp.github.io/akahuku-firefox-sp/idcounter_updates.json"}}, "icons" : {"48" : "icons/idcounter-48.png", "96" : "icons/idcounter-96.png"}, "permissions" : ["storage"], "content_scripts" : [{"matches" : ["*://*.2chan.net/*/res/*.htm*"], "css" : ["idcounter.css"], "js" : ["idcounter.js"], "run_at" : "document_end"}], "background" : {"scripts" : ["background/pref.js", "background/pref_default.js"]}, "options_ui" : {"open_in_tab" : false, "page" : "options/options.html"}} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "version": {"type": "string"}, "default_locale": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage_url": {"type": "string"}, "browser_specific_settings": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}, "strict_min_version": {"type": "string"}, "update_url": {"type": "string"}}, "required": ["id", "strict_min_version", "update_url"]}}, "required": ["gecko"]}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "96": {"type": "string"}}, "required": ["48", "96"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "css", "js", "run_at"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "options_ui": {"type": "object", "properties": {"open_in_tab": {"type": "boolean"}, "page": {"type": "string"}}, "required": ["open_in_tab", "page"]}}, "required": ["manifest_version", "version", "default_locale", "name", "description", "author", "homepage_url", "browser_specific_settings", "icons", "permissions", "content_scripts", "background", "options_ui"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"jquery.dirtyforms.dialogs.bootstrap.js": {"type": "string"}, "jquery.dirtyforms.dialogs.bootstrap.min.js": {"type": "string"}}, "required": ["jquery.dirtyforms.dialogs.bootstrap.js", "jquery.dirtyforms.dialogs.bootstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.dirtyforms.dialogs.bootstrap.js" : "sha512-MEV0jPt0uUNyVet/299sZ1OAamFZz0mZVNkpb/Fk9gHHjg/NGfysCoH7PDLbR/f1u6xYoL+10zHanoo5ZZvgWA==", "jquery.dirtyforms.dialogs.bootstrap.min.js" : "sha512-oJztCc5xyeoEbDyx3SiPAXC4kYywsQOnMRTheLEPUKUMNAebrIDneg0KPTXWHEkQgeCeaxus38bI0YGt5dIkvQ=="} | json_instruct | {"type": "object", "properties": {"jquery.dirtyforms.dialogs.bootstrap.js": {"type": "string"}, "jquery.dirtyforms.dialogs.bootstrap.min.js": {"type": "string"}}, "required": ["jquery.dirtyforms.dialogs.bootstrap.js", "jquery.dirtyforms.dialogs.bootstrap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var _jsxFileName = \"/Users/daslappy/Desktop/Projects/FRNSWEB/frensHouseSite/src/components/ContentBlock/index.tsx\";\nimport LeftContentBlock from \"./LeftContentBlock\";\nimport RightContentBlock from \"./RightContentBlock\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nconst ContentBlock = props => {\n if (props.type === \"left\") return /*#__PURE__*/_jsxDEV(LeftContentBlock, { ...props\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 37\n }, this);\n if (props.type === \"right\") return /*#__PURE__*/_jsxDEV(RightContentBlock, { ...props\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 7,\n columnNumber: 38\n }, this);\n return null;\n};\n\n_c = ContentBlock;\nexport default ContentBlock;\n\nvar _c;\n\n$RefreshReg$(_c, \"ContentBlock\");", "map" : {"version" : 3, "sources" : ["/Users/daslappy/Desktop/Projects/FRNSWEB/frensHouseSite/src/components/ContentBlock/index.tsx"], "names" : ["LeftContentBlock", "RightContentBlock", "ContentBlock", "props", "type"], "mappings" : ";AAAA,OAAOA,gBAAP,MAA6B,oBAA7B;AACA,OAAOC,iBAAP,MAA8B,qBAA9B;;;AAGA,MAAMC,YAAY,GAAIC,KAAD,IAA8B;AACjD,MAAIA,KAAK,CAACC,IAAN,KAAe,MAAnB,EAA2B,oBAAO,QAAC,gBAAD,OAAsBD;AAAtB;AAAA;AAAA;AAAA;AAAA,UAAP;AAC3B,MAAIA,KAAK,CAACC,IAAN,KAAe,OAAnB,EAA4B,oBAAO,QAAC,iBAAD,OAAuBD;AAAvB;AAAA;AAAA;AAAA;AAAA,UAAP;AAC5B,SAAO,IAAP;AACD,CAJD;;KAAMD,Y;AAMN,eAAeA,YAAf", "sourcesContent" : ["import LeftContentBlock from \"./LeftContentBlock\";\nimport RightContentBlock from \"./RightContentBlock\";\nimport { ContentBlockProps } from \"./types\";\n\nconst ContentBlock = (props: ContentBlockProps) => {\n if (props.type === \"left\") return <LeftContentBlock {...props} />;\n if (props.type === \"right\") return <RightContentBlock {...props} />;\n return null;\n};\n\nexport default ContentBlock;\n"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "83b47da12994a021fb6798036af6069dd9155485"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "28b461b7bf492fe1e81c", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "mappings": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "sources": {"type": "array", "items": {"type": "string"}}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "mappings", "names", "sources", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import merge from 'lodash.merge';\nexport function configReducer(state, action) {\n return merge({}, state, action);\n}", "map" : {"version" : 3, "mappings" : "AACA,OAAOA,KAAP,MAAkB,cAAlB;AAEA,OAAM,SAAUC,aAAV,CAAwBC,KAAxB,EAA2CC,MAA3C,EAAyD;AAC7D,SAAOH,KAAK,CAAC,EAAD,EAAKE,KAAL,EAAYC,MAAZ,CAAZ;AACD", "names" : ["merge", "configReducer", "state", "action"], "sources" : ["D:\\programing\\Blockchain\\smartcontract-lottery-main\\front_end\\node_modules\\@usedapp\\core\\src\\providers\\config\\reducer.ts"], "sourcesContent" : ["import { FullConfig, Config } from '../..'\nimport merge from 'lodash.merge'\n\nexport function configReducer(state: FullConfig, action: Config): FullConfig {\n return merge({}, state, action)\n}\n"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "mappings": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "sources": {"type": "array", "items": {"type": "string"}}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "mappings", "names", "sources", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 62283, "cartId" : "2b563227-5223-442f-be57-38a5c010fd2b", "preferredProducts" : [3985, 2005, 4141, 1238, 3530, 3473], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "null"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Update" : "2020-03-27 18:20:49", "answer" : ["A"], "category" : "soa", "choices" : ["A. Creating the Auto Scaling launch config", "B. Creating the Auto Scaling policy", "C. Creating the Auto Scaling tags", "D. Creating the Auto Scaling instance"], "detail" : "Which of the following comes before Auto Scaling group creation?", "explanation" : ["The Auto Scaling launch config is the first step that should be run before a user can create an Auto Scaling group. The launch config has all the information, such as the instance type, AMI ID, and other instance launch parameters. The Auto Scaling group uses this launch config to create a new group.", "Reference: http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/LaunchConfiguration.html"], "id" : 425, "saved_answer" : null, "type" : "Multiple Choice"} | json_instruct | {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "null"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "overreach", "definition" : "1. To reach above or beyond in any direction. 2. To deceive, or get the better of, by artifice or cunning; to outwit; to cheat. Shak.\n\n1. To reach too far; as: (a) To strike the toe of the hind foot against the heel or shoe of the forefoot; -- said of horses. (b) (Naut.) To sail on one tack farther than is necessary. Shak. 2. To cheat by cunning or deception.\n\nThe act of striking the heel of the fore foot with the toe of the hind foot; -- said of horses."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ItemType": {"type": "integer"}, "Id": {"type": "integer"}, "ShipId": {"type": "integer"}, "BuildFaction": {"type": "integer"}, "Components": {"type": "array", "items": {"type": "object", "properties": {"ComponentId": {"type": "integer"}, "Locked": {"type": "boolean"}, "X": {"type": "integer"}, "Y": {"type": "integer"}, "BarrelId": {"type": "integer"}, "KeyBinding": {"type": "integer"}}, "required": ["ComponentId", "Locked", "X", "Y", "BarrelId", "KeyBinding"]}}}, "required": ["ItemType", "Id", "ShipId", "BuildFaction", "Components"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ItemType" : 8, "Id" : 194, "ShipId" : 94, "BuildFaction" : 1, "Components" : [{"ComponentId" : 10, "Locked" : true, "X" : 12, "Y" : 26, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 19, "Y" : 25, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 24, "Y" : 20, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 25, "Y" : 9, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 21, "Y" : 4, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 15, "Y" : 4, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 4, "Y" : 9, "BarrelId" : -1, "KeyBinding" : -1}, {"ComponentId" : 10, "Locked" : true, "X" : 3, "Y" : 19, "BarrelId" : -1, "KeyBinding" : -1}]} | json_instruct | {"type": "object", "properties": {"ItemType": {"type": "integer"}, "Id": {"type": "integer"}, "ShipId": {"type": "integer"}, "BuildFaction": {"type": "integer"}, "Components": {"type": "array", "items": {"type": "object", "properties": {"ComponentId": {"type": "integer"}, "Locked": {"type": "boolean"}, "X": {"type": "integer"}, "Y": {"type": "integer"}, "BarrelId": {"type": "integer"}, "KeyBinding": {"type": "integer"}}, "required": ["ComponentId", "Locked", "X", "Y", "BarrelId", "KeyBinding"]}}}, "required": ["ItemType", "Id", "ShipId", "BuildFaction", "Components"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"vec_file_metadata": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "filedate": {"type": "string"}}, "required": ["filename", "filedate"]}}}, "required": ["vec_file_metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vec_file_metadata" : [{"filename" : "Cargo.toml", "filedate" : "1640893507.177558946s"}, {"filename" : "src/utils_mod.rs", "filedate" : "1638212344.400000000s"}, {"filename" : "src/crates_io_mod.rs", "filedate" : "1640785128.381949798s"}, {"filename" : "src/response_post_mod.rs", "filedate" : "1640695830.920364364s"}, {"filename" : "src/stdio_input_password_mod.rs", "filedate" : "1640783060.251910592s"}, {"filename" : "src/cargo_audit_mod.rs", "filedate" : "1640787160.601988324s"}, {"filename" : "src/html_mod.rs", "filedate" : "1639559466.260000000s"}, {"filename" : "src/auto_generated_files_mod.rs", "filedate" : "1640893344.417560760s"}, {"filename" : "src/cargo_registry_mod.rs", "filedate" : "1634981740.540000000s"}, {"filename" : "src/db_sled_mod", "filedate" : "1640880302.517706156s"}, {"filename" : "src/cargo_tree_mod.rs", "filedate" : "1640786976.231984829s"}, {"filename" : "src/lib.rs", "filedate" : "1640892703.367567907s"}, {"filename" : "src/crev_mod.rs", "filedate" : "1640712213.430707933s"}, {"filename" : "src/srv_methods_mod", "filedate" : "1640772592.381712148s"}, {"filename" : "src/bin", "filedate" : "1640785445.321955806s"}, {"filename" : "src/auto_generated_mod.rs", "filedate" : "1640893507.167558946s"}, {"filename" : "src/response_get_mod.rs", "filedate" : "1640887355.267627529s"}, {"filename" : "src/common_structs_mod.rs", "filedate" : "1640882262.907684301s"}]} | json_instruct | {"type": "object", "properties": {"vec_file_metadata": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "filedate": {"type": "string"}}, "required": ["filename", "filedate"]}}}, "required": ["vec_file_metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "trunnel", "definition" : "A trundle. [R.]\n\nSee Treenail."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new_version" : "0.24.1"} | json_instruct | {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "site-plan-url": {"type": "string"}, "site-address": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-history": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-type": {"type": "string"}, "start-date": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "ownership-status": {"type": "string"}, "planning-permission-date": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site", "site-plan-url", "site-address", "deliverable", "planning-permission-history", "organisation", "planning-permission-type", "start-date", "hectares", "planning-permission-status", "ownership-status", "planning-permission-date", "point", "minimum-net-dwellings", "name", "maximum-net-dwellings", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.144685, 51.437913]}, "properties" : {"site" : "WBR/17/0072", "site-plan-url" : "https://data.london.gov.uk/dataset/brownfield-land-register", "site-address" : "10 Fontenoy Road (Former care home)", "deliverable" : "yes", "planning-permission-history" : "https://planning1.wandsworth.gov.uk/Northgate/PlanningExplorer/DisplayAppDetails.aspx?AppNo=2015/5408", "organisation" : "local-authority-eng:WND", "planning-permission-type" : "full planning permission", "start-date" : "2017-12-13", "hectares" : "0.08", "planning-permission-status" : "permissioned", "ownership-status" : "owned by a public authority", "planning-permission-date" : "2016-04-04", "point" : "POINT(-0.144685 51.437913)", "minimum-net-dwellings" : "9", "name" : "WBR/17/0072", "maximum-net-dwellings" : "9", "slug" : "/brownfield-land/local-authority-eng/WND/WBR-17-0072", "entity" : 499007, "entry-date" : "2017-12-13"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "site-plan-url": {"type": "string"}, "site-address": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-history": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-type": {"type": "string"}, "start-date": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-status": {"type": "string"}, "ownership-status": {"type": "string"}, "planning-permission-date": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site", "site-plan-url", "site-address", "deliverable", "planning-permission-history", "organisation", "planning-permission-type", "start-date", "hectares", "planning-permission-status", "ownership-status", "planning-permission-date", "point", "minimum-net-dwellings", "name", "maximum-net-dwellings", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["test", "prepare"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"deep-props.get": {"type": "string"}}, "required": ["deep-props.get"]}, "devDependencies": {"type": "object", "properties": {"assert": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-jsdoc": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "jsdoc": {"type": "string"}, "standard": {"type": "string"}, "turndown": {"type": "string"}, "turndown-plugin-gfm": {"type": "string"}}, "required": ["assert", "eslint", "eslint-plugin-jsdoc", "eslint-plugin-node", "jsdoc", "standard", "turndown", "turndown-plugin-gfm"]}}, "required": ["name", "version", "description", "engines", "main", "scripts", "keywords", "author", "repository", "bugs", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "deep-props.set", "version" : "0.1.2", "description" : "Sets values within nested objects; creates structure if not found. Supports setting within Objects, Arrays, Maps, Sets, WeakMaps, and WeakSets; supports creation of Objects, Arrays, and Maps.", "engines" : {"node" : ">=8.7.0"}, "main" : "index.js", "scripts" : {"test" : "node test.js standalone", "prepare" : "npm test"}, "keywords" : ["setter", "data", "collection", "nested", "property", "object", "array", "map", "set", "weakmap", "weakset", "dot", "bracket", "notation"], "author" : "Justin Collier", "repository" : "github:jpcx/deep-props.set", "bugs" : {"url" : "https://github.com/jpcx/deep-props.set/issues", "email" : "jpcxme@gmail.com"}, "license" : "MIT", "dependencies" : {"deep-props.get" : "^0.1.6"}, "devDependencies" : {"assert" : "^1.4.1", "eslint" : "^4.19.1", "eslint-plugin-jsdoc" : "^3.5.0", "eslint-plugin-node" : "^6.0.1", "jsdoc" : "^3.5.5", "standard" : "^11.0.1", "turndown" : "^4.0.2", "turndown-plugin-gfm" : "^1.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["test", "prepare"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"deep-props.get": {"type": "string"}}, "required": ["deep-props.get"]}, "devDependencies": {"type": "object", "properties": {"assert": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-jsdoc": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "jsdoc": {"type": "string"}, "standard": {"type": "string"}, "turndown": {"type": "string"}, "turndown-plugin-gfm": {"type": "string"}}, "required": ["assert", "eslint", "eslint-plugin-jsdoc", "eslint-plugin-node", "jsdoc", "standard", "turndown", "turndown-plugin-gfm"]}}, "required": ["name", "version", "description", "engines", "main", "scripts", "keywords", "author", "repository", "bugs", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : 1218030020, "parent" : 1218030, "name" : "GUNUNG PANE", "latitude" : null, "longitude" : null, "postal" : [20992], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Socha svat\u00e9ho Jana Nepomuck\u00e9ho v Solnici v N\u00e1dra\u017en\u00ed ulici", "P31" : "http://www.wikidata.org/entity/Q179700", "P31^label:cs" : "Socha", "P131^label:cs" : "Solnice", "P6736" : "35059"}, "geometry" : {"type" : "Point", "coordinates" : [16.24299, 50.20463]}}, {"type" : "Feature", "properties" : {"label:cs" : "Pomn\u00edk Josefa Ehrenbergera v Solnici p\u0159ed kostelem St\u011bt\u00ed svat\u00e9ho Jana K\u0159titele", "P31" : "http://www.wikidata.org/entity/Q4989906", "P31^label:cs" : "Pomn\u00edk", "P131^label:cs" : "Solnice", "P6736" : "35058"}, "geometry" : {"type" : "Point", "coordinates" : [16.24004, 50.20142]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e v Solnici u k\u0159i\u017eovatky Rychnovsk\u00e9 a Doma\u0161\u00ednsk\u00e9 ulice", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Solnice", "P6736" : "35057"}, "geometry" : {"type" : "Point", "coordinates" : [16.23912, 50.20145]}}, {"type" : "Feature", "properties" : {"label:cs" : "k\u0159\u00ed\u017e v Solnici na konci Litohradsk\u00e9 ulce", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Solnice", "P6736" : "35056"}, "geometry" : {"type" : "Point", "coordinates" : [16.23831, 50.19608]}}, {"type" : "Feature", "properties" : {"label:cs" : "Sm\u00edr\u010d\u00ed k\u0159\u00ed\u017e v Solnici", "P31" : "http://www.wikidata.org/entity/Q1640496", "P31^label:cs" : "Sm\u00edr\u010d\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Solnice", "P6736" : "35055"}, "geometry" : {"type" : "Point", "coordinates" : [16.25252, 50.19806]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [116.59224743088723, 120.28842149393, 130.1448856620441, 133.8410597250869] | json_instruct | {"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": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coord" : {"lon" : -91.53, "lat" : 41.66}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01d"}], "base" : "stations", "main" : {"temp" : 17.94, "feels_like" : 19.66, "temp_min" : 17.78, "temp_max" : 18, "pressure" : 1016, "humidity" : 100}, "visibility" : 16093, "wind" : {"speed" : 1.5, "deg" : 140}, "clouds" : {"all" : 1}, "dt" : 1594642110, "sys" : {"type" : 1, "id" : 4541, "country" : "US", "sunrise" : 1594637013, "sunset" : 1594690794}, "timezone" : -18000, "id" : 4862034, "name" : "Iowa City", "cod" : 200} | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$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"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}, "zircote/swagger-php": {"type": "string"}, "domandtom/swagger-ui": {"type": "string"}}, "required": ["php", "illuminate/support", "zircote/swagger-php", "domandtom/swagger-ui"]}, "scripts": {"type": "object", "properties": {"post-install-cmd": {"type": "array", "items": {"type": "string"}}, "post-update-cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["post-install-cmd", "post-update-cmd"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}, "psr-0": {"type": "object", "properties": {"DomAndTom\\LaravelSwagger": {"type": "string"}}, "required": ["DomAndTom\\LaravelSwagger"]}}, "required": ["classmap", "psr-0"]}}, "required": ["name", "description", "license", "authors", "require", "scripts", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "domandtom/laravel-swagger", "description" : "Integate zircote/php-swagger into Laravel 4 Projects", "license" : "Apache", "authors" : [{"name" : "Mauricio Lopez", "email" : "mauricio@domandtom.com", "homepage" : "http://www.domandtom.com/", "role" : "Developer"}], "require" : {"php" : ">=5.4.0", "illuminate/support" : ">=4.0", "zircote/swagger-php" : "0.9.4", "domandtom/swagger-ui" : "v2.0.17.0"}, "scripts" : {"post-install-cmd" : ["DomAndTom\\LaravelSwagger\\SwaggerAssetManager::postUpdate"], "post-update-cmd" : ["DomAndTom\\LaravelSwagger\\SwaggerAssetManager::postUpdate"]}, "autoload" : {"classmap" : ["src/migrations", "src/models", "src/seeds", "src/controllers", "src/controllers/demo"], "psr-0" : {"DomAndTom\\LaravelSwagger" : "src/"}}} | 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"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}, "zircote/swagger-php": {"type": "string"}, "domandtom/swagger-ui": {"type": "string"}}, "required": ["php", "illuminate/support", "zircote/swagger-php", "domandtom/swagger-ui"]}, "scripts": {"type": "object", "properties": {"post-install-cmd": {"type": "array", "items": {"type": "string"}}, "post-update-cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["post-install-cmd", "post-update-cmd"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}, "psr-0": {"type": "object", "properties": {"DomAndTom\\LaravelSwagger": {"type": "string"}}, "required": ["DomAndTom\\LaravelSwagger"]}}, "required": ["classmap", "psr-0"]}}, "required": ["name", "description", "license", "authors", "require", "scripts", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "sapisafafoyaw", "h" : [{"d" : [{"f" : "\u60f3\u6bba\u91ce\u8c6c\u3002", "e" : ["\ufff9`Sapisafafoy~`aw~ `no~ `ka~`kita~`a~`n~ `pa~`acang~`e~`n~ `ira~ `kami~.\ufffa\ufffb\u982d\u4eba\u60f3\u6bba\u8c6c\uff0c\u5bb4\u8acb\u6211\u5011\u3002"]}]}], "stem" : "fafoy"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/home/rubentxu/Proyectos/java/MatchOne_EJ/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_launcher.png", "source" : "/home/rubentxu/Proyectos/java/MatchOne_EJ/android/res/drawable-hdpi/ic_launcher.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/container": {"type": "string"}}, "required": ["php", "psr/container"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "vimeo/psalm": {"type": "string"}, "php-coveralls/php-coveralls": {"type": "string"}, "symfony/var-dumper": {"type": "string"}}, "required": ["phpunit/phpunit", "vimeo/psalm", "php-coveralls/php-coveralls", "symfony/var-dumper"]}, "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": {"Carton\\": {"type": "string"}}, "required": ["Carton\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Carton\\Tests\\": {"type": "string"}}, "required": ["Carton\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nimbly/carton", "description" : "A PSR-11 container implementation.", "type" : "library", "require" : {"php" : "^7.3|^8.0", "psr/container" : "^1.0"}, "require-dev" : {"phpunit/phpunit" : "^9.0", "vimeo/psalm" : "^4.0", "php-coveralls/php-coveralls" : "^2.4", "symfony/var-dumper" : "^4.3"}, "license" : "MIT", "authors" : [{"name" : "Brent Scheffler", "email" : "brent@brentscheffler.com"}], "autoload" : {"psr-4" : {"Carton\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Carton\\Tests\\" : "tests/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/container": {"type": "string"}}, "required": ["php", "psr/container"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "vimeo/psalm": {"type": "string"}, "php-coveralls/php-coveralls": {"type": "string"}, "symfony/var-dumper": {"type": "string"}}, "required": ["phpunit/phpunit", "vimeo/psalm", "php-coveralls/php-coveralls", "symfony/var-dumper"]}, "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": {"Carton\\": {"type": "string"}}, "required": ["Carton\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Carton\\Tests\\": {"type": "string"}}, "required": ["Carton\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 66261, "cartId" : "19cd4af1-1282-434e-a0a9-43cd5b09e17d", "preferredProducts" : [4642, 1948], "productReviews" : [{"productId" : 2963, "reviewText" : "I saw one of these in Barbados and I bought one.", "reviewDate" : "2019-06-06T11:49:45.1431087+03:00"}, {"productId" : 238, "reviewText" : "i use it never when i'm in my nightclub.", "reviewDate" : "2019-11-23T10:26:31.7763973+02:00"}, {"productId" : 2394, "reviewText" : "heard about this on hip-hop music radio, decided to give it a try.", "reviewDate" : "2016-12-13T13:36:24.3961265+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"files": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "dependencies": {"type": "array", "items": {}}}, "required": ["files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : [{"from" : "component.coffee.hbs", "to" : "app/views/components/{{#camelize}}{{name}}{{/camelize}}.coffee"}, {"from" : "component.hbs.hbs", "to" : "app/templates/components/{{name}}.hbs"}, {"from" : "components.coffee.hbs", "to" : "app/components.coffee", "method" : "append"}], "dependencies" : []} | json_instruct | {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "dependencies": {"type": "array", "items": {}}}, "required": ["files", "dependencies"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"structure": {"type": "string"}}, "required": ["structure"]}, "peerDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "files", "engines", "devDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jest-structure", "version" : "2.0.1", "description" : "Jest assertions to use with Structure", "main" : "index.js", "author" : "Talysson <talyssonoc@gmail.com>", "license" : "MIT", "scripts" : {"test" : "jest"}, "files" : ["src"], "engines" : {"node" : ">=10.13.0"}, "devDependencies" : {"structure" : "2.0.1"}, "peerDependencies" : {"jest" : "^25.1.0"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"structure": {"type": "string"}}, "required": ["structure"]}, "peerDependencies": {"type": "object", "properties": {"jest": {"type": "string"}}, "required": ["jest"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "files", "engines", "devDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"limit" : 1500, "name" : "Off-hand iron dart", "value" : 2, "highalch" : 1, "id" : 25910, "lowalch" : 1, "name_pt" : "Dardo de ferro secund\u00e1rio", "price" : 61, "last" : 61} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"octave-head": {"type": "string"}, "sundials27-octave-app": {"type": "string"}}, "required": ["octave-head", "sundials27-octave-app"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"octave-head" : "octave-default", "sundials27-octave-app" : "sundials@2"} | json_instruct | {"type": "object", "properties": {"octave-head": {"type": "string"}, "sundials27-octave-app": {"type": "string"}}, "required": ["octave-head", "sundials27-octave-app"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "mubble:block/golden_brick_block"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["question-cache"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Starter Templates"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"], "$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"}, "license": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "properties": {"jszip": {"type": "string"}}, "required": ["jszip"]}, "devDependencies": {"type": "object", "properties": {"@types/jszip": {"type": "string"}, "typescript": {"type": "string"}, "uglify-js": {"type": "string"}}, "required": ["@types/jszip", "typescript", "uglify-js"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "tsc": {"type": "string"}, "tsc:w": {"type": "string"}}, "required": ["build", "tsc", "tsc:w"]}}, "required": ["name", "version", "license", "main", "keywords", "author", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "docx-preview", "version" : "0.1.2", "license" : "Apache-2.0", "main" : "docx.js", "keywords" : ["word", "docx"], "author" : {"name" : "Volodymyr Baydalka"}, "dependencies" : {"jszip" : "3.1.3"}, "devDependencies" : {"@types/jszip" : "^0.0.31", "typescript" : "2.9.2", "uglify-js" : "3.4.1"}, "scripts" : {"build" : "tsc | uglifyjs docx.js --mangle -o docx.min.js", "tsc" : "./node_modules/.bin/tsc", "tsc:w" : "tsc -w"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "properties": {"jszip": {"type": "string"}}, "required": ["jszip"]}, "devDependencies": {"type": "object", "properties": {"@types/jszip": {"type": "string"}, "typescript": {"type": "string"}, "uglify-js": {"type": "string"}}, "required": ["@types/jszip", "typescript", "uglify-js"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "tsc": {"type": "string"}, "tsc:w": {"type": "string"}}, "required": ["build", "tsc", "tsc:w"]}}, "required": ["name", "version", "license", "main", "keywords", "author", "dependencies", "devDependencies", "scripts"], "$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"}, "Name": {"type": "string"}, "Rarity": {"type": "integer"}, "RarityParameter": {"type": "integer"}, "ItemCategory": {"type": "integer"}, "ShortDescription": {"type": "string"}, "LongDescription": {"type": "string"}, "BuyPrice": {"type": "integer"}, "SellPrice": {"type": "integer"}, "SpriteId": {"type": "integer"}, "ItemId": {"type": "integer"}, "Param1": {"type": "integer"}, "Param2": {"type": "integer"}, "Param3": {"type": "integer"}}, "required": ["Id", "Name", "Rarity", "RarityParameter", "ItemCategory", "ShortDescription", "LongDescription", "BuyPrice", "SellPrice", "SpriteId", "ItemId", "Param1", "Param2", "Param3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "normal-dust", "Name" : "Normal Dust", "Rarity" : 2, "RarityParameter" : 1, "ItemCategory" : 15, "ShortDescription" : "Normal-type-specific item.", "LongDescription" : "Slightly boosts the Special Attack and Special Defense of Normal-type Pok\u00e9mon. Keep it in the Treasure Bag to give its benefit to all of these team members: Normal-type Pok\u00e9mon. Swap a White Silk and a Normal Dust for a rarer item at the Croagunk Swap Shop.", "BuyPrice" : 5000, "SellPrice" : 150, "SpriteId" : 34, "ItemId" : 507, "Param1" : 0, "Param2" : 0, "Param3" : 0} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "Rarity": {"type": "integer"}, "RarityParameter": {"type": "integer"}, "ItemCategory": {"type": "integer"}, "ShortDescription": {"type": "string"}, "LongDescription": {"type": "string"}, "BuyPrice": {"type": "integer"}, "SellPrice": {"type": "integer"}, "SpriteId": {"type": "integer"}, "ItemId": {"type": "integer"}, "Param1": {"type": "integer"}, "Param2": {"type": "integer"}, "Param3": {"type": "integer"}}, "required": ["Id", "Name", "Rarity", "RarityParameter", "ItemCategory", "ShortDescription", "LongDescription", "BuyPrice", "SellPrice", "SpriteId", "ItemId", "Param1", "Param2", "Param3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "frameworks": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "downloadUrl": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}, "maintainer": {"type": "boolean"}}, "required": ["name", "maintainer"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "frameworks", "keywords", "description", "url", "downloadUrl", "authors", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "FreqMeasure", "frameworks" : "Arduino", "keywords" : "serial", "description" : "Frequency measurement by elapsed period timing", "url" : "http://www.pjrc.com/teensy/td_libs_FreqMeasure.html", "downloadUrl" : "http://www.pjrc.com/teensy/arduino_libraries/FreqMeasure.zip", "authors" : {"name" : "Paul Stoffregen", "maintainer" : true}, "repository" : {"type" : "git", "url" : "https://github.com/PaulStoffregen/FreqMeasure"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "frameworks": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "downloadUrl": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}, "maintainer": {"type": "boolean"}}, "required": ["name", "maintainer"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "frameworks", "keywords", "description", "url", "downloadUrl", "authors", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "language": {"type": "string"}, "words": {"type": "array", "items": {"type": "string"}}, "allowCompoundWords": {"type": "boolean"}, "flagWords": {"type": "array", "items": {}}, "ignoreWords": {"type": "array", "items": {}}, "dictionaries": {"type": "array", "items": {}}, "ignorePaths": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "language", "words", "allowCompoundWords", "flagWords", "ignoreWords", "dictionaries", "ignorePaths"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.2", "language" : "en", "words" : ["ntnyq", "tsbuildinfo", "vitepress", "goyfe", "customed", "linkedin", "vetur", "vuepress", "weibo", "pnpm", "serializers"], "allowCompoundWords" : true, "flagWords" : [], "ignoreWords" : [], "dictionaries" : [], "ignorePaths" : ["**/node_modules/**", "**/vscode-extension/**", "**/.git/objects/**", "**/*.tsbuildinfo", "**/yarn.lock", "**/pnpm-lock.yaml", "**/package-lock.json", "*.spec.js.snap", "*.min.*", "*.log*"]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "language": {"type": "string"}, "words": {"type": "array", "items": {"type": "string"}}, "allowCompoundWords": {"type": "boolean"}, "flagWords": {"type": "array", "items": {}}, "ignoreWords": {"type": "array", "items": {}}, "dictionaries": {"type": "array", "items": {}}, "ignorePaths": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "language", "words", "allowCompoundWords", "flagWords", "ignoreWords", "dictionaries", "ignorePaths"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 79853, "date" : "2016-03-31 13:33:26", "user" : "Linked", "post" : "**Cloud Simply** is a new company which offer it's customers virtual private servers with an easy to use control panel. We provide every kind of people with a powerful, affordable, reliable and most important a simple virtualization infrastructure where they can host their apps or websites. We want to simplify hosting for everyone!\r\n\r\n\r\n**Our Features:**\r\n- SSD Cached Storage, RAID10\r\n\r\n- 3x10 GBPS Uplink Backbone Network\r\n\r\n- Hosted on 3x Intel Xeon D-1520 16/32T 2.00/2.6GHz, 64GB DDR4 RAM.\r\n\r\n- Low Latency - US Servers\r\n\r\n- Instant Setup through WHMCS.\r\n\r\n- 3 Days Money Back Guarantee\r\n\r\n- 99.99% SLA Uptime\r\n\r\n- DDoS Protection\r\n\r\n- Live chat support\r\n\r\n- Additional IPs\r\n\r\nPayment Method: Paypal,Credit Card accepted through paypal\r\n\r\n\r\n_**15% Recurring Discount Coupon: 15OFF**_\r\n\r\n\r\n\r\n\r\n\r\nOpenVZ DDOS Protected VPS Plans:\r\n\r\n**OpenVZ Budget**\r\n\r\n1024MB RAM\r\n\r\n25GB Raid Disk Space \r\n\r\n1 @ 2.00Ghz Cores\r\n\r\n1 Ipv4 Dedicated IP\r\n\r\n100mbit Connection (Upgradeable)\r\n\r\n33TB Transfer\r\n\r\nLocation: North America/Canada\r\n\r\n_**$2.95 USD/Monthly**_\r\n\r\nOrder Here: https://cloudsimply.net/whmcs/cart.php?a=add&pid=2\r\n\r\n\r\n\r\n\r\n**OpenVZ Standard**\r\n\r\n2048MB RAM\r\n\r\n50GB Raid Disk Space \r\n\r\n2 @ 2.00Ghz Cores\r\n\r\n1 Ipv4 Dedicated IP\r\n\r\n100mbit Connection\r\n\r\n33TB Transfer\r\n\r\nLocation: North America/Canada\r\n\r\n_**$5.95 USD/Monthly**_\r\n\r\nOrder Here: https://cloudsimply.net/whmcs/cart.php?a=add&pid=3\r\n\r\n\r\n\r\n\r\n\r\n**Datacenter Location:**\r\n\r\nNorth America/Canada\r\n\r\nTest IP: 158.69.148.216"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"context-menu": {"type": "object", "properties": {"atom-text-editor": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": ["atom-text-editor"]}, "menu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": ["label", "submenu"]}}}, "required": ["label", "submenu"]}}}, "required": ["context-menu", "menu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"context-menu" : {"atom-text-editor" : [{"label" : "On", "command" : "kmaktroll:on"}]}, "menu" : [{"label" : "Packages", "submenu" : [{"label" : "kmaktroll", "submenu" : [{"label" : "On", "command" : "kmaktroll:on"}]}]}]} | json_instruct | {"type": "object", "properties": {"context-menu": {"type": "object", "properties": {"atom-text-editor": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": ["atom-text-editor"]}, "menu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": ["label", "submenu"]}}}, "required": ["label", "submenu"]}}}, "required": ["context-menu", "menu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["epiquery2"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Understanding the impact of support for iteration on code search.", "fields" : ["programmer", "theoretical computer science", "search analytics", "leverage", "search engine"], "abstract" : "Sometimes, when programmers use a search engine they know more or less what they need. Other times, programmers use the search engine to look around and generate possible ideas for the programming problem they are working on. The key insight we explore in this paper is that the results found in the latter case tend to serve as inspiration or triggers for the next queries issued. We introduce two search engines, CodeExchange and CodeLikeThis, both of which are specifically designed to enable the user to directly leverage the results in formulating the next query. CodeExchange does this with a set of four features supporting the programmer to use characteristics of the results to find other code with or without those characteristics. CodeLikeThis supports simply selecting an entire result to find code that is analogous, to some degree, to that result. We evaluated how these approaches were used along with two approaches not explicitly supporting iteration, a baseline and Google, in a user study among 24 developers. We find that search engines that support using results to form the next query can improve the programmers\u2019 search experience and different approaches to iteration can provide better experiences depending on the task.", "citation" : "Citations (2)", "departments" : ["University of California, Irvine", "University of California, Irvine", "University of California, Irvine"], "authors" : ["Lee Martie.....http://dblp.org/pers/hd/m/Martie:Lee", "Andr\u00e9 van der Hoek.....http://dblp.org/pers/hd/h/Hoek:Andr=eacute=_van_der", "Thomas Kwak.....http://dblp.org/pers/hd/k/Kwak:Thomas"], "conf" : "sigsoft", "year" : "2017", "pages" : 12} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@vuepress/plugin-register-components": {"type": "string"}, "@vuepress/plugin-search": {"type": "string"}, "markdown-it-container": {"type": "string"}, "vuepress": {"type": "string"}, "vuepress-plugin-element-tabs": {"type": "string"}}, "required": ["@vuepress/plugin-register-components", "@vuepress/plugin-search", "markdown-it-container", "vuepress", "vuepress-plugin-element-tabs"]}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}}, "required": ["docs:dev", "docs:build"]}}, "required": ["devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"@vuepress/plugin-register-components" : "^2.0.0-beta.27", "@vuepress/plugin-search" : "^2.0.0-beta.26", "markdown-it-container" : "^3.0.0", "vuepress" : "^2.0.0-beta.26", "vuepress-plugin-element-tabs" : "^0.2.8"}, "scripts" : {"docs:dev" : "vuepress dev docs", "docs:build" : "vuepress build docs"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@vuepress/plugin-register-components": {"type": "string"}, "@vuepress/plugin-search": {"type": "string"}, "markdown-it-container": {"type": "string"}, "vuepress": {"type": "string"}, "vuepress-plugin-element-tabs": {"type": "string"}}, "required": ["@vuepress/plugin-register-components", "@vuepress/plugin-search", "markdown-it-container", "vuepress", "vuepress-plugin-element-tabs"]}, "scripts": {"type": "object", "properties": {"docs:dev": {"type": "string"}, "docs:build": {"type": "string"}}, "required": ["docs:dev", "docs:build"]}}, "required": ["devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}}, "motto": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "pictures": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "infoUrl": {"type": "string"}, "homePageUrl": {"type": "string"}}, "required": ["name", "logo", "links", "motto", "pictures", "description", "infoUrl", "homePageUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Patrik", "logo" : "http://patrik-windsurf.com/wp-content/uploads/2014/07/Logo_Patrik_quader.png", "links" : [{"url" : "https://www.youtube.com/channel/UCKF5AYr4WtwStFN1PoqZfEg", "type" : "youtube"}, {"url" : "https://www.instagram.com/patrikwindsurf/", "type" : "instagram"}, {"url" : "https://www.facebook.com/patrikwindsurf/", "type" : "facebook"}, {"url" : "https://instagram.com/patrikwindsurf/", "type" : "instagram"}], "motto" : {"en" : "OUR NO.1 PRIORITY IS TO HAVE HAPPY CUSTOMERS. TO ENSURE WE SUCCEED, WE SIMPLY FOLLOW OUR PASSION BECAUSE OUR VALUES ARE THE NATURAL OUTCOME OF OUR PERSONALITIES."}, "pictures" : ["https://patrik-windsurf.com/wp-content/uploads/2015/05/IMG_1890_s.jpg"], "description" : {"en" : "Shaped from over 25 years of technical expertise, DEDICATION AND PERFORMANCE, PATRIK is far more than just another name in windsurfing. From humble beginnings as shop customers themselves to high-profile brand employees and World-Tour professionals, Patrik and Karin\u2019s move to founding their own brand in 2010 was simply a natural progression. Today many of windsurfing\u2019s finest products sport PATRIK\u2019s name and the brand remains dedicated to delivering unique products and providing personal service."}, "infoUrl" : "https://patrik-windsurf.com/philosophy/", "homePageUrl" : "https://patrik-windsurf.com/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}}, "motto": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "pictures": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "infoUrl": {"type": "string"}, "homePageUrl": {"type": "string"}}, "required": ["name", "logo", "links", "motto", "pictures", "description", "infoUrl", "homePageUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"g": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "q": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "r": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "C": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "i": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}}, "required": ["g", "q", "r", "C", "i"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shaped", "group" : "rftools", "pattern" : [" C ", "gig", "qrq"], "key" : {"g" : {"item" : "minecraft:gold_nugget"}, "q" : {"item" : "minecraft:quartz"}, "r" : {"item" : "minecraft:redstone"}, "C" : {"tag" : "forge:chests"}, "i" : {"tag" : "forge:ingots/iron"}}, "result" : {"item" : "rftoolsstorage:storage_module0"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"g": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "q": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "r": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "C": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "i": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}}, "required": ["g", "q", "r", "C", "i"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"PEPTIDE1": {"type": "array", "items": {"type": "string"}}, "CHEM1": {"type": "array", "items": {"type": "string"}}}, "required": ["PEPTIDE1", "CHEM1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PEPTIDE1" : ["> PEPTIDE1\n[Ac][LysN3]RRRRCPLYIS[NMeY]DPVCRRRR[NH2]\n", "> PEPTIDE1\n[Ac][dApe]PLYISYDPV[Ape][NH2]\n", "> PEPTIDE1\n[Ac][LysN3]RRRR[dE]PLYISYDPV[Dab]RRRR[NH2]\n", "> PEPTIDE1\n[Ape]RRRCPLYISYDPVCRRR[Ape][NH2]\n", "> PEPTIDE1\n[Ac]RQIKIWFQNRRMKWKKG[LysN3][AEEA][dC]PLYISYDPVCR[NH2]\n", "> PEPTIDE1\n[Ac][LysN3]RRRR[dC][Prot3OH]LYISYDPVCRRRR[NH2]\n", "> PEPTIDE1\n[Ac][LysN3]RR[dC]PLYISYDPV[Pen]RR[NH2]\n", "> PEPTIDE1\n[ClAc]FSV[Sar][Ahp]RR[NMeF]VA[Ahp]S[Bip]CGGK[NH2]\n", "> PEPTIDE1\nACAKCA[AEEA]\n", "> PEPTIDE1\n[Ac]K[dR][dR][dR][dR][dC][dProt3Ph]LYI[aMeS]YDPVC[dR][dR][dR][dR][NH2]\n", "> PEPTIDE1\nH[dS]QGTFTSEYSKYLDERAAKDFVQWLLNK[NH2]\n", "> PEPTIDE1\n[Ac][dC][Prot3Ph]LFI[dApe]YDPVC[Hag][NH2]\n", "> PEPTIDE1\n[2moPyr]FR[4Pal]LY[Nva][NMeF]\n", "> PEPTIDE1\n[dF]PKLY[Nle][NMeF][hE][NH2]\n", "> PEPTIDE1\n[dF]PKLY[Nle][NMeF][Apm][NH2]\n"], "CHEM1" : ["> CHEM1\n[cRCM]\n", "> CHEM1\n[cRCM]\n", "> CHEM1\n[CH2]\n", "> CHEM1\n[CH2]\n", "> CHEM1\n[PEG2diacid]\n", "> CHEM1\n[C16]\n", "> CHEM1\n[CH2]\n", "> CHEM1\n[Butylene]\n"]} | json_instruct | {"type": "object", "properties": {"PEPTIDE1": {"type": "array", "items": {"type": "string"}}, "CHEM1": {"type": "array", "items": {"type": "string"}}}, "required": ["PEPTIDE1", "CHEM1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"characters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"characters" : [{"name" : "Luke Skywalker", "url" : "https://swapi.co/api/people/1/"}, {"name" : "Darth Vader", "url" : "https://swapi.co/api/people/4/"}, {"name" : "Obi-wan Kenobi", "url" : "https://swapi.co/api/people/unknown/"}, {"name" : "R2-D2", "url" : "https://swapi.co/api/people/2/"}]} | json_instruct | {"type": "object", "properties": {"characters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["characters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"900762483": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900762484": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900762485": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900762483", "900762484", "900762485"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900762483" : {"nama" : "TPS 1", "dapil" : [9101, 19104, 2911403]}, "900762484" : {"nama" : "TPS 2", "dapil" : [9101, 19104, 2911403]}, "900762485" : {"nama" : "TPS 3", "dapil" : [9101, 19104, 2911403]}} | json_instruct | {"type": "object", "properties": {"900762483": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900762484": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900762485": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900762483", "900762484", "900762485"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "definition": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "phrase": {"type": "string"}, "remarks": {"type": "string"}}, "required": ["citations", "definition", "language", "lookupTerms", "metaLanguage", "phrase", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See cG on Metamath](http://us.metamath.org/mpegif/cG.html)"}], "definition" : "class G", "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cG"], "metaLanguage" : "METAMATH", "phrase" : "G", "remarks" : "A #(T_class, 'class') variable.\n\n---"} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "definition": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "phrase": {"type": "string"}, "remarks": {"type": "string"}}, "required": ["citations", "definition", "language", "lookupTerms", "metaLanguage", "phrase", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"catapultIgnoreEvents": {"type": "array", "items": {"type": "object", "properties": {"provider": {"type": "string"}}, "required": ["provider"]}}, "catapultUserView": {"type": "object", "properties": {"enable": {"type": "boolean"}}, "required": ["enable"]}, "catapultGroupView": {"type": "object", "properties": {"enable": {"type": "boolean"}, "groups": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "enable": {"type": "boolean"}, "catapultEvents": {"type": "array", "items": {}}}, "required": ["name", "enable", "catapultEvents"]}}}, "required": ["enable", "groups"]}, "catapultCPUView": {"type": "object", "properties": {"enable": {"type": "boolean"}}, "required": ["enable"]}}, "required": ["catapultIgnoreEvents", "catapultUserView", "catapultGroupView", "catapultCPUView"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"catapultIgnoreEvents" : [{"provider" : "ust_baddr_statedump"}, {"process" : "surface-manager", "provider" : "pmtrace_qmlplugin"}, {"process" : "surface-manager", "provider" : "qmlcompositor"}, {"process" : "surface-manager", "provider" : "pmtrace_performancelog"}], "catapultUserView" : {"enable" : true}, "catapultGroupView" : {"enable" : false, "groups" : [{"name" : "Custom", "enable" : false, "catapultEvents" : []}]}, "catapultCPUView" : {"enable" : false}} | json_instruct | {"type": "object", "properties": {"catapultIgnoreEvents": {"type": "array", "items": {"type": "object", "properties": {"provider": {"type": "string"}}, "required": ["provider"]}}, "catapultUserView": {"type": "object", "properties": {"enable": {"type": "boolean"}}, "required": ["enable"]}, "catapultGroupView": {"type": "object", "properties": {"enable": {"type": "boolean"}, "groups": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "enable": {"type": "boolean"}, "catapultEvents": {"type": "array", "items": {}}}, "required": ["name", "enable", "catapultEvents"]}}}, "required": ["enable", "groups"]}, "catapultCPUView": {"type": "object", "properties": {"enable": {"type": "boolean"}}, "required": ["enable"]}}, "required": ["catapultIgnoreEvents", "catapultUserView", "catapultGroupView", "catapultCPUView"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "ResolutionUnit": {"type": "integer"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "DateTimeOriginal": {"type": "string"}, "Flash": {"type": "integer"}, "ColorSpace": {"type": "integer"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "CustomRendered": {"type": "integer"}, "ExposureMode": {"type": "integer"}, "WhiteBalance": {"type": "integer"}, "DigitalZoomRatio": {"type": "number"}, "SceneCaptureType": {"type": "integer"}}, "required": ["ImageDescription", "Make", "Model", "Orientation", "XResolution", "YResolution", "ResolutionUnit", "YCbCrPositioning", "ExifOffset", "DateTimeOriginal", "Flash", "ColorSpace", "ExifImageWidth", "ExifImageHeight", "CustomRendered", "ExposureMode", "WhiteBalance", "DigitalZoomRatio", "SceneCaptureType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ImageDescription" : "050226_1718~01", "Make" : "KDDI-KC", "Model" : "W11K", "Orientation" : 1, "XResolution" : 72, "YResolution" : 72, "ResolutionUnit" : 2, "YCbCrPositioning" : 2, "ExifOffset" : 168, "DateTimeOriginal" : "2005:02:26 17:18:43", "Flash" : 9, "ColorSpace" : 1, "ExifImageWidth" : 240, "ExifImageHeight" : 320, "CustomRendered" : 0, "ExposureMode" : 0, "WhiteBalance" : 0, "DigitalZoomRatio" : 1.5, "SceneCaptureType" : 0} | json_instruct | {"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "ResolutionUnit": {"type": "integer"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "DateTimeOriginal": {"type": "string"}, "Flash": {"type": "integer"}, "ColorSpace": {"type": "integer"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "CustomRendered": {"type": "integer"}, "ExposureMode": {"type": "integer"}, "WhiteBalance": {"type": "integer"}, "DigitalZoomRatio": {"type": "number"}, "SceneCaptureType": {"type": "integer"}}, "required": ["ImageDescription", "Make", "Model", "Orientation", "XResolution", "YResolution", "ResolutionUnit", "YCbCrPositioning", "ExifOffset", "DateTimeOriginal", "Flash", "ColorSpace", "ExifImageWidth", "ExifImageHeight", "CustomRendered", "ExposureMode", "WhiteBalance", "DigitalZoomRatio", "SceneCaptureType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x6f9064180354a6773db5af7226a40614c8dbce39", "tool" : "osiris", "start" : 1564621136.8678055, "end" : 1564621161.1759598, "duration" : 24.308154344558716, "analysis" : [{"errors" : [], "file" : "/unique_chucks/16/0x6f9064180354a6773db5af7226a40614c8dbce39.sol", "name" : "Airdropper"}, {"errors" : [], "file" : "/unique_chucks/16/0x6f9064180354a6773db5af7226a40614c8dbce39.sol", "name" : "Ownable"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"address": {"type": "string"}, "basePath": {"type": "string"}, "logLevel": {"type": "string"}, "realm": {"type": "string"}}, "required": ["address", "basePath", "logLevel", "realm"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : ":80", "basePath" : "/users", "logLevel" : "INFO", "realm" : "es"} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "basePath": {"type": "string"}, "logLevel": {"type": "string"}, "realm": {"type": "string"}}, "required": ["address", "basePath", "logLevel", "realm"], "$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.