input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}}, "required": ["http-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "largefileupload", "version" : "1.0.0", "description" : "Sample project to update large file in 5MB chunks with .NET API and jQuery", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "start http://localhost:8080 && http-server ./content/ -a localhost -p 8080 -d false"}, "author" : "wazeedahamed@gmail.com", "license" : "MIT", "devDependencies" : {"http-server" : "^0.12.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}}, "required": ["http-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["openpathsampling"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 175474, "UUID" : "3556C6E6-A8C6-483A-9D26-F634DD099C7F", "DataProviderID" : 1, "OperatorID" : 3267, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 175833, "Title" : "Via Bonelli", "AddressLine1" : "Via Bonelli", "Town" : "Cuneo", "StateOrProvince" : "Piemont", "Postcode" : "12100", "CountryID" : 112, "Latitude" : 44.38996645402656, "Longitude" : 7.549320524148925, "RelatedURL" : "https://mobility.dufercoenergia.com/", "DistanceUnit" : 0}, "Connections" : [{"ID" : 272320, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "Quantity" : 2}, {"ID" : 272321, "ConnectionTypeID" : 36, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 3, "Quantity" : 2}], "NumberOfPoints" : 1, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2021-05-23T18:57:00Z", "DataQualityLevel" : 1, "DateCreated" : "2021-05-22T09:43:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-mh9m-75gc-gjxq", "modified" : "2022-05-02T03:39:28Z", "published" : "2022-05-02T03:39:28Z", "aliases" : ["CVE-2009-2872"], "details" : "Cisco IOS 12.0 through 12.4, when IP-based tunnels and the Cisco Express Forwarding feature are enabled, allows remote attackers to cause a denial of service (device reload) via a malformed packet that is not properly handled during switching from one tunnel to a second tunnel, aka Bug IDs CSCsh97579 and CSCsq31776.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-2872"}, {"type" : "WEB", "url" : "http://osvdb.org/58333"}, {"type" : "WEB", "url" : "http://tools.cisco.com/security/center/viewAlert.x?alertId=18893"}, {"type" : "WEB", "url" : "http://www.cisco.com/en/US/products/products_applied_mitigation_bulletin09186a0080af8113.html"}, {"type" : "WEB", "url" : "http://www.cisco.com/en/US/products/products_security_advisory09186a0080af8115.shtml"}, {"type" : "WEB", "url" : "http://www.cisco.com/web/about/security/intelligence/Cisco_ERP_sep09.html"}, {"type" : "WEB", "url" : "http://www.securitytracker.com/id?1022930"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2009/2759"}], "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x8a1a9477a710d470575b1da335e524b27e8091ab", "tool" : "mythril", "start" : 1563481239.758759, "end" : 1563481249.260094, "duration" : 9.50133490562439, "analysis" : {"error" : null, "issues" : [], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "dev:web": {"type": "string"}, "dev:firebase": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["dev", "dev:web", "dev:firebase", "postinstall"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}, "husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["concurrently", "husky", "prettier", "pretty-quick"]}}, "required": ["name", "workspaces", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yours-sincerely", "workspaces" : ["web", "firebase", "scripts"], "scripts" : {"dev" : "concurrently --kill-others \"npm run dev:firebase\" \"npm run dev:web\"", "dev:web" : "npm run dev --workspace=web", "dev:firebase" : "npm run dev --workspace=firebase", "postinstall" : "husky install"}, "devDependencies" : {"concurrently" : "^6.2.0", "husky" : "^7.0.1", "prettier" : "^2.2.1", "pretty-quick" : "^3.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "dev:web": {"type": "string"}, "dev:firebase": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["dev", "dev:web", "dev:firebase", "postinstall"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}, "husky": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["concurrently", "husky", "prettier", "pretty-quick"]}}, "required": ["name", "workspaces", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 644, "cartId" : "91224249-1870-4128-a049-770557b07f85", "preferredProducts" : [729, 4342, 3226, 2528, 3241, 190, 4634, 771, 3272], "productReviews" : [{"productId" : 4960, "reviewText" : "this Handmade Granite Pizza is whole-grain.", "reviewDate" : "2017-05-31T03:20:57.27523+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "integer"}, "tail": {"type": "string"}, "testing": {"type": "boolean"}, "id": {"type": "string"}, "characters": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["version", "tail", "testing", "id", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 0, "tail" : "N9788W", "testing" : false, "id" : "5ac09b39-8516-480a-a5e7-b2927eee5ec0", "characters" : [[306, 356], [312, 356], [317, 344], [325, 356], [334, 356], [343, 355]]}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "tail": {"type": "string"}, "testing": {"type": "boolean"}, "id": {"type": "string"}, "characters": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["version", "tail", "testing", "id", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recommendations" : ["raczzalan.webgl-glsl-editor"]}
json_instruct
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "aa069960dba73e0bc42d2461f5313e0391446eb0"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"d3-ease.js": {"type": "string"}, "d3-ease.min.js": {"type": "string"}}, "required": ["d3-ease.js", "d3-ease.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"d3-ease.js" : "sha512-gxt+Khe5sKBYj6Y2LS+XLbmvDjPR7i3ZwQBSWUy9V6cINE4B2feFcb+aUMPa9NGs+wEC4naVowzTAtjPJbUfaw==", "d3-ease.min.js" : "sha512-y+mgNrGif9q7H5W1DiQ/U6rsJbA3frR00VgsvRvs+GHtWbBUxvTf5iBVWDInf0/QTl/4nqyI2rYqkTQKBm/dDg=="}
json_instruct
{"type": "object", "properties": {"d3-ease.js": {"type": "string"}, "d3-ease.min.js": {"type": "string"}}, "required": ["d3-ease.js", "d3-ease.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"abc": {"type": "integer"}, "def": {"type": "integer"}, "ghi": {"type": "integer"}}, "required": ["abc", "def", "ghi"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"abc" : 123, "def" : 456, "ghi" : 789}
json_instruct
{"type": "object", "properties": {"abc": {"type": "integer"}, "def": {"type": "integer"}, "ghi": {"type": "integer"}}, "required": ["abc", "def", "ghi"], "$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": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "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" : 115590, "info" : {"name" : "Death Note style(My Candy love theme and Csj t\u00e9ma)", "description" : "Szereted a Deah Notet?? Akkor ezt a t\u00e9m\u00e1t neked tal\u00e1ltam ki :DD!Like Death Note? This theme is your!", "additionalInfo" : "Death Note,death note forever :DDD!", "format" : "uso", "category" : "global", "createdAt" : "2015-06-24T13:12:31.000Z", "updatedAt" : "2015-06-24T13:12:31.000Z", "license" : "CC0-1.0", "author" : {"id" : 293715, "name" : "Diamant Homie"}}, "stats" : {"installs" : {"total" : 280, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "115590_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 1, "commentsCount" : 0}, "data" : [{"id" : 54803, "title" : "Profile", "createdAt" : "2017-03-25T17:02:13.000Z", "author" : {"id" : 409158, "name" : "Cora Mckee"}}]}, "style" : {"css" : "#container{\r\nbackground-image : url(http://i.imgur.com/cn84CSo.jpg?1) !important ;\r\n}\r\n#container.connected #header { background-image : url(http://i.imgur.com/87Rf1yt.png?1) !important ;\r\n}\r\n.idcard-member { background : url(http://i.imgur.com/Z0VW86U.jpg?1) no-repeat !important ;\r\n}\r\n\r\nidcard-member { background : url(http://i.imgur.com/Z0VW86U.jpg?1) no-repeat !important ;\r\n}\r\n /* i really want this to be global */"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"plugin_name": {"type": "string"}, "plugin_namespace": {"type": "string"}, "plugin_project": {"type": "string"}}, "required": ["plugin_name", "plugin_namespace", "plugin_project"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"plugin_name" : "rc", "plugin_namespace" : "rc", "plugin_project" : "rc_plugin"}
json_instruct
{"type": "object", "properties": {"plugin_name": {"type": "string"}, "plugin_namespace": {"type": "string"}, "plugin_project": {"type": "string"}}, "required": ["plugin_name", "plugin_namespace", "plugin_project"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"manufacturer" : "TCT (Alcatel)", "market_name" : "ALCATEL ONETOUCH IDOL 3 (5.5)", "codename" : "idol3", "model" : "6045B"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "ALCATEL ONETOUCH IDOL 3 (5.5)", "codename" : "idol3", "model" : "6045F"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "ALCATEL ONETOUCH IDOL 3 (5.5)", "codename" : "idol3", "model" : "6045I"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "ALCATEL ONETOUCH IDOL 3 (5.5)", "codename" : "idol3", "model" : "6045K"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "ALCATEL ONETOUCH IDOL 3 (5.5)", "codename" : "idol3", "model" : "6045Y"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "ALCATEL ONETOUCH IDOL 3 (5.5)", "codename" : "idol3", "model" : "TCL i806"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "Nitro", "codename" : "idol3", "model" : "6045O"}, {"manufacturer" : "TCT (Alcatel)", "market_name" : "Sol", "codename" : "idol3", "model" : "AM-H200"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$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"}, "labels": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "labels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "PMC15023", "labels" : [1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "labels": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "labels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web" : [{"value" : ["\u59a5\u534f", "\u548c\u89e3", "\u6298\u8877"], "key" : "compromise"}, {"value" : ["\u5bc6\u82cf\u91cc\u59a5\u534f", "\u5bc6\u82cf\u91cc\u59a5\u534f\u6848", "\u5bc6\u82cf\u91cc\u534f\u8bae"], "key" : "Missouri Compromise"}, {"value" : ["\u5eb7\u6d85\u72c4\u683c\u59a5\u534f", "\u5eb7\u4e43\u72c4\u514b\u59a5\u534f\u6848"], "key" : "Connecticut Compromise"}], "query" : "compromise", "translation" : ["\u59a5\u534f"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=compromise"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=compromise"}, "basic" : {"us-phonetic" : "'k\u0251mpr\u0259ma\u026az", "phonetic" : "'k\u0252mpr\u0259ma\u026az", "uk-phonetic" : "'k\u0252mpr\u0259ma\u026az", "explains" : ["n. \u59a5\u534f\uff0c\u548c\u89e3\uff1b\u6298\u8877", "vt. \u59a5\u534f\uff1b\u5371\u5bb3", "vi. \u59a5\u534f\uff1b\u8ba9\u6b65"]}, "l" : "EN2zh-CHS"}
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[143.0, 28.416666666666668], [143.0, 28.5], [143.125, 28.5], [143.125, 28.416666666666668], [143.0, 28.416666666666668]]]}, "properties" : {"code" : 424350, "url" : "http://madefor.github.io/0410/api/v1/424350.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/424350.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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Springfield Armory M1A 7,62 x 51", "ShortName" : "M1A", "Description" : "Das M1A von Springfield Armory ist eine zivile Version des M14 Gewehrs, entworfen und hergestellt von Springfield Armory, Inc."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}}, "required": ["name", "version", "description", "keywords", "homepage", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cotoflux/randomnum", "version" : "1.\u00ba.\u00ba", "description" : "Generates random number", "keywords" : ["number", "random", "package"], "homepage" : "https://github.com/cotoflux/randomNum.git", "require" : {"phpunit/phpunit" : "^8"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}}, "required": ["name", "version", "description", "keywords", "homepage", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "occupation": {"type": "string"}, "regDate": {"type": "string"}}, "required": ["firstName", "lastName", "email", "occupation", "regDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"firstName" : "Cynthia", "lastName" : "Smiley", "email" : "cynthiasmiley@jourrapide.com", "occupation" : "Radiologic technologist", "regDate" : "2020-07-11 13:25"}, {"firstName" : "Frank", "lastName" : "Mullinax", "email" : "frankmullinax@jourrapide.com", "occupation" : "Pest control worker", "regDate" : "2020-07-12 14:25"}, {"firstName" : "Jeanette", "lastName" : "Williams", "email" : " jwilliams@jourrapide.com", "occupation" : "Publication assistant", "regDate" : "2020-07-10 12:45"}, {"firstName" : "Manuel", "lastName" : "Reynolds", "email" : "manuelreynolds@jourrapide.com", "occupation" : "Laboratory animal technologist", "regDate" : "2020-07-17 10:12"}, {"firstName" : "Mildred", "lastName" : " Carter", "email" : "mildredcartery@jourrapide.com", "occupation" : "Merchandise displayer", "regDate" : "2020-07-09 11:20"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "occupation": {"type": "string"}, "regDate": {"type": "string"}}, "required": ["firstName", "lastName", "email", "occupation", "regDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "622923101001", "text" : "\u7b2c\u4e00\u5c45\u59d4\u4f1a"}, {"id" : "622923101002", "text" : "\u7b2c\u4e8c\u5c45\u59d4\u4f1a"}, {"id" : "622923101003", "text" : "\u7b2c\u4e09\u5c45\u59d4\u4f1a"}, {"id" : "622923101201", "text" : "\u4e0a\u94e8\u6751\u59d4\u4f1a"}, {"id" : "622923101202", "text" : "\u4e0b\u94e8\u6751\u59d4\u4f1a"}, {"id" : "622923101203", "text" : "\u4e0a\u8f66\u6751\u59d4\u4f1a"}, {"id" : "622923101204", "text" : "\u629a\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "622923101205", "text" : "\u5c0f\u8328\u6751\u59d4\u4f1a"}, {"id" : "622923101206", "text" : "\u7126\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "622923101207", "text" : "\u9ec4\u8328\u6751\u59d4\u4f1a"}, {"id" : "622923101208", "text" : "\u515a\u5ddd\u6751\u59d4\u4f1a"}, {"id" : "622923101209", "text" : "\u76d0\u96c6\u6751\u59d4\u4f1a"}, {"id" : "622923101210", "text" : "\u65b9\u53f0\u6751\u59d4\u4f1a"}, {"id" : "622923101211", "text" : "\u65b0\u586c\u6751\u59d4\u4f1a"}, {"id" : "622923101212", "text" : "\u6731\u738b\u6751\u59d4\u4f1a"}, {"id" : "622923101213", "text" : "\u9648\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "622923101214", "text" : "\u798f\u5ddd\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_429": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_429"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_429" : {"publicdate" : "2006-11-07 12:52:35", "downloads" : 28571}}
json_instruct
{"type": "object", "properties": {"id_429": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_429"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allMarkdownRemark": {"type": "object", "properties": {"totalCount": {"type": "integer"}, "edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "date": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail": {"type": "object", "properties": {"childImageSharp": {"type": "object", "properties": {"fixed": {"type": "object", "properties": {"base64": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "src": {"type": "string"}, "srcSet": {"type": "string"}}, "required": ["base64", "width", "height", "src", "srcSet"]}}, "required": ["fixed"]}}, "required": ["childImageSharp"]}}, "required": ["title", "date", "tags", "thumbnail"]}}, "required": ["id", "fields", "frontmatter"]}}, "required": ["node"]}}}, "required": ["totalCount", "edges"]}}, "required": ["allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"componentChunkName" : "component---src-templates-tags-js", "path" : "/tags/type-script", "result" : {"data" : {"allMarkdownRemark" : {"totalCount" : 1, "edges" : [{"node" : {"id" : "dc958e57-93d7-5fd7-af05-4ac2ed395f63", "fields" : {"slug" : "chuck-norris"}, "frontmatter" : {"title" : "Chuck Norris Jokes", "date" : "Wed, 2nd June 2021", "tags" : ["TypeScript"], "thumbnail" : {"childImageSharp" : {"fixed" : {"base64" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAACwklEQVQ4y5VU7UtTURhf9T/4rSLoY0TfIoyKoqIwMhEVtBc1tDt1KOpGy1R0Ohep06W9v0BgRJjBZGUSKGpEGJpzeuc093Il75bb3fXe3d17z649996E0hn14/BwzuH5nefl/M7RUIBIJErTDMty8XicF2IcF+d5hJCI0No6EomEIIgiSoiiwDBMNBoFnkaElSAgxc+/OO92jof8c7hz0uF477Dbq/SGar3hhtHY+7Jn4vNYf1/v0NBH8BTkk0QNxIJ4sICtyU/Dw47Xo4P9wwN2DCvXllbsTUnZuUOzXbNtz+5d5VihtdHY1toFnrEYZMlreF4miwrZ53GZmq2pJ3O/jH5oamhsr6vSnz3Yenx/c/qRSm3BY1uLuUZv7XgAnhzHAfEXWY3sxad0FTX7DhztsdbPv+0i+k3GosLiQ6mjFp391dNn3W1tpjpb592NZCgAtliGCQSWCL8vtOTjqCATJv3+pW9egiTJUCgoW5KMhCnw5BWskxGSJGnOs/h1atbp8uBzixNTuHPG45rx4O6F6Wm3Z97rnHbP4gtsLJ6cTBDfvT4C/MIRCnJResmLgnwdPAxegCVCiU1kJW1RAVwb3KqkDgnMH4CNJGQJlIBkwBziSGtJoJ6VPDJIhySDERDcFgBVgXNy8ko47JrBAwEiGJR7uxnLy8ssy25RM0IgbKhrbYuc/5Y2WJpeVRumlJ9Qh4r1IzaR1T5VGcznM4su5leW6GpLdHVl5fUwUS1WWpOdW3Yq7bLV9kTW9u8KU6N133tuMFrqGztMZltTyx3zre5mSxdYs0WeNJg6Dddb+t68U+QZ35j2vyNJzT9WKBgRiqaiqwODIydO5505l38hszgzR5uRhaWlFx4+lnW7/aH6JDeS4TuJ0gy9Cl8KPzI2npOnu1RQWYQZtbraa6U3r1ytzsjG7j96kfxV/W/aPwG4GgSN55+/TwAAAABJRU5ErkJggg==", "width" : 150, "height" : 150, "src" : "/static/654284ab252cdefdfc251e40b1ece7ea/92ab1/chuck-norris.png", "srcSet" : "/static/654284ab252cdefdfc251e40b1ece7ea/92ab1/chuck-norris.png 1x,\n/static/654284ab252cdefdfc251e40b1ece7ea/668a7/chuck-norris.png 1.5x,\n/static/654284ab252cdefdfc251e40b1ece7ea/56e34/chuck-norris.png 2x"}}}}}}]}}, "pageContext" : {"tag" : "TypeScript"}}, "staticQueryHashes" : ["2199005656"]}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allMarkdownRemark": {"type": "object", "properties": {"totalCount": {"type": "integer"}, "edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "date": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "thumbnail": {"type": "object", "properties": {"childImageSharp": {"type": "object", "properties": {"fixed": {"type": "object", "properties": {"base64": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "src": {"type": "string"}, "srcSet": {"type": "string"}}, "required": ["base64", "width", "height", "src", "srcSet"]}}, "required": ["fixed"]}}, "required": ["childImageSharp"]}}, "required": ["title", "date", "tags", "thumbnail"]}}, "required": ["id", "fields", "frontmatter"]}}, "required": ["node"]}}}, "required": ["totalCount", "edges"]}}, "required": ["allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "fabaceous", "definition" : "Having the nature of a bean; like a bean."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x7a044dcc23d1769ce4fa0db6f533799405a3524d97589d1b993100f8b4568aad", "parentHash" : "0x6d378a98abd3982e304ce4b4f3c9a0066452cdf7768e0b455c97e5180c2e6cdd", "number" : 29140, "timestamp" : 1438637027, "nonce" : "0xa4ee58696f5afe4f", "difficulty" : 1146382236811, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x190174d939CC332eE1Ea9351AD703ddF7364Ca68", "extraData" : "0x476574682f76312e302e302d64666563343435382f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Person", "normalizedVertices" : [{"x" : 0.13993397, "y" : 0.49504444}, {"x" : 0.35253662, "y" : 0.49504444}, {"x" : 0.35253662, "y" : 0.8746027}, {"x" : 0.13993397, "y" : 0.8746027}], "score" : 0.8887553}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"antlr4": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "css-loader": {"type": "string"}, "express": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["antlr4", "babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "body-parser", "cors", "css-loader", "express", "html-webpack-plugin", "node-sass", "react", "react-dom", "sass-loader", "style-loader", "url-loader", "webpack", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "jquery": {"type": "string"}, "react": {"type": "string"}, "react-ace": {"type": "string"}, "font-awesome": {"type": "string"}}, "required": ["d3", "jquery", "react", "react-ace", "font-awesome"]}}, "required": ["devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"devDependencies" : {"antlr4" : "", "babel-core" : "", "babel-loader" : "", "babel-preset-es2015" : "", "babel-preset-react" : "", "body-parser" : "^1.17.2", "cors" : "^2.8.4", "css-loader" : "^0.28.4", "express" : "^4.15.3", "html-webpack-plugin" : "", "node-sass" : "^4.5.3", "react" : "", "react-dom" : "", "sass-loader" : "^6.0.6", "style-loader" : "^0.18.2", "url-loader" : "^0.5.9", "webpack" : "", "webpack-dev-server" : ""}, "dependencies" : {"d3" : "^4.10.0", "jquery" : "", "react" : "", "react-ace" : "", "font-awesome" : ""}}
json_instruct
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"antlr4": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "css-loader": {"type": "string"}, "express": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["antlr4", "babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "body-parser", "cors", "css-loader", "express", "html-webpack-plugin", "node-sass", "react", "react-dom", "sass-loader", "style-loader", "url-loader", "webpack", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "jquery": {"type": "string"}, "react": {"type": "string"}, "react-ace": {"type": "string"}, "font-awesome": {"type": "string"}}, "required": ["d3", "jquery", "react", "react-ace", "font-awesome"]}}, "required": ["devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : 3201200006, "parent" : 3201200, "name" : "LEUWINUTUG", "latitude" : null, "longitude" : null, "postal" : [16813, 16811], "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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 3295, "surahNumber" : "028", "ayatNumber" : "043", "arabic" : "\u0648\u064e\u0644\u064e\u0642\u064e\u062f\u0652 \u0622\u062a\u064e\u064a\u0652\u0646\u064e\u0627 \u0645\u064f\u0648\u0633\u064e\u0649 \u0627\u0644\u0652\u0643\u0650\u062a\u064e\u0627\u0628\u064e \u0645\u0650\u0646\u0652 \u0628\u064e\u0639\u0652\u062f\u0650 \u0645\u064e\u0627 \u0623\u064e\u0647\u0652\u0644\u064e\u0643\u0652\u0646\u064e\u0627 \u0627\u0644\u0652\u0642\u064f\u0631\u064f\u0648\u0646\u064e \u0627\u0644\u0652\u0623\u064f\u0648\u0644\u064e\u0649\u0670 \u0628\u064e\u0635\u064e\u0627\u0626\u0650\u0631\u064e \u0644\u0650\u0644\u0646\u0651\u064e\u0627\u0633\u0650 \u0648\u064e\u0647\u064f\u062f\u064b\u0649 \u0648\u064e\u0631\u064e\u062d\u0652\u0645\u064e\u0629\u064b \u0644\u064e\u0639\u064e\u0644\u0651\u064e\u0647\u064f\u0645\u0652 \u064a\u064e\u062a\u064e\u0630\u064e\u0643\u0651\u064e\u0631\u064f\u0648\u0646\u064e", "english" : "And indeed We gave Musa (Moses), after We had destroyed the generations of old, the Scripture [the Taurat (Torah)] as an enlightenment for mankind, and a guidance and a mercy, that they might remember (or receive admonition).", "bengali" : "\u0986\u09ae\u09bf \u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a8\u09c7\u0995 \u09b8\u09ae\u09cd\u09aa\u09cd\u09b0\u09a6\u09be\u09df\u0995\u09c7 \u09a7\u09cd\u09ac\u0982\u09b8 \u0995\u09b0\u09be\u09b0 \u09aa\u09b0 \u09ae\u09c2\u09b8\u09be\u0995\u09c7 \u0995\u09bf\u09a4\u09be\u09ac \u09a6\u09bf\u09df\u09c7\u099b\u09bf \u09ae\u09be\u09a8\u09c1\u09b7\u09c7\u09b0 \u099c\u09a8\u09cd\u09af\u09c7 \u099c\u09cd\u099e\u09be\u09a8\u09ac\u09b0\u09cd\u09a4\u09bf\u0995\u09be\u0964 \u09b9\u09c7\u09a6\u09be\u09df\u09c7\u09a4 \u0993 \u09b0\u09b9\u09ae\u09a4, \u09af\u09be\u09a4\u09c7 \u09a4\u09be\u09b0\u09be \u09b8\u09cd\u09ae\u09b0\u09a3 \u09b0\u09be\u0996\u09c7\u0964"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"RealMenGetShot": {"type": "array", "items": {"type": "string"}}}, "required": ["RealMenGetShot"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"RealMenGetShot" : ["TheDeterminator", "MajorInjuryUnderreaction", "MachoMasochism", "GoodScarsEvilScars", "RuggedScar", "MadeOfIron", "NighInvulnerability", "ICanStillFight", "BadassNormal", "AnnoyingArrows", "HealingFactor", "BadassNormal", "Dhampyr", "ScarSurvey", "PlayingWithATrope", "Determinator", "SwordFight", "GenderInvertedTrope", "SpiritualSuccessor", "PocketProtector", "BadassBoast", "MedalOfDishonor", "BadassBoast"]}
json_instruct
{"type": "object", "properties": {"RealMenGetShot": {"type": "array", "items": {"type": "string"}}}, "required": ["RealMenGetShot"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "QmfHoNJqq4NzaR8y5i6RXKVokPNDzVLa18qnn8ys6HyKfm", "title" : "One more", "body" : "Check arbitator", "choices" : ["YES", "NO"], "start" : 1616425200, "end" : 1616427600, "snapshot" : "8279596", "state" : "closed", "author" : "0x2083fC00Ad9a17B9073b10B520Dcf936a14eaA05", "space" : {"id" : "test.alirun.eth", "name" : "Test DAO"}, "votes" : 1, "votes_data" : [{"id" : "QmRyyjwRksqA8HJxWBExsYrsBqAYYSy9odMFvipjbj2BrC", "voter" : "0x2083fC00Ad9a17B9073b10B520Dcf936a14eaA05", "created" : 1616427376, "choice" : 1, "space" : {"id" : "test.alirun.eth"}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "protocol": {"type": "string"}, "port_balancer": {"type": "integer"}, "port_server": {"type": "integer"}, "source": {"type": "string"}}, "required": ["id", "protocol", "port_balancer", "port_server", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "BCFAF421227674B2B324F779C1163ECB", "protocol" : "TCP", "port_balancer" : 80, "port_server" : 80, "source" : "0.0.0.0"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "protocol": {"type": "string"}, "port_balancer": {"type": "integer"}, "port_server": {"type": "integer"}, "source": {"type": "string"}}, "required": ["id", "protocol", "port_balancer", "port_server", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "GOOGLE_API_KEY": {"type": "string"}}, "required": ["name", "description", "GOOGLE_API_KEY"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "production", "description" : "Add here any environment specific stuff you like.", "GOOGLE_API_KEY" : "AIzaSyAti_Nd3jah7ffj7bBb4C-RovY9lEYJgvk"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "GOOGLE_API_KEY": {"type": "string"}}, "required": ["name", "description", "GOOGLE_API_KEY"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@figma/plugin-typings": {"type": "string"}, "autoprefixer": {"type": "string"}, "del": {"type": "string"}, "figma-plugin-ds": {"type": "string"}, "gulp": {"type": "string"}, "gulp-base64-inline": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-inline-source": {"type": "string"}, "gulp-minify": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-purgecss": {"type": "string"}, "gulp-replace": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-typescript": {"type": "string"}, "gulp-util": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@figma/plugin-typings", "autoprefixer", "del", "figma-plugin-ds", "gulp", "gulp-base64-inline", "gulp-concat", "gulp-csso", "gulp-inline-source", "gulp-minify", "gulp-postcss", "gulp-purgecss", "gulp-replace", "gulp-sass", "gulp-typescript", "gulp-util", "typescript"]}, "dependencies": {"type": "object", "properties": {"gulp-htmlmin": {"type": "string"}}, "required": ["gulp-htmlmin"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "frontend-boilerplate", "version" : "1.0.0", "description" : "Boilerplate for creating Figma Plugins", "main" : "gulpfile.js", "scripts" : {"build" : "gulp --production", "dev" : "gulp"}, "repository" : {"type" : "git", "url" : "git+https://github.com/thecodercoder/frontend-boilerplate.git"}, "keywords" : ["gulp", "boilerplate", "html", "css", "javascript"], "author" : "@thecodercoder", "license" : "ISC", "bugs" : {"url" : "https://github.com/thecodercoder/frontend-boilerplate/issues"}, "homepage" : "https://github.com/thecodercoder/frontend-boilerplate#readme", "devDependencies" : {"@figma/plugin-typings" : "^1.15.0", "autoprefixer" : "^9.7.6", "del" : "^5.1.0", "figma-plugin-ds" : "^0.1.8", "gulp" : "^4.0.2", "gulp-base64-inline" : "^1.0.6", "gulp-concat" : "^2.6.1", "gulp-csso" : "^4.0.1", "gulp-inline-source" : "^4.0.0", "gulp-minify" : "^3.1.0", "gulp-postcss" : "^8.0.0", "gulp-purgecss" : "^2.1.2", "gulp-replace" : "^1.0.0", "gulp-sass" : "^4.1.0", "gulp-typescript" : "^6.0.0-alpha.1", "gulp-util" : "^3.0.8", "typescript" : "^3.8.3"}, "dependencies" : {"gulp-htmlmin" : "^5.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@figma/plugin-typings": {"type": "string"}, "autoprefixer": {"type": "string"}, "del": {"type": "string"}, "figma-plugin-ds": {"type": "string"}, "gulp": {"type": "string"}, "gulp-base64-inline": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-csso": {"type": "string"}, "gulp-inline-source": {"type": "string"}, "gulp-minify": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-purgecss": {"type": "string"}, "gulp-replace": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-typescript": {"type": "string"}, "gulp-util": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@figma/plugin-typings", "autoprefixer", "del", "figma-plugin-ds", "gulp", "gulp-base64-inline", "gulp-concat", "gulp-csso", "gulp-inline-source", "gulp-minify", "gulp-postcss", "gulp-purgecss", "gulp-replace", "gulp-sass", "gulp-typescript", "gulp-util", "typescript"]}, "dependencies": {"type": "object", "properties": {"gulp-htmlmin": {"type": "string"}}, "required": ["gulp-htmlmin"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "stop": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "stop", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chokidar": {"type": "string"}}, "required": ["chokidar"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "msfs.js", "version" : "1.0.0", "description" : "Background script for using NPM on Microsoft-like filesystems", "main" : "main.js", "scripts" : {"start" : "node main.js &", "stop" : "touch msfsKillSignal && sleep 1 && rm msfsKillSignal", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/PiciAkk/msfs.js.git"}, "keywords" : ["error", "symlink", "symbolic-link", "node", "npm", "piciakk"], "author" : "PiciAkk", "license" : "MIT", "bugs" : {"url" : "https://github.com/PiciAkk/msfs.js/issues"}, "homepage" : "https://github.com/PiciAkk/msfs.js#readme", "dependencies" : {"chokidar" : "^3.5.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "stop": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "stop", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chokidar": {"type": "string"}}, "required": ["chokidar"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "ups": {"type": "integer"}}, "required": ["title", "ups"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "H\u1ed9p \u0111\u1ef1ng v\u00f2ng tay \u0111\u00e1 v\u00e0 \u0111\u1ecba ch\u1ec9 b\u00e1n bu\u00f4n h\u1ed9p \u0111\u1ef1ng", "ups" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "ups": {"type": "integer"}}, "required": ["title", "ups"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"3511": {"type": "string"}, "3509": {"type": "string"}}, "required": ["3511", "3509"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"3511" : "3512", "3509" : "3510"}
json_instruct
{"type": "object", "properties": {"3511": {"type": "string"}, "3509": {"type": "string"}}, "required": ["3511", "3509"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/body-parser": {"type": "string"}, "@types/chalk": {"type": "string"}, "@types/express": {"type": "string"}, "@types/node": {"type": "string"}, "@types/prompt-sync": {"type": "string"}, "@types/table": {"type": "string"}, "@types/terminal-kit": {"type": "string"}, "body-parser": {"type": "string"}, "chalk": {"type": "string"}, "express": {"type": "string"}, "prompt-sync": {"type": "string"}, "table": {"type": "string"}, "terminal-kit": {"type": "string"}}, "required": ["@types/body-parser", "@types/chalk", "@types/express", "@types/node", "@types/prompt-sync", "@types/table", "@types/terminal-kit", "body-parser", "chalk", "express", "prompt-sync", "table", "terminal-kit"]}, "bin": {"type": "object", "properties": {"long": {"type": "string"}}, "required": ["long"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "bin", "files", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@pranavbaburaj/long", "version" : "1.0.1", "description" : "A simple programming language :winK;", "main" : "index.ts", "scripts" : {"start" : "node dist/server.js", "build" : "tsc server.ts --outDir dist --esModuleInterop true & node dist/server"}, "repository" : {"type" : "git", "url" : "git+https://github.com/pranavbaburaj/long.git"}, "author" : "me", "license" : "MIT", "bugs" : {"url" : "https://github.com/pranavbaburaj/long/issues"}, "homepage" : "https://github.com/pranavbaburaj/long#readme", "dependencies" : {"@types/body-parser" : "^1.19.0", "@types/chalk" : "^2.2.0", "@types/express" : "^4.17.11", "@types/node" : "^14.14.37", "@types/prompt-sync" : "^4.1.0", "@types/table" : "^6.0.0", "@types/terminal-kit" : "^1.28.2", "body-parser" : "^1.19.0", "chalk" : "^4.1.0", "express" : "^4.17.1", "prompt-sync" : "^4.2.0", "table" : "^6.0.9", "terminal-kit" : "^2.0.7"}, "bin" : {"long" : "./dist/index.js"}, "files" : ["dist"], "engines" : {"node" : "14.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/body-parser": {"type": "string"}, "@types/chalk": {"type": "string"}, "@types/express": {"type": "string"}, "@types/node": {"type": "string"}, "@types/prompt-sync": {"type": "string"}, "@types/table": {"type": "string"}, "@types/terminal-kit": {"type": "string"}, "body-parser": {"type": "string"}, "chalk": {"type": "string"}, "express": {"type": "string"}, "prompt-sync": {"type": "string"}, "table": {"type": "string"}, "terminal-kit": {"type": "string"}}, "required": ["@types/body-parser", "@types/chalk", "@types/express", "@types/node", "@types/prompt-sync", "@types/table", "@types/terminal-kit", "body-parser", "chalk", "express", "prompt-sync", "table", "terminal-kit"]}, "bin": {"type": "object", "properties": {"long": {"type": "string"}}, "required": ["long"]}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "bin", "files", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "1602010007", "district_id" : "1602010", "name" : "TEBING SULUH"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"pathParameters": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "requestContext": {"type": "object", "properties": {"identity": {"type": "object", "properties": {"cognitoIdentityId": {"type": "string"}}, "required": ["cognitoIdentityId"]}}, "required": ["identity"]}}, "required": ["pathParameters", "requestContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pathParameters" : {"id" : "8490a020-cb59-11ea-8ed1-271e8d309a84"}, "requestContext" : {"identity" : {"cognitoIdentityId" : "USER-SUB-1234"}}}
json_instruct
{"type": "object", "properties": {"pathParameters": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "requestContext": {"type": "object", "properties": {"identity": {"type": "object", "properties": {"cognitoIdentityId": {"type": "string"}}, "required": ["cognitoIdentityId"]}}, "required": ["identity"]}}, "required": ["pathParameters", "requestContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "slug": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "documentation": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "location": {"type": "string"}, "shortDescription": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "contributors": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "version": {"type": "string"}}, "required": ["type", "version"]}}, "dependencies": {"type": "object", "properties": {"cfboom-lang": {"type": "string"}, "cfboom-util": {"type": "string"}}, "required": ["cfboom-lang", "cfboom-util"]}, "ignore": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"postVersion": {"type": "string"}}, "required": ["postVersion"]}}, "required": ["name", "version", "author", "slug", "type", "homepage", "documentation", "repository", "location", "shortDescription", "license", "contributors", "engines", "dependencies", "ignore", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "<cfboom/> GSON", "version" : "1.0.2", "author" : "Joel Tobey <joeltobey@gmail.com>", "slug" : "cfboom-gson", "type" : "modules", "homepage" : "https://github.com/joeltobey/cfboom-gson", "documentation" : "https://github.com/joeltobey/cfboom-gson/wiki", "repository" : {"type" : "git", "url" : "https://github.com/joeltobey/cfboom-gson"}, "location" : "https://github.com/joeltobey/cfboom-gson/releases/download/v1.0.2/cfboom-gson-v1.0.2.zip", "shortDescription" : "The cfboom-gson module provides a wrapper facade to the gson project (https://www.javadoc.io/doc/com.google.code.gson/gson/).", "license" : [{"type" : "Apache2", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"}], "contributors" : ["Joel Tobey <joeltobey@gmail.com>"], "engines" : [{"type" : "lucee", "version" : ">4.5"}, {"type" : "adobe", "version" : ">9.02"}], "dependencies" : {"cfboom-lang" : "^1", "cfboom-util" : "^1.3"}, "ignore" : ["**/.*", "tests", "*/.md"], "scripts" : {"postVersion" : "package set location='https://github.com/joeltobey/cfboom-gson/releases/download/v`package version`/cfboom-gson-v`package version`.zip'"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "slug": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "documentation": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "location": {"type": "string"}, "shortDescription": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "contributors": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "version": {"type": "string"}}, "required": ["type", "version"]}}, "dependencies": {"type": "object", "properties": {"cfboom-lang": {"type": "string"}, "cfboom-util": {"type": "string"}}, "required": ["cfboom-lang", "cfboom-util"]}, "ignore": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"postVersion": {"type": "string"}}, "required": ["postVersion"]}}, "required": ["name", "version", "author", "slug", "type", "homepage", "documentation", "repository", "location", "shortDescription", "license", "contributors", "engines", "dependencies", "ignore", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "preclusion", "description", "title", "department", "faculty", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"acadYear" : "2019/2020", "preclusion" : "Students who have read a Freshman Seminar before will be precluded from reading a second Freshman Seminar.\n\nStudents staying in Residential Colleges in UTown who will be reading or have read the Junior Seminars will be precluded from reading Freshman Seminar in the Faculty.", "description" : "", "title" : "FS: Exploring the Mysteries of Ageing", "department" : "Biological Sciences", "faculty" : "Science", "moduleCredit" : "4", "moduleCode" : "FMS1203B", "semesterData" : []}
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "preclusion", "description", "title", "department", "faculty", "moduleCredit", "moduleCode", "semesterData"], "$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": {"description": {"type": "string"}, "name": {"type": "string"}, "network_acl_id": {"type": "string"}, "region": {"type": "string"}, "vpc_id": {"type": "string"}}, "required": ["description", "name", "network_acl_id", "region", "vpc_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"description" : "Test network acl table", "name" : "{{ resourceName }}", "network_acl_id" : "{{ output.network_acl_id.value }}", "region" : "{{ output.region_id.value }}", "vpc_id" : "{{ output.vpc_id.value }}"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "network_acl_id": {"type": "string"}, "region": {"type": "string"}, "vpc_id": {"type": "string"}}, "required": ["description", "name", "network_acl_id", "region", "vpc_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-119.885601, 36.837012], [-119.862411, 36.837231], [-119.862543, 36.82271], [-119.863419, 36.82265], [-119.885601, 36.837012]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 7399}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stationGroupId" : 9920920, "stations" : ["9920920"]}
json_instruct
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x8d8812b72d1e4ffcec158d25f56748b7d67c1e78", "tool" : "maian", "start" : 1565166240.1367357, "end" : 1565166266.761558, "duration" : 26.62482237815857, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "is_suicidal_vulnerable": {"type": "boolean"}}, "required": ["is_lock_vulnerable", "is_prodigal_vulnerable", "is_suicidal_vulnerable"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "provincia": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "sigla": {"type": "string"}, "codiceCatastale": {"type": "string"}, "cap": {"type": "array", "items": {"type": "string"}}, "popolazione": {"type": "integer"}}, "required": ["nome", "codice", "zona", "regione", "provincia", "sigla", "codiceCatastale", "cap", "popolazione"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nome" : "Varapodio", "codice" : "080095", "zona" : {"codice" : "4", "nome" : "Sud"}, "regione" : {"codice" : "18", "nome" : "Calabria"}, "provincia" : {"codice" : "080", "nome" : "Reggio Calabria"}, "sigla" : "RC", "codiceCatastale" : "L673", "cap" : ["89010"], "popolazione" : 2223}
json_instruct
{"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "provincia": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "sigla": {"type": "string"}, "codiceCatastale": {"type": "string"}, "cap": {"type": "array", "items": {"type": "string"}}, "popolazione": {"type": "integer"}}, "required": ["nome", "codice", "zona", "regione", "provincia", "sigla", "codiceCatastale", "cap", "popolazione"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xa7446cbb3644d14b3ebb1a27aa3a9c479b93a650", "tool" : "osiris", "start" : 1564616866.3194373, "end" : 1564616925.741169, "duration" : 59.42173171043396, "analysis" : [{"errors" : [{"line" : 1171, "column" : 20, "message" : "overflow_bugs"}], "file" : "/unique_chucks/14/0xa7446cbb3644d14b3ebb1a27aa3a9c479b93a650.sol", "name" : "Eggfrenzy"}, {"errors" : [], "file" : "/unique_chucks/14/0xa7446cbb3644d14b3ebb1a27aa3a9c479b93a650.sol", "name" : "usingOraclize"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"testcafe": {"type": "string"}}, "required": ["testcafe"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"devDependencies" : {"testcafe" : "1.4.1"}, "scripts" : {"test" : "yarn testcafe chrome:headless webcomponent.test.js --app \"python ../run_test_app.py\""}}
json_instruct
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"testcafe": {"type": "string"}}, "required": ["testcafe"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 98623, "cartId" : "62c8526b-a404-4e05-97f7-ecc9cb0ff966", "preferredProducts" : [19, 3878, 4781, 37, 1333, 3376, 2672], "productReviews" : [{"productId" : 2476, "reviewText" : "My co-worker Mitchell has one of these. He says it looks dry.", "reviewDate" : "2018-05-28T00:26:12.3621175+03:00"}, {"productId" : 4486, "reviewText" : "My co-worker Kazuo has one of these. He says it looks transparent.", "reviewDate" : "2020-02-13T16:13:51.6902381+02:00"}, {"productId" : 4851, "reviewText" : "The box this comes in is 4 meter by 5 foot and weights 18 kilogram.", "reviewDate" : "2019-02-12T01:30:41.5626726+02:00"}, {"productId" : 2574, "reviewText" : "talk about optimism!!!", "reviewDate" : "2017-06-03T09:33:15.1581279+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"410300": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["410300"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"410300" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"410300": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["410300"], "$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"}, "DisplayName": {"type": "string"}, "Author": {"type": "string"}, "Repository": {"type": "string"}, "HomePage": {"type": "string"}, "Version": {"type": "string"}, "ManagerVersion": {"type": "string"}, "GameVersion": {"type": "string"}, "AssemblyName": {"type": "string"}, "EntryMethod": {"type": "string"}}, "required": ["Id", "DisplayName", "Author", "Repository", "HomePage", "Version", "ManagerVersion", "GameVersion", "AssemblyName", "EntryMethod"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : "ParadoxDeparadoxified", "DisplayName" : "Paradox Deparadoxified", "Author" : "MasterAbdoTGM50", "Repository" : "https://raw.githubusercontent.com/MasterAbdoTGM50/WOTR_ParadoxDeparadoxified/main/ParadoxDeparadoxified/Repository.json", "HomePage" : "https://github.com/MasterAbdoTGM50/WOTR_ParadoxDeparadoxified", "Version" : "1.0.0", "ManagerVersion" : "0.23.0", "GameVersion" : "1.0.5", "AssemblyName" : "ParadoxDeparadoxified.dll", "EntryMethod" : "ParadoxDeparadoxified.Main.Load"}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "DisplayName": {"type": "string"}, "Author": {"type": "string"}, "Repository": {"type": "string"}, "HomePage": {"type": "string"}, "Version": {"type": "string"}, "ManagerVersion": {"type": "string"}, "GameVersion": {"type": "string"}, "AssemblyName": {"type": "string"}, "EntryMethod": {"type": "string"}}, "required": ["Id", "DisplayName", "Author", "Repository", "HomePage", "Version", "ManagerVersion", "GameVersion", "AssemblyName", "EntryMethod"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"": {"type": "object", "properties": {"swift-dependencies": {"type": "string"}}, "required": ["swift-dependencies"]}, "/Users/miles/Projects/SwiftSSDPClient/Packages/Socks-0.10.0/Sources/SocksCoreExampleTCPKeepAliveServer/main.swift": {"type": "object", "properties": {"dependencies": {"type": "string"}, "object": {"type": "string"}, "swiftmodule": {"type": "string"}, "swift-dependencies": {"type": "string"}}, "required": ["dependencies", "object", "swiftmodule", "swift-dependencies"]}}, "required": ["", "/Users/miles/Projects/SwiftSSDPClient/Packages/Socks-0.10.0/Sources/SocksCoreExampleTCPKeepAliveServer/main.swift"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"" : {"swift-dependencies" : "/Users/miles/Projects/SwiftSSDPClient/.build/debug/SocksCoreExampleTCPKeepAliveServer.build/master.swiftdeps"}, "/Users/miles/Projects/SwiftSSDPClient/Packages/Socks-0.10.0/Sources/SocksCoreExampleTCPKeepAliveServer/main.swift" : {"dependencies" : "/Users/miles/Projects/SwiftSSDPClient/.build/debug/SocksCoreExampleTCPKeepAliveServer.build/main.d", "object" : "/Users/miles/Projects/SwiftSSDPClient/.build/debug/SocksCoreExampleTCPKeepAliveServer.build/main.swift.o", "swiftmodule" : "/Users/miles/Projects/SwiftSSDPClient/.build/debug/SocksCoreExampleTCPKeepAliveServer.build/main~partial.swiftmodule", "swift-dependencies" : "/Users/miles/Projects/SwiftSSDPClient/.build/debug/SocksCoreExampleTCPKeepAliveServer.build/main.swiftdeps"}}
json_instruct
{"type": "object", "properties": {"": {"type": "object", "properties": {"swift-dependencies": {"type": "string"}}, "required": ["swift-dependencies"]}, "/Users/miles/Projects/SwiftSSDPClient/Packages/Socks-0.10.0/Sources/SocksCoreExampleTCPKeepAliveServer/main.swift": {"type": "object", "properties": {"dependencies": {"type": "string"}, "object": {"type": "string"}, "swiftmodule": {"type": "string"}, "swift-dependencies": {"type": "string"}}, "required": ["dependencies", "object", "swiftmodule", "swift-dependencies"]}}, "required": ["", "/Users/miles/Projects/SwiftSSDPClient/Packages/Socks-0.10.0/Sources/SocksCoreExampleTCPKeepAliveServer/main.swift"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "accountId": {"type": "string"}, "configurationItemCaptureTime": {"type": "string"}, "configurationItemStatus": {"type": "string"}, "configurationStateId": {"type": "string"}, "configurationItemMD5Hash": {"type": "string"}, "arn": {"type": "string"}, "resourceType": {"type": "string"}, "resourceId": {"type": "string"}, "resourceName": {"type": "string"}, "awsRegion": {"type": "string"}, "availabilityZone": {"type": "string"}, "tags": {"type": "object", "properties": {}, "required": []}, "relatedEvents": {"type": "array", "items": {}}, "relationships": {"type": "array", "items": {}}, "configuration": {"type": "object", "properties": {"ownerId": {"type": "string"}, "dBSecurityGroupName": {"type": "string"}, "dBSecurityGroupDescription": {"type": "string"}, "eC2SecurityGroups": {"type": "array", "items": {}}, "iPRanges": {"type": "array", "items": {}}}, "required": ["ownerId", "dBSecurityGroupName", "dBSecurityGroupDescription", "eC2SecurityGroups", "iPRanges"]}, "supplementaryConfiguration": {"type": "object", "properties": {"Tags": {"type": "array", "items": {}}}, "required": ["Tags"]}}, "required": ["version", "accountId", "configurationItemCaptureTime", "configurationItemStatus", "configurationStateId", "configurationItemMD5Hash", "arn", "resourceType", "resourceId", "resourceName", "awsRegion", "availabilityZone", "tags", "relatedEvents", "relationships", "configuration", "supplementaryConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.2", "accountId" : "264683526309", "configurationItemCaptureTime" : "2016-07-25T17:54:07.601Z", "configurationItemStatus" : "OK", "configurationStateId" : "29", "configurationItemMD5Hash" : "4128c6317609bb15a8eb83f045f5bac6", "arn" : "arn:aws:rds:us-east-1:264683526309:secgrp:default", "resourceType" : "AWS::RDS::DBSecurityGroup", "resourceId" : "default", "resourceName" : "default", "awsRegion" : "us-east-1", "availabilityZone" : "Not Applicable", "tags" : {}, "relatedEvents" : [], "relationships" : [], "configuration" : {"ownerId" : "264683526309", "dBSecurityGroupName" : "default", "dBSecurityGroupDescription" : "default", "eC2SecurityGroups" : [], "iPRanges" : []}, "supplementaryConfiguration" : {"Tags" : []}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "accountId": {"type": "string"}, "configurationItemCaptureTime": {"type": "string"}, "configurationItemStatus": {"type": "string"}, "configurationStateId": {"type": "string"}, "configurationItemMD5Hash": {"type": "string"}, "arn": {"type": "string"}, "resourceType": {"type": "string"}, "resourceId": {"type": "string"}, "resourceName": {"type": "string"}, "awsRegion": {"type": "string"}, "availabilityZone": {"type": "string"}, "tags": {"type": "object", "properties": {}, "required": []}, "relatedEvents": {"type": "array", "items": {}}, "relationships": {"type": "array", "items": {}}, "configuration": {"type": "object", "properties": {"ownerId": {"type": "string"}, "dBSecurityGroupName": {"type": "string"}, "dBSecurityGroupDescription": {"type": "string"}, "eC2SecurityGroups": {"type": "array", "items": {}}, "iPRanges": {"type": "array", "items": {}}}, "required": ["ownerId", "dBSecurityGroupName", "dBSecurityGroupDescription", "eC2SecurityGroups", "iPRanges"]}, "supplementaryConfiguration": {"type": "object", "properties": {"Tags": {"type": "array", "items": {}}}, "required": ["Tags"]}}, "required": ["version", "accountId", "configurationItemCaptureTime", "configurationItemStatus", "configurationStateId", "configurationItemMD5Hash", "arn", "resourceType", "resourceId", "resourceName", "awsRegion", "availabilityZone", "tags", "relatedEvents", "relationships", "configuration", "supplementaryConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "object", "properties": {"2": {"type": "string"}, "1": {"type": "string"}}, "required": ["2", "1"]}, "testIn": {"type": "string"}, "isTest": {"type": "string"}, "isValidator": {"type": "string"}}, "required": ["title", "testIn", "isTest", "isValidator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : {"2" : "test9", "1" : "test9"}, "testIn" : "9214 6145;1271 7171;14407 3329;10949 2136;2443 4165;5665 6432;3079 1942;4019 5141", "isTest" : "true", "isValidator" : "true"}
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"2": {"type": "string"}, "1": {"type": "string"}}, "required": ["2", "1"]}, "testIn": {"type": "string"}, "isTest": {"type": "string"}, "isValidator": {"type": "string"}}, "required": ["title", "testIn", "isTest", "isValidator"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rustc" : 14339930153574751747, "features" : "[]", "target" : 13379804077273890026, "profile" : 1647870076477133176, "path" : 1036222786711178230, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : ".fingerprint\\create-d1fb4c2bc973d4bf\\dep-test-bin-create-d1fb4c2bc973d4bf"}}], "rustflags" : [], "metadata" : 1103270788440540279}
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/whip/penumbritewhip.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/whip/penumbritewhip.activeitem"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}}, "required": ["Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"items/active/weapons/whip/penumbritewhip.activeitem" : ["/description"]}, "Texts" : {"Eng" : "A chain knife fashioned from penumbrite, also makes a great glowstick.\n^cyan;Universal damage^reset;"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/whip/penumbritewhip.activeitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u534a\u5f71\u94fe\u5203", "Eng" : "Penumbrite Chain Knife"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/whip/penumbritewhip.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/whip/penumbritewhip.activeitem"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}}, "required": ["Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e u Dubu u poln\u00ed cesty", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Kondrac", "P6736" : "1482"}, "geometry" : {"type" : "Point", "coordinates" : [14.87477, 49.67473]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e u Dubu u rozcest\u00ed", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Kondrac", "P6736" : "1481"}, "geometry" : {"type" : "Point", "coordinates" : [14.87027, 49.67577]}}, {"type" : "Feature", "properties" : {"label:cs" : "K\u0159\u00ed\u017e severn\u011b od Dubu", "P31" : "http://www.wikidata.org/entity/Q2309609", "P31^label:cs" : "Pam\u011btn\u00ed k\u0159\u00ed\u017e", "P131^label:cs" : "Kondrac", "P6736" : "1480"}, "geometry" : {"type" : "Point", "coordinates" : [14.86858, 49.6795]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "beer_HURRICANE_I.P.A.", "brewery" : "Storm Brewing", "name" : "HURRICANE I.P.A.", "description" : "\u00e2\u0080\u009cA complex, flavourful and fascinating ale lies just on the edge of being totally out of control.\u00e2\u0080\u009d \u00e2\u0080\u0094Stephan Beaumont, Celebrator Beer News\r\n\r\nIndia Pale Ale dates back to the 1700\u00e2\u0080\u0099s when Britain needed a hearty beer to ship to her troops in India. Because the ships had to cross the equator twice to get there, spoilage was a major problem until some clever brewer realized that both alcohol and hops are natural preservatives. James brews Hurricane I.P.A. in this tradition, and packs it with enough hops and alcohol to survive crossing the orbit of Mercury twice. The grist is 100% Gambrinus premium 2-row barley malt, copiously hopped with fresh Centennial and Willamette. The result is a rich, golden, intense beer with bitterness in perfect balance with residual sweetness.", "category" : "North American Ale", "style" : "American-Style India Pale Ale", "updated" : "2010-07-22 20:00:20"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "rows": {"type": "array", "items": {"type": "string"}}, "solution": {"type": "string"}}, "required": ["name", "rows", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Random 5", "rows" : ["221 33 2 345 4 223133 334 3", " 31 34565 6676 4 5 5 544 6 5 ", "3 55 4 5 464 55 4 7764", "35 4 45 7 5 6 545 6 45 664", " 6 6 43 55 6 43 6 ", "2 3 5 5 6 3 5 24 5", " 234 42 4 56677 332 4", "12 244 6 5 64 7 55 5 43", "2 4333 55 45 7 46 5 5 ", "3553 3 6 66 6 57 6 87 763", " 64 4 6 56866 6 6 7 54 7 ", " 3 36 66685 47 6 5 4 664", "4 6 5 6 57 54 6 3 44 ", "57 7 4 655 645 7766 4 5 ", "5 77 5 6 54 434676 6 3", " 6 45 455 33 56 6 ", " 767 755 43 456 64 42", "12 7 4 3 36787 4 53 ", "11 467 544 4 6 6665 ", " 36 666433 4 6655 4 5", "3557 66 53 2345 44 7 4 55 4", " 5 776555 323 4 64 754", " 345 5 2 3 34 24 986 56 4 ", "3 4 4 5 434 3 478 568 ", " 4 3 32 5 44 46 97 3", "3 65 7 6 33 5 5 5 ", " 5 6 4566 77744 46 3", "36 7656 6 5 66 5 76 3 3 23 ", " 5444 77 77 56 1 43 44", "344 43 7 7 5 53 144 22 ", " 5 4 5 6 7664 444 4 54", "4 665 6 455 66 3 6 4 4543", "36 57 2 4 543 4 87 4 444", "1 44 6 5 665 3 686 2 55 44", "2 4 34 5 5 54224333 76 445 43", " 45 567 75 25 6 5 6 66 3", "24 4 24 5 5 1 65 56 7 3", " 3 5454 42 2344 454 57 ", "23 44 5 4 2 544 ", "233 43 5 4 0 3 2 5 3334 42"], "solution" : "!H>1C/JD9:6B]!WU;.NB5>VU\\TPY:=9O@055YU$$M/4B_,G/MB/UY&L[]=*OI5:)NK>R_MVG$?2+[^JN&F;^\"Q3#P_X/M03BVQY\"TYJ=WH,VV&2]4Y8I<=!#2\\.%W5NN:&GE^]6C5*%[RG4]6WA@2\\WCU2Z*H8?GF]4MF7OFDC .R0]=LF/L0[,L[Q3W B28>[, 6;4^X<:"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rows": {"type": "array", "items": {"type": "string"}}, "solution": {"type": "string"}}, "required": ["name", "rows", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@Redfish.Copyright": {"type": "string"}, "@Redfish.License": {"type": "string"}, "SchemaDefinition": {"type": "string"}, "ProfileName": {"type": "string"}, "ProfileVersion": {"type": "string"}, "Purpose": {"type": "string"}, "OwningEntity": {"type": "string"}, "ContactInfo": {"type": "string"}, "Protocol": {"type": "object", "properties": {"MinVersion": {"type": "string"}}, "required": ["MinVersion"]}, "RequiredProfiles": {"type": "object", "properties": {"Bios": {"type": "object", "properties": {"Repository": {"type": "string"}, "MinVersion": {"type": "string"}}, "required": ["Repository", "MinVersion"]}}, "required": ["Bios"]}}, "required": ["@Redfish.Copyright", "@Redfish.License", "SchemaDefinition", "ProfileName", "ProfileVersion", "Purpose", "OwningEntity", "ContactInfo", "Protocol", "RequiredProfiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@Redfish.Copyright" : "Copyright (c) 2020 Dell Inc. or its subsidiaries.", "@Redfish.License" : "Apache License, Version 2.0. For full text, see link: http://www.apache.org/licenses/LICENSE-2.0", "SchemaDefinition" : "RedfishInteroperabilityProfile.v1_3_1", "ProfileName" : "RedfishByRequiredProfiles", "ProfileVersion" : "1.0.0", "Purpose" : "Specifies the OpenStack ironic vendor-independent redfish hardware type requirements of a Redfish service implementation, typically offered by a baseboard management controller (BMC). Composed from required profiles.", "OwningEntity" : "Dell Inc.", "ContactInfo" : "digmabar.patil@dell.com, richard.pioso@dell.com, michael.raineri@gmail.com, pranjali.shrivastava@dell.com, dhuldev.valekar@dell.com", "Protocol" : {"MinVersion" : "1.0.0"}, "RequiredProfiles" : {"Bios" : {"Repository" : "https://DhuldevValekar3:dhuldev%40github30@github.com/DhuldevValekar3/ironic-1/tree/redfish-interop-profile/redfish-interop-profiles/drivers/modules/redfish", "MinVersion" : "1.0.0"}}}
json_instruct
{"type": "object", "properties": {"@Redfish.Copyright": {"type": "string"}, "@Redfish.License": {"type": "string"}, "SchemaDefinition": {"type": "string"}, "ProfileName": {"type": "string"}, "ProfileVersion": {"type": "string"}, "Purpose": {"type": "string"}, "OwningEntity": {"type": "string"}, "ContactInfo": {"type": "string"}, "Protocol": {"type": "object", "properties": {"MinVersion": {"type": "string"}}, "required": ["MinVersion"]}, "RequiredProfiles": {"type": "object", "properties": {"Bios": {"type": "object", "properties": {"Repository": {"type": "string"}, "MinVersion": {"type": "string"}}, "required": ["Repository", "MinVersion"]}}, "required": ["Bios"]}}, "required": ["@Redfish.Copyright", "@Redfish.License", "SchemaDefinition", "ProfileName", "ProfileVersion", "Purpose", "OwningEntity", "ContactInfo", "Protocol", "RequiredProfiles"], "$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"}, "icon": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "pack": {"type": "string"}, "publish:win:setup": {"type": "string"}, "pack:win:7z:x64": {"type": "string"}, "publish:mac:dmg": {"type": "string"}, "compile": {"type": "string"}, "package:mac:app": {"type": "string"}, "package:mac:dmg": {"type": "string"}}, "required": ["start", "pack", "publish:win:setup", "pack:win:7z:x64", "publish:mac:dmg", "compile", "package:mac:app", "package:mac:dmg"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-packager": {"type": "string"}}, "required": ["electron", "electron-packager"]}, "dependencies": {"type": "object", "properties": {"@ffmpeg-installer/ffmpeg": {"type": "string"}, "@ffprobe-installer/ffprobe": {"type": "string"}, "fluent-ffmpeg": {"type": "string"}}, "required": ["@ffmpeg-installer/ffmpeg", "@ffprobe-installer/ffprobe", "fluent-ffmpeg"]}, "build": {"type": "object", "properties": {"dmg": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}, "mac": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}, "win": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}, "linux": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}}, "required": ["dmg", "mac", "win", "linux"]}}, "required": ["name", "version", "description", "main", "icon", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies", "build"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "electron_player", "version" : "1.0.0", "description" : "A minimal Electron application", "main" : "main.js", "icon" : "icon.ico", "scripts" : {"start" : "electron .", "pack" : "npm run pack:win:setup && npm run pack:win:7z", "publish:win:setup" : "cross-env TARGET=Setup ARCH=x64_x86 electron-builder -w=nsis --x64 --ia32 -p onTagOrDraft", "pack:win:7z:x64" : "cross-env TARGET=win_\u7eff\u8272\u7248 ARCH=x64 electron-builder -w=7z --x64", "publish:mac:dmg" : "electron-builder -m=dmg -p onTagOrDraft", "compile" : "gulp --gulpfile config/gulpfile.js --cwd . && webpack", "package:mac:app" : "npm run compile && electron-packager ./ rockplayer --overwrite --app-version=1.0.0 --platform=darwin --arch=all --out=./out --verbose", "package:mac:dmg" : "npm run package:mac:app && electron-installer-dmg out/rockplayer-darwin-x64/rockplayer.app rockplayer --out=./out"}, "repository" : "https://github.com/wangrongguo/ElectronPlayer", "keywords" : ["Electron", "quick", "start", "tutorial", "demo"], "author" : "GitHub", "license" : "CC0-1.0", "devDependencies" : {"electron" : "9.0.0", "electron-packager" : "^14.2.1"}, "dependencies" : {"@ffmpeg-installer/ffmpeg" : "^1.0.20", "@ffprobe-installer/ffprobe" : "^1.0.12", "fluent-ffmpeg" : "^2.1.2"}, "build" : {"dmg" : {"icon" : "icon.ico"}, "mac" : {"icon" : "icon.ico"}, "win" : {"icon" : "icon.ico"}, "linux" : {"icon" : "icon.ico"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "icon": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "pack": {"type": "string"}, "publish:win:setup": {"type": "string"}, "pack:win:7z:x64": {"type": "string"}, "publish:mac:dmg": {"type": "string"}, "compile": {"type": "string"}, "package:mac:app": {"type": "string"}, "package:mac:dmg": {"type": "string"}}, "required": ["start", "pack", "publish:win:setup", "pack:win:7z:x64", "publish:mac:dmg", "compile", "package:mac:app", "package:mac:dmg"]}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-packager": {"type": "string"}}, "required": ["electron", "electron-packager"]}, "dependencies": {"type": "object", "properties": {"@ffmpeg-installer/ffmpeg": {"type": "string"}, "@ffprobe-installer/ffprobe": {"type": "string"}, "fluent-ffmpeg": {"type": "string"}}, "required": ["@ffmpeg-installer/ffmpeg", "@ffprobe-installer/ffprobe", "fluent-ffmpeg"]}, "build": {"type": "object", "properties": {"dmg": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}, "mac": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}, "win": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}, "linux": {"type": "object", "properties": {"icon": {"type": "string"}}, "required": ["icon"]}}, "required": ["dmg", "mac", "win", "linux"]}}, "required": ["name", "version", "description", "main", "icon", "scripts", "repository", "keywords", "author", "license", "devDependencies", "dependencies", "build"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"format_version": {"type": "integer"}, "header": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}, "min_engine_version": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "description", "uuid", "version", "min_engine_version"]}, "modules": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}}, "required": ["description", "type", "uuid", "version"]}}}, "required": ["format_version", "header", "modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"format_version" : 1, "header" : {"name" : "BehaviourLog for StoneServer1.12", "description" : "\u7528\u4e8e\u8bb0\u5f55\u73a9\u5bb6\u884c\u4e3a\u7684\u63d2\u4ef6 created by haojie06", "uuid" : "018718bc-ed21-42be-841d-839bc7eb1ca1", "version" : [0, 0, 0], "min_engine_version" : [1, 12, 0]}, "modules" : [{"description" : "data", "type" : "data", "uuid" : "34093753-8873-46c0-aef3-364179ccf4eb", "version" : [0, 0, 0]}]}
json_instruct
{"type": "object", "properties": {"format_version": {"type": "integer"}, "header": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}, "min_engine_version": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "description", "uuid", "version", "min_engine_version"]}, "modules": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "uuid": {"type": "string"}, "version": {"type": "array", "items": {"type": "integer"}}}, "required": ["description", "type", "uuid", "version"]}}}, "required": ["format_version", "header", "modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "preclusion", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"acadYear" : "2019/2020", "preclusion" : "Students who are taking or have taken LL4022", "description" : "Apart from the instruments of the World Trade Organization, there are other institutions and techniques which regulate international trade. The World Bank and the International Monetary Fund regulate certain aspects of trade. There are multilateral instruments which deal with issues such as corruption, ethical business standards, investment protection, competition and the regulation of financial services. The jurisdictional reach of large powers over international markets also provides means of self-interested regulation. The international regulation of new technologies such as internet and biotechnology pose novel problems. This course addresses the issues that arise in this area in the theoretical and political contect of globalization.", "title" : "Globalization And International Law", "department" : "FoL Dean's Office", "faculty" : "Law", "workload" : [3, 0, 0, 0, 10], "prerequisite" : "NUS Compulsory Core Curriculum or its equivalent", "moduleCredit" : "5", "moduleCode" : "LL4022V", "semesterData" : []}
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "preclusion", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"css/chocolat.css": {"type": "string"}, "css/chocolat.min.css": {"type": "string"}, "js/jquery.chocolat.js": {"type": "string"}, "js/jquery.chocolat.min.js": {"type": "string"}}, "required": ["css/chocolat.css", "css/chocolat.min.css", "js/jquery.chocolat.js", "js/jquery.chocolat.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/chocolat.css" : "sha512-Ghs/x50WHdpgy4r5BrmJbiRVUk3tjRaErXyLG8ZVvGBaBl6z+LfLbur7BkU/qA3ETikiXHsIK5iJtbNQWn8SMQ==", "css/chocolat.min.css" : "sha512-KtyQq6ShwJGVIoTekxNHt8uwsdpzc98xfUzA5eKDGsFlqguz+HGVI9T80EzdC5n9zBRRAStz7VtXCCBUI6Xt3Q==", "js/jquery.chocolat.js" : "sha512-Eb3uW6DYLM4psrV+Q6YtLe860NFyZxuxEFPJ1yPFtYAE4Bpd1jl7jRNhNvqLT+iam39lMIldSJcMIuU7TMvwCQ==", "js/jquery.chocolat.min.js" : "sha512-VcpaVQeBKQYNsvc7Ffgm2P6Ap/75lbeGUpexjULa54VeWAT/K2FZ+VDqzapCNZ/WdBVfeZVflUlFJb9WIVLrFQ=="}
json_instruct
{"type": "object", "properties": {"css/chocolat.css": {"type": "string"}, "css/chocolat.min.css": {"type": "string"}, "js/jquery.chocolat.js": {"type": "string"}, "js/jquery.chocolat.min.js": {"type": "string"}}, "required": ["css/chocolat.css", "css/chocolat.min.css", "js/jquery.chocolat.js", "js/jquery.chocolat.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"CrmMigrationToolSchemaPaths": {"type": "array", "items": {"type": "string"}}, "CrmMigrationToolSchemaFilters": {"type": "object", "properties": {"sla": {"type": "string"}, "workflow": {"type": "string"}, "team": {"type": "string"}}, "required": ["sla", "workflow", "team"]}, "LookupMapping": {"type": "object", "properties": {"teamroles": {"type": "object", "properties": {"roleid": {"type": "array", "items": {"type": "string"}}, "teamid": {"type": "array", "items": {"type": "string"}}}, "required": ["roleid", "teamid"]}}, "required": ["teamroles"]}, "PageSize": {"type": "integer"}, "BatchSize": {"type": "integer"}, "TopCount": {"type": "integer"}, "OnlyActiveRecords": {"type": "boolean"}, "JsonFolderPath": {"type": "string"}, "OneEntityPerBatch": {"type": "boolean"}, "FilePrefix": {"type": "string"}, "SeperateFilesPerEntity": {"type": "boolean"}}, "required": ["CrmMigrationToolSchemaPaths", "CrmMigrationToolSchemaFilters", "LookupMapping", "PageSize", "BatchSize", "TopCount", "OnlyActiveRecords", "JsonFolderPath", "OneEntityPerBatch", "FilePrefix", "SeperateFilesPerEntity"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CrmMigrationToolSchemaPaths" : ["PostDeployDataSchema.xml"], "CrmMigrationToolSchemaFilters" : {"sla" : "<filter type=\"and\"><condition attribute=\"statecode\" value=\"1\" operator=\"eq\"/></filter>", "workflow" : "<filter type=\"and\"><condition attribute=\"type\" operator=\"eq\" value=\"1\" /><filter type=\"or\"><condition attribute=\"name\" operator=\"like\" value=\"%SLA\" /><condition attribute=\"workflowid\" operator=\"eq\" value=\"{2b78a5ce-9e94-4087-8e4c-a7f0300a595c}\" /><condition attribute=\"workflowid\" operator=\"eq\" value=\"{949f1f5a-98a8-4ae4-bd43-40d0369a4408}\" /><condition attribute=\"workflowid\" operator=\"eq\" value=\"{986e65e7-1bfb-4afc-ac0d-bb152b2a421a}\" /><condition attribute=\"workflowid\" operator=\"eq\" value=\"{15ce3fed-0e36-413e-8ade-0e8951e7b6f1}\" /><condition attribute=\"workflowid\" operator=\"eq\" value=\"{836dfc97-ef67-4cf0-b33b-2844400a70c4}\" /></filter></filter>", "team" : "<filter type=\"and\"><condition attribute=\"teamtype\" value=\"0\" operator=\"eq\"/><condition attribute=\"isdefault\" value=\"false\" operator=\"eq\"/><condition attribute=\"businessunitid\" value=\"{932ECBF3-5031-E911-A978-0022480149C2}\" operator=\"eq\" uitype=\"businessunit\" uiname=\"Developer Services\"/></filter>"}, "LookupMapping" : {"teamroles" : {"roleid" : ["name", "businessunitid"], "teamid" : ["name", "businessunitid"]}}, "PageSize" : 1000, "BatchSize" : 1000, "TopCount" : 10000, "OnlyActiveRecords" : false, "JsonFolderPath" : "Extract", "OneEntityPerBatch" : true, "FilePrefix" : "DS0.1", "SeperateFilesPerEntity" : true}
json_instruct
{"type": "object", "properties": {"CrmMigrationToolSchemaPaths": {"type": "array", "items": {"type": "string"}}, "CrmMigrationToolSchemaFilters": {"type": "object", "properties": {"sla": {"type": "string"}, "workflow": {"type": "string"}, "team": {"type": "string"}}, "required": ["sla", "workflow", "team"]}, "LookupMapping": {"type": "object", "properties": {"teamroles": {"type": "object", "properties": {"roleid": {"type": "array", "items": {"type": "string"}}, "teamid": {"type": "array", "items": {"type": "string"}}}, "required": ["roleid", "teamid"]}}, "required": ["teamroles"]}, "PageSize": {"type": "integer"}, "BatchSize": {"type": "integer"}, "TopCount": {"type": "integer"}, "OnlyActiveRecords": {"type": "boolean"}, "JsonFolderPath": {"type": "string"}, "OneEntityPerBatch": {"type": "boolean"}, "FilePrefix": {"type": "string"}, "SeperateFilesPerEntity": {"type": "boolean"}}, "required": ["CrmMigrationToolSchemaPaths", "CrmMigrationToolSchemaFilters", "LookupMapping", "PageSize", "BatchSize", "TopCount", "OnlyActiveRecords", "JsonFolderPath", "OneEntityPerBatch", "FilePrefix", "SeperateFilesPerEntity"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : [[[123.0, 30.666666666666668], [123.0, 31.333333333333332], [124.0, 31.333333333333332], [124.0, 30.666666666666668], [123.0, 30.666666666666668]]]}, "properties" : {"code" : 4623, "url" : "http://madefor.github.io/0410/api/v1/4623.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/4623.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#"}
Following the schema specification below, generate a valid JSON instance: {"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" : 5793, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "david_bronzo_verrocchio", "right" : 0.625255, "bottom" : 0.660399, "top" : 0.087319, "confidence" : 90, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.223206}], "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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "null"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "xavierelopez", "repos" : 1, "login" : "xavierelopez", "id" : 959209, "avatar_url" : "https://avatars2.githubusercontent.com/u/959209?v=3", "url" : "https://api.github.com/users/xavierelopez", "html_url" : "https://github.com/xavierelopez", "followers_url" : "https://api.github.com/users/xavierelopez/followers", "following_url" : "https://api.github.com/users/xavierelopez/following{/other_user}", "gists_url" : "https://api.github.com/users/xavierelopez/gists{/gist_id}", "starred_url" : "https://api.github.com/users/xavierelopez/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/xavierelopez/subscriptions", "organizations_url" : "https://api.github.com/users/xavierelopez/orgs", "repos_url" : "https://api.github.com/users/xavierelopez/repos", "events_url" : "https://api.github.com/users/xavierelopez/events{/privacy}", "received_events_url" : "https://api.github.com/users/xavierelopez/received_events", "type" : "User", "site_admin" : false, "name" : "Xavier E. L\u00f3pez", "company" : null, "blog" : null, "location" : null, "email" : null, "hireable" : null, "bio" : null, "public_repos" : 8, "public_gists" : 1, "followers" : 17, "following" : 11, "created_at" : "2011-08-04T14:45:55Z", "updated_at" : "2017-02-28T19:17:58Z"}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "null"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/red_painted_shutters_open_l"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ar": {"type": "string"}, "name:en": {"type": "string"}, "name:es": {"type": "string"}, "name:fr": {"type": "string"}, "name:ja": {"type": "string"}, "name:ru": {"type": "string"}, "population": {"type": "string"}, "is_in:country": {"type": "string"}, "is_in:continent": {"type": "string"}, "is_in:country_code": {"type": "string"}}, "required": ["name:ar", "name:en", "name:es", "name:fr", "name:ja", "name:ru", "population", "is_in:country", "is_in:continent", "is_in:country_code"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Bilasuvar District", "iso2" : "AZ-BIL", "admin_level" : 4, "osm_id" : 3764545, "wikidata_id" : "Q330834", "wikipedia_id" : "de:Bil\u0259suvar (Rayon)", "population" : 102400, "countrylevel_id" : "iso2:AZ-BIL", "osm_data" : {"localname" : "Bil\u0259suvar rayonu", "official_name" : "", "alltags" : {"name:ar" : "\u0645\u0642\u0627\u0637\u0639\u0629 \u0628\u064a\u0644\u0627\u0633\u0648\u0627\u0631", "name:en" : "Bilasuvar District", "name:es" : "Bil\u0259suvar", "name:fr" : "Bil\u0259suvar", "name:ja" : "\u30d3\u30e9\u30b9\u30f4\u30a1\u30eb\u770c", "name:ru" : "\u0411\u0438\u043b\u044f\u0441\u0443\u0432\u0430\u0440\u0441\u043a\u0438\u0439 \u0440\u0430\u0439\u043e\u043d", "population" : "87508", "is_in:country" : "Azerbaijan", "is_in:continent" : "Asia", "is_in:country_code" : "AZ"}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[47.98, 39.706], [48.032, 39.693], [48.332, 39.429], [48.368, 39.377], [48.326, 39.363], [48.37, 39.339], [48.391, 39.357], [48.468, 39.379], [48.482, 39.407], [48.54, 39.413], [48.532, 39.362], [48.6, 39.327], [48.637, 39.341], [48.64, 39.405], [48.672, 39.444], [48.719, 39.419], [48.74, 39.436], [48.763, 39.498], [48.726, 39.533], [48.731, 39.607], [48.694, 39.642], [48.567, 39.664], [48.484, 39.656], [48.495, 39.68], [48.447, 39.706], [48.396, 39.658], [48.318, 39.596], [48.278, 39.605], [48.223, 39.594], [48.138, 39.661], [48.029, 39.726], [47.977, 39.729], [47.98, 39.706]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ar": {"type": "string"}, "name:en": {"type": "string"}, "name:es": {"type": "string"}, "name:fr": {"type": "string"}, "name:ja": {"type": "string"}, "name:ru": {"type": "string"}, "population": {"type": "string"}, "is_in:country": {"type": "string"}, "is_in:continent": {"type": "string"}, "is_in:country_code": {"type": "string"}}, "required": ["name:ar", "name:en", "name:es", "name:fr", "name:ja", "name:ru", "population", "is_in:country", "is_in:continent", "is_in:country_code"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"derivation" : "from H2168 (\u05d6\u05b8\u05de\u05b7\u05e8);", "pron" : "zim-raw'", "outline" : "<ol><li> choice fruits, choice products</li></ol>", "kjv_def" : "best fruit.", "lemma" : "\u05d6\u05b4\u05de\u05b0\u05e8\u05b8\u05d4", "frequency" : 1, "strongs_def" : "pruned (i.e. choice) fruit", "xlit" : "zimr\u00e2h"}
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"codecov": {"type": "string"}, "eslint": {"type": "string"}, "istanbul": {"type": "string"}, "jasmine": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["codecov", "eslint", "istanbul", "jasmine", "nodemon"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}}, "required": ["test", "watch"]}, "license": {"type": "string"}}, "required": ["author", "name", "description", "version", "homepage", "repository", "devDependencies", "main", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Oliver Herdin", "name" : "@fidian/dynamic-buffer", "description" : "Dynamic buffers can be used for fast string concatenation. They are initialized with a fixed size node Buffer, which will be replaced with a larger one transparently when needed.", "version" : "1.0.0", "homepage" : "https://github.com/fidian/rumkin-dynamic-buffer", "repository" : {"type" : "git", "url" : "https://github.com/fidian/rumkin-dynamic-buffer.git"}, "devDependencies" : {"codecov" : "~1.0.1", "eslint" : "~3.13.1", "istanbul" : "~0.4.5", "jasmine" : "~2.5.2", "nodemon" : "~1.11.0"}, "main" : "lib/index.js", "scripts" : {"test" : "script/test", "watch" : "script/watch"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"codecov": {"type": "string"}, "eslint": {"type": "string"}, "istanbul": {"type": "string"}, "jasmine": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["codecov", "eslint", "istanbul", "jasmine", "nodemon"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}}, "required": ["test", "watch"]}, "license": {"type": "string"}}, "required": ["author", "name", "description", "version", "homepage", "repository", "devDependencies", "main", "scripts", "license"], "$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": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1959, 5], [1978, 12], [1980, 8], [1982, 5], [1983, 6], [1984, 6], [1986, 6], [1987, 10], [1988, 13], [1989, 18], [1990, 17], [1991, 10], [1992, 22], [1993, 17], [1994, 22], [1995, 24], [1996, 37], [1997, 31], [1998, 42], [1999, 40], [2000, 42], [2001, 39], [2002, 43], [2003, 49], [2004, 32], [2005, 31], [2006, 42], [2007, 38], [2008, 38], [2009, 31], [2010, 32], [2011, 28], [2012, 37], [2013, 31], [2014, 16]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "packages": {"type": "object", "properties": {"": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"run-arch": {"type": "string"}, "run-script-arch": {"type": "string"}}, "required": ["run-arch", "run-script-arch"]}}, "required": ["name", "version", "license", "bin"]}}, "required": [""]}}, "required": ["name", "version", "lockfileVersion", "requires", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "run-script-arch", "version" : "1.1.6", "lockfileVersion" : 2, "requires" : true, "packages" : {"" : {"name" : "run-script-arch", "version" : "1.1.6", "license" : "MIT", "bin" : {"run-arch" : "index.js", "run-script-arch" : "index.js"}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "packages": {"type": "object", "properties": {"": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"run-arch": {"type": "string"}, "run-script-arch": {"type": "string"}}, "required": ["run-arch", "run-script-arch"]}}, "required": ["name", "version", "license", "bin"]}}, "required": [""]}}, "required": ["name", "version", "lockfileVersion", "requires", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 85567, "UUID" : "22B29244-D8CD-423C-848A-810CA36AF207", "DataProviderID" : 1, "OperatorID" : 45, "UsageTypeID" : 3, "AddressInfo" : {"ID" : 85913, "Title" : "Autohaus Linke", "AddressLine1" : "Haller Stra\u00dfe 1", "Town" : "Crailsheim", "StateOrProvince" : "Verwaltungsverband Crailsheim", "Postcode" : "74564", "CountryID" : 87, "Latitude" : 49.140204, "Longitude" : 10.06257400000004, "ContactTelephone1" : "+49 7951 9850", "AccessComments" : "Laden nur nach telefonischer Anmeldung m\u00f6glich. \u00d6ffnungszeiten Mo - Fr 8:30-18Uhr, Sa 8:30-12Uhr. 2 VW eStations mit fest montierten Kabeln", "RelatedURL" : "http://www.auto-linke.de/", "DistanceUnit" : 0}, "Connections" : [{"ID" : 121669, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3.7, "CurrentTypeID" : 10, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2017-04-07T07:53:00Z", "DataQualityLevel" : 1, "DateCreated" : "2017-04-07T07:53:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"image_modifier": {"type": "object", "properties": {"increase_nsb": {"type": "boolean"}, "extra_noise_in_dim_pixels": {"type": "number"}, "extra_bias_in_dim_pixels": {"type": "number"}, "transition_charge": {"type": "integer"}, "extra_noise_in_bright_pixels": {"type": "number"}, "increase_psf": {"type": "boolean"}, "smeared_light_fraction": {"type": "number"}}, "required": ["increase_nsb", "extra_noise_in_dim_pixels", "extra_bias_in_dim_pixels", "transition_charge", "extra_noise_in_bright_pixels", "increase_psf", "smeared_light_fraction"]}, "tailcut": {"type": "object", "properties": {"picture_thresh": {"type": "integer"}, "boundary_thresh": {"type": "integer"}, "keep_isolated_pixels": {"type": "boolean"}, "min_number_picture_neighbors": {"type": "integer"}, "use_only_main_island": {"type": "boolean"}, "delta_time": {"type": "integer"}}, "required": ["picture_thresh", "boundary_thresh", "keep_isolated_pixels", "min_number_picture_neighbors", "use_only_main_island", "delta_time"]}, "dynamic_cleaning": {"type": "object", "properties": {"apply": {"type": "boolean"}, "threshold": {"type": "integer"}, "fraction_cleaning_intensity": {"type": "number"}}, "required": ["apply", "threshold", "fraction_cleaning_intensity"]}}, "required": ["image_modifier", "tailcut", "dynamic_cleaning"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"image_modifier" : {"increase_nsb" : true, "extra_noise_in_dim_pixels" : 1.2, "extra_bias_in_dim_pixels" : 0.5, "transition_charge" : 8, "extra_noise_in_bright_pixels" : 1.2, "increase_psf" : true, "smeared_light_fraction" : 0.125}, "tailcut" : {"picture_thresh" : 8, "boundary_thresh" : 4, "keep_isolated_pixels" : false, "min_number_picture_neighbors" : 2, "use_only_main_island" : false, "delta_time" : 2}, "dynamic_cleaning" : {"apply" : true, "threshold" : 267, "fraction_cleaning_intensity" : 0.03}}
json_instruct
{"type": "object", "properties": {"image_modifier": {"type": "object", "properties": {"increase_nsb": {"type": "boolean"}, "extra_noise_in_dim_pixels": {"type": "number"}, "extra_bias_in_dim_pixels": {"type": "number"}, "transition_charge": {"type": "integer"}, "extra_noise_in_bright_pixels": {"type": "number"}, "increase_psf": {"type": "boolean"}, "smeared_light_fraction": {"type": "number"}}, "required": ["increase_nsb", "extra_noise_in_dim_pixels", "extra_bias_in_dim_pixels", "transition_charge", "extra_noise_in_bright_pixels", "increase_psf", "smeared_light_fraction"]}, "tailcut": {"type": "object", "properties": {"picture_thresh": {"type": "integer"}, "boundary_thresh": {"type": "integer"}, "keep_isolated_pixels": {"type": "boolean"}, "min_number_picture_neighbors": {"type": "integer"}, "use_only_main_island": {"type": "boolean"}, "delta_time": {"type": "integer"}}, "required": ["picture_thresh", "boundary_thresh", "keep_isolated_pixels", "min_number_picture_neighbors", "use_only_main_island", "delta_time"]}, "dynamic_cleaning": {"type": "object", "properties": {"apply": {"type": "boolean"}, "threshold": {"type": "integer"}, "fraction_cleaning_intensity": {"type": "number"}}, "required": ["apply", "threshold", "fraction_cleaning_intensity"]}}, "required": ["image_modifier", "tailcut", "dynamic_cleaning"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"\u8fd4\u56de\u503c": {"type": "array", "items": {"type": "integer"}}}, "required": ["\u8fd4\u56de\u503c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u8fd4\u56de\u503c" : [196609, 262145, 327681, 458753, 524289, 589825, 720897, 851969, 917505, 1114113, 1245185, 1441793, 1507329, 1572865, 1638401, 1769473, 1835009, 2228225, 2293761, 2490369, 2883585, 3014657, 3276801, 3473409, 3538945, 3604481, 3670017, 3866625, 3997697, 4325377, 4390913, 4456449, 4653057, 4849665, 5046273, 5111809]}
json_instruct
{"type": "object", "properties": {"\u8fd4\u56de\u503c": {"type": "array", "items": {"type": "integer"}}}, "required": ["\u8fd4\u56de\u503c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"\u6cd5\u898f\u6027\u8cea": {"type": "string"}, "\u6cd5\u898f\u540d\u7a31": {"type": "string"}, "\u6cd5\u898f\u7db2\u5740": {"type": "string"}, "\u6cd5\u898f\u985e\u5225": {"type": "string"}, "\u6700\u65b0\u7570\u52d5\u65e5\u671f": {"type": "string"}, "\u5ee2\u6b62\u8a3b\u8a18": {"type": "string"}, "\u662f\u5426\u82f1\u8b6f\u8a3b\u8a18": {"type": "string"}, "\u6cbf\u9769\u5167\u5bb9": {"type": "string"}, "\u6cd5\u898f\u5167\u5bb9": {"type": "array", "items": {"type": "object", "properties": {"\u689d\u865f": {"type": "string"}, "\u689d\u6587\u5167\u5bb9": {"type": "string"}}, "required": ["\u689d\u865f", "\u689d\u6587\u5167\u5bb9"]}}}, "required": ["\u6cd5\u898f\u6027\u8cea", "\u6cd5\u898f\u540d\u7a31", "\u6cd5\u898f\u7db2\u5740", "\u6cd5\u898f\u985e\u5225", "\u6700\u65b0\u7570\u52d5\u65e5\u671f", "\u5ee2\u6b62\u8a3b\u8a18", "\u662f\u5426\u82f1\u8b6f\u8a3b\u8a18", "\u6cbf\u9769\u5167\u5bb9", "\u6cd5\u898f\u5167\u5bb9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u6cd5\u898f\u6027\u8cea" : "\u547d\u4ee4", "\u6cd5\u898f\u540d\u7a31" : "\u7d93\u6fdf\u90e8\u8cc7\u8a0a\u4e2d\u5fc3\u8a2d\u7f6e\u8fa6\u6cd5", "\u6cd5\u898f\u7db2\u5740" : "https://law.moj.gov.tw/LawClass/LawAll.aspx?pcode=J0000035", "\u6cd5\u898f\u985e\u5225" : "\u5ee2\u6b62\u6cd5\u898f\uff1e\u7d93\u6fdf\u90e8", "\u6700\u65b0\u7570\u52d5\u65e5\u671f" : "20011212", "\u5ee2\u6b62\u8a3b\u8a18" : "\u5ee2", "\u662f\u5426\u82f1\u8b6f\u8a3b\u8a18" : "N", "\u6cbf\u9769\u5167\u5bb9" : "1.\u4e2d\u83ef\u6c11\u570b\u4e03\u5341\u4e8c\u5e74\u4e5d\u6708\u4e5d\u65e5\u7d93\u6fdf\u90e8\uff0872\uff09\u7d93\u4eba\u5b57\u7b2c 37608 \u865f\u4ee4\u8a02\u5b9a\u767c\r\n \u5e03\u5168\u6587 9 \u689d\r\n2.\u4e2d\u83ef\u6c11\u570b\u4e5d\u5341\u5e74\u5341\u4e8c\u6708\u5341\u4e8c\u65e5\u7d93\u6fdf\u90e8\uff0890\uff09\u7d93\u4eba\u5b57\u7b2c 09000298410 \u865f\r\n \u4ee4\u767c\u5e03\u5ee2\u6b62", "\u6cd5\u898f\u5167\u5bb9" : [{"\u689d\u865f" : "\u7b2c 1 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u7d93\u6fdf\u90e8 (\u4ee5\u4e0b\u7c21\u7a31\u672c\u90e8) \u70ba\u914d\u5408\u5168\u570b\u884c\u653f\u8cc7\u8a0a\u7cfb\u7d71\u4e4b\u5efa\u7acb\uff0c\u7279\u8a2d\u7f6e\u300c\u7d93\u6fdf\r\n\u90e8\u8cc7\u8a0a\u4e2d\u5fc3\u300d (\u4ee5\u4e0b\u7c21\u7a31\u672c\u4e2d\u5fc3) \uff0c\u4ee5\u8ca0\u8cac\u672c\u90e8\u53ca\u6240\u5c6c\u5404\u55ae\u4f4d\u884c\u653f\u696d\u52d9\u96fb\r\n\u8166\u5316\u8a08\u756b\u4e4b\u63a8\u884c\u5de5\u4f5c\u3002"}, {"\u689d\u865f" : "\u7b2c 2 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u638c\u7406\u5de6\u5217\u4e8b\u9805\uff1a\r\n\u4e00\u3001\u672c\u90e8\u884c\u653f\u8cc7\u8a0a\u7cfb\u7d71\u4e4b\u6574\u9ad4\u898f\u5283\u3001\u5354\u8abf\u53ca\u63a8\u52d5\u4e8b\u9805\u3002\r\n\u4e8c\u3001\u672c\u90e8\u53ca\u6240\u5c6c\u55ae\u4f4d\u884c\u653f\u696d\u52d9\u96fb\u8166\u5316\u61c9\u7528\u7cfb\u7d71\u4e4b\u898f\u5283\u8a2d\u8a08\u3001\u7a0b\u5f0f\u8a2d\u8a08\u8207\u6e2c\r\n \u8a66\u3001\u7cfb\u7d71\u6e2c\u8a66\u53ca\u7cfb\u7d71\u7dad\u8b77\u3002\r\n\u4e09\u3001\u90e8\u5c6c\u55ae\u4f4d\u96fb\u5b50\u8a08\u7b97\u6a5f\u786c\u9ad4\u8a2d\u5099\u79df\u8cfc\u4e4b\u521d\u5be9\u4e8b\u9805\u3002\r\n\u56db\u3001\u90e8\u5c6c\u55ae\u4f4d\u8cc7\u8a0a\u8655\u7406\u6216\u8edf\u9ad4\u8a2d\u8a08\u4e4b\u5916\u5305\uff0c\u5728\u898f\u5b9a\u9650\u984d\u4ee5\u5167\u6848\u4ef6\u4e4b\u5be9\u5b9a\uff0c\r\n \u53ca\u8d85\u904e\u898f\u5b9a\u9650\u984d\u6848\u4ef6\u4e4b\u521d\u5be9\u4e8b\u9805\u3002\r\n\u4e94\u3001\u672c\u90e8\u53ca\u6240\u5c6c\u55ae\u4f4d\u884c\u653f\u8cc7\u8a0a\u7cfb\u7d71\u6240\u7528\u540d\u8a5e\u5b9a\u7fa9\u3001\u8cc7\u6599\u8a5e\u5178\u53ca\u6a19\u6e96\u4f5c\u696d\u898f\r\n \u7bc4\u4e4b\u7814\u8a02\u4e8b\u9805\u3002\r\n\u516d\u3001\u8d85\u90e8\u6703\u9593\u8cc7\u8a0a\u79fb\u8f49\u8207\u4ea4\u63db\u4e4b\u5354\u8abf\u4e8b\u9805\u3002\r\n\u4e03\u3001\u672c\u90e8\u53ca\u6240\u5c6c\u55ae\u4f4d\u96fb\u5b50\u8a08\u7b97\u6a5f\u5de5\u4f5c\u4eba\u54e1\u53ca\u76f8\u95dc\u4eba\u54e1\u8a13\u7df4\u8207\u9032\u4fee\u8a08\u5283\u4e4b\u7814\r\n \u64ec\u53ca\u8fa6\u7406\u4e8b\u9805\u3002\r\n\u516b\u3001\u672c\u4e2d\u5fc3\u96fb\u5b50\u8a08\u7b97\u6a5f\u7cfb\u7d71\u589e\u63db\u8a08\u5283\u4e4b\u64ec\u8b70\u4e8b\u9805\u3002\r\n\u4e5d\u3001\u672c\u4e2d\u5fc3\u96fb\u5b50\u8a08\u7b97\u6a5f\u4e4b\u64cd\u4f5c\u8207\u7dad\u8b77\u4e8b\u9805\u3002\r\n\u5341\u3001\u672c\u4e2d\u5fc3\u8cc7\u6599\u5eab\u4e4b\u5efa\u7acb\u3001\u904b\u7528\u53ca\u4fdd\u7ba1\u4e8b\u9805\u3002\r\n\u5341\u4e00\u3001\u6709\u95dc\u96fb\u5b50\u8a08\u7b97\u6a5f\u4e4b\u7cfb\u7d71\u8a2d\u8a08\u3001\u7a0b\u5f0f\u8a2d\u8a08\u8207\u6e2c\u8a66\u3001\u4f5c\u696d\u63a7\u5236\u65b9\u6cd5\u53ca\u64cd\r\n \u4f5c\u7cfb\u7d71\u4e4b\u7814\u7a76\u6539\u9032\u4e8b\u9805\u3002\r\n\u5341\u4e8c\u3001\u5176\u4ed6\u6709\u95dc\u8cc7\u8a0a\u8655\u7406\u4e8b\u9805\u3002"}, {"\u689d\u865f" : "\u7b2c 3 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u7f6e\u4e3b\u4efb\u4e00\u4eba\u7d9c\u7406\u696d\u52d9\u3001\u526f\u4e3b\u4efb\u4e00\u4eba\u8944\u4f50\u4e4b\u3002"}, {"\u689d\u865f" : "\u7b2c 4 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u8a2d\u5236\u5ea6\u5de5\u7a0b\u7d44\u53ca\u4f5c\u696d\u63a7\u5236\u7d44\uff0c\u5206\u5225\u638c\u7406\u7b2c\u4e8c\u689d\u6240\u5217\u4e8b\u9805\u3002"}, {"\u689d\u865f" : "\u7b2c 5 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u70ba\u61c9\u696d\u52d9\u9700\u8981\uff0c\u5f97\u8058\u8acb\u570b\u5167\u5916\u96fb\u5b50\u8a08\u7b97\u6a5f\u5c08\u5bb6\u70ba\u9867\u554f\u3002"}, {"\u689d\u865f" : "\u7b2c 6 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u7f6e\u5236\u5ea6\u5de5\u7a0b\u5e2b\u3001\u7cfb\u7d71\u5206\u6790\u5e2b\u3001\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u3001\u52a9\u7406\u8a2d\u8a08\u5e2b\u3001\u7a0b\u5f0f\u8a2d\u8a08\r\n\u54e1\u3001\u7ba1\u7406\u5e2b\u3001\u64cd\u4f5c\u54e1\u82e5\u5e72\u4eba\u3002\u5404\u8077\u7a31\u4e4b\u54e1\u984d\u53e6\u4ee5\u7de8\u7d44\u8868\u5b9a\u4e4b\u3002"}, {"\u689d\u865f" : "\u7b2c 7 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u4eba\u4e8b\u3001\u6703\u8a08\u3001\u884c\u653f\u7ba1\u7406\u7b49\u4e8b\u9805\u5747\u7531\u7d93\u6fdf\u90e8\u7d71\u7c4c\u8fa6\u7406\u3002"}, {"\u689d\u865f" : "\u7b2c 8 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u4e2d\u5fc3\u6240\u9700\u7d93\u8cbb\u7531\u672c\u90e8\u7de8\u5217\u5e74\u5ea6\u9810\u7b97\uff0c\u64a5\u4ea4\u672c\u4e2d\u5fc3\u61c9\u7528\u3002"}, {"\u689d\u865f" : "\u7b2c 9 \u689d", "\u689d\u6587\u5167\u5bb9" : "\u672c\u8fa6\u6cd5\u81ea\u767c\u5e03\u65e5\u65bd\u884c\u3002\r\n (\u7de8 \u8a3b\uff1a\u9644\u8868\u8acb\u53c3\u95b1 \u4e2d\u83ef\u6c11\u570b\u73fe\u884c\u6cd5\u898f\u5f59\u7de8 83 \u5e74 5 \u6708\u7248 (\u4e8c\u25cb\r\n ) \u7b2c 13015 \u9801)"}]}
json_instruct
{"type": "object", "properties": {"\u6cd5\u898f\u6027\u8cea": {"type": "string"}, "\u6cd5\u898f\u540d\u7a31": {"type": "string"}, "\u6cd5\u898f\u7db2\u5740": {"type": "string"}, "\u6cd5\u898f\u985e\u5225": {"type": "string"}, "\u6700\u65b0\u7570\u52d5\u65e5\u671f": {"type": "string"}, "\u5ee2\u6b62\u8a3b\u8a18": {"type": "string"}, "\u662f\u5426\u82f1\u8b6f\u8a3b\u8a18": {"type": "string"}, "\u6cbf\u9769\u5167\u5bb9": {"type": "string"}, "\u6cd5\u898f\u5167\u5bb9": {"type": "array", "items": {"type": "object", "properties": {"\u689d\u865f": {"type": "string"}, "\u689d\u6587\u5167\u5bb9": {"type": "string"}}, "required": ["\u689d\u865f", "\u689d\u6587\u5167\u5bb9"]}}}, "required": ["\u6cd5\u898f\u6027\u8cea", "\u6cd5\u898f\u540d\u7a31", "\u6cd5\u898f\u7db2\u5740", "\u6cd5\u898f\u985e\u5225", "\u6700\u65b0\u7570\u52d5\u65e5\u671f", "\u5ee2\u6b62\u8a3b\u8a18", "\u662f\u5426\u82f1\u8b6f\u8a3b\u8a18", "\u6cbf\u9769\u5167\u5bb9", "\u6cd5\u898f\u5167\u5bb9"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 27409, "cartId" : "7106d8ae-3f45-47d0-b185-f4c3310ebb78", "preferredProducts" : [2467, 396, 4170, 1802, 1564, 2609], "productReviews" : [{"productId" : 2814, "reviewText" : "My co-worker Aurthur has one of these. He says it looks white.", "reviewDate" : "2017-12-23T08:43:12.2463656+02:00"}, {"productId" : 2982, "reviewText" : "My neighbor Julisa has one of these. She works as a bartender and she says it looks crooked.", "reviewDate" : "2018-08-10T10:55:48.6067646+03:00"}, {"productId" : 4708, "reviewText" : "this capacitor is gracious.", "reviewDate" : "2019-01-15T09:56:52.4337115+02:00"}, {"productId" : 3785, "reviewText" : "My neighbor Honora has one of these. She works as a reporter and she says it looks enormous.", "reviewDate" : "2018-02-16T10:01:19.6087292+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["agi-node", "mysql-tool", "promised-fiber", "sync-memcached-store", "workjs"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"postal_code" : "23690", "place_name" : "San Mart\u00edn", "place_type" : "Fraccionamiento", "county" : "Comond\u00fa", "state" : "Baja California Sur", "city" : "Ciudad Constituci\u00f3n"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"4520XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "511011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "452041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "373010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "516011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472130": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472150": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "513020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "474031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["4520XX", "count", "511011", "452041", "999920", "37201X", "373010", "516011", "472130", "472150", "N.A.//", "472031", "533030", "513020", "472061", "474031"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"4520XX" : {"count" : 10}, "count" : 61, "511011" : {"count" : 1}, "452041" : {"count" : 1}, "999920" : {"count" : 1}, "37201X" : {"count" : 2}, "373010" : {"count" : 1}, "516011" : {"count" : 1}, "472130" : {"count" : 1}, "472150" : {"count" : 1}, "N.A.//" : {"count" : 36}, "472031" : {"count" : 1}, "533030" : {"count" : 1}, "513020" : {"count" : 2}, "472061" : {"count" : 1}, "474031" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"4520XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "511011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "452041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "37201X": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "373010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "516011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472130": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472150": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "533030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "513020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "472061": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "474031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["4520XX", "count", "511011", "452041", "999920", "37201X", "373010", "516011", "472130", "472150", "N.A.//", "472031", "533030", "513020", "472061", "474031"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-08-08T12:00:00Z", "Temp" : 34.8, "RelHum" : 35, "WindSpeed" : 4.7, "WindDir" : 294}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "aws-sdk": {"type": "string"}, "bcrypt-nodejs": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-moment": {"type": "string"}, "request": {"type": "string"}, "restify": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["async", "aws-sdk", "bcrypt-nodejs", "jsonwebtoken", "moment", "mongoose", "mongoose-moment", "request", "restify", "socket.io"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fblafashion-server", "version" : "1.0.0", "description" : "FBLA Fashion Node.JS server", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Andrey Butenko", "license" : "UNLICENSED", "dependencies" : {"async" : "^1.5.0", "aws-sdk" : "^2.2.30", "bcrypt-nodejs" : "0.0.3", "jsonwebtoken" : "^5.4.1", "moment" : "^2.10.6", "mongoose" : "^4.3.3", "mongoose-moment" : "^0.1.0", "request" : "^2.67.0", "restify" : "^4.0.3", "socket.io" : "^1.3.7"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "aws-sdk": {"type": "string"}, "bcrypt-nodejs": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-moment": {"type": "string"}, "request": {"type": "string"}, "restify": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["async", "aws-sdk", "bcrypt-nodejs", "jsonwebtoken", "moment", "mongoose", "mongoose-moment", "request", "restify", "socket.io"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"type": "integer"}, "openPullRequests": {"type": "integer"}, "mergedPullRequests": {"type": "integer"}, "closedPullRequests": {"type": "integer"}, "stargazers": {"type": "integer"}, "watchers": {"type": "integer"}}, "required": ["datestamp", "nameWithOwner", "name", "commits", "forkCount", "issues", "openIssues", "closedIssues", "pullRequests", "openPullRequests", "mergedPullRequests", "closedPullRequests", "stargazers", "watchers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"datestamp" : "2020-05-09", "nameWithOwner" : "pantsbuild/pex", "name" : "pex", "commits" : 698, "forkCount" : 173, "issues" : 520, "openIssues" : 106, "closedIssues" : 414, "pullRequests" : 442, "openPullRequests" : 18, "mergedPullRequests" : 355, "closedPullRequests" : 69, "stargazers" : 1607, "watchers" : 53}
json_instruct
{"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"type": "integer"}, "openPullRequests": {"type": "integer"}, "mergedPullRequests": {"type": "integer"}, "closedPullRequests": {"type": "integer"}, "stargazers": {"type": "integer"}, "watchers": {"type": "integer"}}, "required": ["datestamp", "nameWithOwner", "name", "commits", "forkCount", "issues", "openIssues", "closedIssues", "pullRequests", "openPullRequests", "mergedPullRequests", "closedPullRequests", "stargazers", "watchers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404353065, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "b71a35076a5c68805be442ff4f629325", "wof:id" : 404353065, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.26659157474163, 46.68889857505592, -1.13854773723572, 46.7531738683846], "geometry" : {"coordinates" : [[[-1.2004746063615, 46.68889857505592], [-1.2237899025693, 46.69619332409237], [-1.23612954431344, 46.70653155289756], [-1.24570059654522, 46.70789987407045], [-1.24765493342561, 46.71444609688637], [-1.26659157474163, 46.71385141145029], [-1.26051603878243, 46.72413146683196], [-1.2647026432155, 46.72467924051827], [-1.25788278433012, 46.73669098045782], [-1.25984752718599, 46.74617625210815], [-1.23075345044423, 46.7423202204296], [-1.21563471816711, 46.74406685216212], [-1.20014081986059, 46.7531738683846], [-1.17549965119799, 46.75073676848343], [-1.16993281123559, 46.74163401524538], [-1.15116236255282, 46.74178257600997], [-1.14830344619391, 46.73201289151014], [-1.13854773723572, 46.72428644935467], [-1.149012077639, 46.71281811523254], [-1.15261388925543, 46.71072215002983], [-1.16188450404707, 46.71332553096518], [-1.16643407923652, 46.71179883545759], [-1.17417689497697, 46.70305059723054], [-1.18914454868209, 46.70033172360076], [-1.2004746063615, 46.68889857505592]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x461fae419bf4c30004b9bf41ca0787f851bce011062f0d3940b867ff6468cda2", "parentHash" : "0x8c319118a16372efc4e063f06c7ea1de2f2a6375ead87085e8fa876858bff528", "number" : 4913, "timestamp" : 1438286355, "nonce" : "0xcf13e0abe5b39c16", "difficulty" : 171807628702, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x0785A86bE9c2D68DbAEbaf1DB72641680529E2FD", "extraData" : "0x476574682f76312e302e302d63356437666165662f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "deploy"]}, "devDependencies": {"type": "object", "properties": {"@vuepress/plugin-active-header-links": {"type": "string"}, "@vuepress/plugin-back-to-top": {"type": "string"}, "@vuepress/plugin-google-analytics": {"type": "string"}, "@vuepress/plugin-medium-zoom": {"type": "string"}, "vuepress": {"type": "string"}}, "required": ["@vuepress/plugin-active-header-links", "@vuepress/plugin-back-to-top", "@vuepress/plugin-google-analytics", "@vuepress/plugin-medium-zoom", "vuepress"]}, "dependencies": {"type": "object", "properties": {"@vssue/api-github-v3": {"type": "string"}, "@vssue/vuepress-plugin-vssue": {"type": "string"}, "vuepress-plugin-serve": {"type": "string"}}, "required": ["@vssue/api-github-v3", "@vssue/vuepress-plugin-vssue", "vuepress-plugin-serve"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "myblog", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"dev" : "vuepress dev docs", "build" : "vuepress build docs", "deploy" : "deploy.sh"}, "devDependencies" : {"@vuepress/plugin-active-header-links" : "^1.0.0-rc.1", "@vuepress/plugin-back-to-top" : "^1.0.0-rc.1", "@vuepress/plugin-google-analytics" : "^1.0.0-rc.1", "@vuepress/plugin-medium-zoom" : "^1.0.0-rc.1", "vuepress" : "^1.0.3"}, "dependencies" : {"@vssue/api-github-v3" : "^1.1.2", "@vssue/vuepress-plugin-vssue" : "^1.2.2", "vuepress-plugin-serve" : "^2.0.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "deploy"]}, "devDependencies": {"type": "object", "properties": {"@vuepress/plugin-active-header-links": {"type": "string"}, "@vuepress/plugin-back-to-top": {"type": "string"}, "@vuepress/plugin-google-analytics": {"type": "string"}, "@vuepress/plugin-medium-zoom": {"type": "string"}, "vuepress": {"type": "string"}}, "required": ["@vuepress/plugin-active-header-links", "@vuepress/plugin-back-to-top", "@vuepress/plugin-google-analytics", "@vuepress/plugin-medium-zoom", "vuepress"]}, "dependencies": {"type": "object", "properties": {"@vssue/api-github-v3": {"type": "string"}, "@vssue/vuepress-plugin-vssue": {"type": "string"}, "vuepress-plugin-serve": {"type": "string"}}, "required": ["@vssue/api-github-v3", "@vssue/vuepress-plugin-vssue", "vuepress-plugin-serve"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"breakpoint-sass": {"type": "string"}, "contentful": {"type": "string"}, "date-fns": {"type": "string"}, "gsap": {"type": "string"}, "js-cookie": {"type": "string"}, "next": {"type": "string"}, "next-translate": {"type": "string"}, "prismic-javascript": {"type": "string"}, "prismic-reactjs": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-spring": {"type": "string"}, "resize-observer-polyfill": {"type": "string"}, "sass": {"type": "string"}, "swr": {"type": "string"}}, "required": ["breakpoint-sass", "contentful", "date-fns", "gsap", "js-cookie", "next", "next-translate", "prismic-javascript", "prismic-reactjs", "react", "react-dom", "react-spring", "resize-observer-polyfill", "sass", "swr"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "filipe-lampejo", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "next dev -H 0.0.0.0", "build" : "next build", "start" : "next start"}, "dependencies" : {"breakpoint-sass" : "^2.7.1", "contentful" : "^7.15.0", "date-fns" : "^2.16.1", "gsap" : "^3.5.1", "js-cookie" : "^2.2.1", "next" : "^11.1.2", "next-translate" : "^1.0.1", "prismic-javascript" : "^3.0.2", "prismic-reactjs" : "^1.3.3", "react" : "17.0.1", "react-dom" : "17.0.1", "react-spring" : "^8.0.27", "resize-observer-polyfill" : "^1.5.1", "sass" : "^1.29.0", "swr" : "^0.3.11"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"breakpoint-sass": {"type": "string"}, "contentful": {"type": "string"}, "date-fns": {"type": "string"}, "gsap": {"type": "string"}, "js-cookie": {"type": "string"}, "next": {"type": "string"}, "next-translate": {"type": "string"}, "prismic-javascript": {"type": "string"}, "prismic-reactjs": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-spring": {"type": "string"}, "resize-observer-polyfill": {"type": "string"}, "sass": {"type": "string"}, "swr": {"type": "string"}}, "required": ["breakpoint-sass", "contentful", "date-fns", "gsap", "js-cookie", "next", "next-translate", "prismic-javascript", "prismic-reactjs", "react", "react-dom", "react-spring", "resize-observer-polyfill", "sass", "swr"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WHICH MAKES THE DIFFICULTY IN THE NAMES OF SUBSTANCES.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/9689.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$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"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "chrome_url_overrides": {"type": "object", "properties": {"newtab": {"type": "string"}}, "required": ["newtab"]}, "action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}}, "required": ["default_icon"]}}, "required": ["name", "description", "version", "manifest_version", "chrome_url_overrides", "action"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "new-tab", "description" : "Yet another tab chrome extension", "version" : "1.0", "manifest_version" : 3, "chrome_url_overrides" : {"newtab" : "index.html"}, "action" : {"default_icon" : {"16" : "favicon-32x32.png", "32" : "favicon-32x32.png", "48" : "favicon-192x192.png", "128" : "favicon-192x192.png"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "chrome_url_overrides": {"type": "object", "properties": {"newtab": {"type": "string"}}, "required": ["newtab"]}, "action": {"type": "object", "properties": {"default_icon": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}}, "required": ["default_icon"]}}, "required": ["name", "description", "version", "manifest_version", "chrome_url_overrides", "action"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "string"}, "version_show": {"type": "string"}, "download": {"type": "string"}}, "required": ["version", "version_show", "download"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "4.6.7", "version_show" : "4.6.7", "download" : "https://github.com/yoshiko2/AV_Data_Capture/releases"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "version_show": {"type": "string"}, "download": {"type": "string"}}, "required": ["version", "version_show", "download"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/namaa.apa/src/main/java/com/apa/namaa/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/namaa.apa/src/main/java/com/apa/namaa/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_name" : "hosnimed/Namaa.APA", "files" : {"/namaa.apa/src/main/java/com/apa/namaa/service/util/RandomUtil.java" : 3}, "pull_request" : "https://github.com/hosnimed/Namaa.APA/pull/1", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 3}}
json_instruct
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/namaa.apa/src/main/java/com/apa/namaa/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/namaa.apa/src/main/java/com/apa/namaa/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["browserify-cdn", "express-session-level", "flatline", "hangar", "inverted-index", "irc-posts-cache-client", "kcsp", "level-2pc", "level-cloudnull", "level-kued", "level-session", "level-ttl-cache", "limitd", "meatspace-publico", "ndn-cache", "ndn-forwarder", "node-red-contrib-leveldb-hyper-ttl", "node-red-contrib-leveldb-ttl", "parcelify-cdn", "revisit-tether", "revisit-token", "robots-txt", "scurry", "ut-cache", "x0x0x-server"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "New boat migrants arriving in Australia being sent to live in Papua New Guinea under new plan", "text" : "CANBERRA, Australia \u2013 Australian Prime Minister Kevin Rudd says all refugees who arrive in Australia by boat will be resettled on the South Pacific island nation of Papua New Guinea.\n\nRudd and Papua New Guinea Prime Minister Peter O'Neill signed an agreement in the Australian east coast city of Brisbane on Friday that will enable Australia to deport refugees to its developing neighbor.\n\nThe move aims to deter an escalating number of asylum seekers who travel to Australia in rickety fishing boats from poor, war-torn homelands through countries including Indonesia and Malaysia.\n\nThe growing influx poses a major political problem for Rudd's Labor Party which is the clear underdog in elections expected within months.\n\nImmigration Minister Tony Burke says the rule will apply to refugees who arrive from Friday."}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "null"}, "birth_place": {"type": "string"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Green Cocoon #6, Hong Kong", "creation_date" : "2010", "creation_date_earliest" : "2010-01-01", "creation_date_latest" : "2010-01-01", "medium" : "inkjet print", "accession_number" : "2011.14.2", "id" : "cmoa:things/6e5d8a19-f27a-4ed5-9cc6-44d2f18e036d", "credit_line" : "Second Century Acquisition Fund", "date_acquired" : "2011-04-07", "department" : "Photography", "physical_location" : "Not on View", "item_width" : 50.0, "item_height" : 40.0, "item_depth" : 1.875, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=92799", "provenance_text" : "Peter Steinhauer, Hong Kong (2010)", "classification" : "photographs", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=118716&size=Medium"}, {"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=103790&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/db78780c-b90b-4289-93f2-c8d132d82166", "party_type" : "Person", "full_name" : "Peter Steinhauer", "cited_name" : "Steinhauer, Peter", "role" : null, "nationality" : "American", "birth_date" : "1966-01-01", "death_date" : null, "birth_place" : "Boulder, Colorado", "death_place" : null}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "null"}, "birth_place": {"type": "string"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": {"identifier_exists": {"type": "string"}, "invalid_key": {"type": "string"}, "no_devices": {"type": "string"}}, "required": ["identifier_exists", "invalid_key", "no_devices"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"api_key": {"type": "string"}, "app_key": {"type": "string"}}, "required": ["api_key", "app_key"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}, "title": {"type": "string"}}, "required": ["abort", "error", "step", "title"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"abort" : {"already_configured" : "D\u00ebsen App Schl\u00ebssel g\u00ebtt scho benotzt"}, "error" : {"identifier_exists" : "Applikatioun's Schl\u00ebssel an/oder API Schl\u00ebssel ass scho registr\u00e9iert", "invalid_key" : "Ong\u00ebltegen API Schl\u00ebssel an/oder Applikatioun's Schl\u00ebssel", "no_devices" : "Keng Apparater am Kont fonnt"}, "step" : {"user" : {"data" : {"api_key" : "API Schl\u00ebssel", "app_key" : "Applikatioun's Schl\u00ebssel"}, "title" : "F\u00ebllt \u00e4r Informatiounen aus"}}, "title" : "Ambient PWS"}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": {"identifier_exists": {"type": "string"}, "invalid_key": {"type": "string"}, "no_devices": {"type": "string"}}, "required": ["identifier_exists", "invalid_key", "no_devices"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"api_key": {"type": "string"}, "app_key": {"type": "string"}}, "required": ["api_key", "app_key"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}, "title": {"type": "string"}}, "required": ["abort", "error", "step", "title"]}}, "required": ["config"], "$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" : "advanced_reborn:block/industrial_tnt"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}