7 "description": "Unique identifier of Database object."
10 "id": "PrimaryColors",
12 "values": ["red", "green", "blue"]
17 "items": { "$ref": "PrimaryColors" }
22 "description": "Database error.",
24 { "name": "message", "type": "string", "description": "Error message." },
25 { "name": "code", "type": "integer", "description": "Error code." }
31 "name": "didExecuteOptionalParameters",
33 { "name": "columnNames", "type": "array", "optional": true, "items": { "type": "string" } },
34 { "name": "notes", "type": "string", "optional": true },
35 { "name": "timestamp", "type": "number", "optional": true },
36 { "name": "values", "type": "object", "optional": true },
37 { "name": "payload", "type": "any", "optional": true },
38 { "name": "sqlError", "$ref": "Error", "optional": true },
39 { "name": "screenColor", "$ref": "PrimaryColors", "optional": true },
40 { "name": "alternateColors", "$ref": "ColorList", "optional": true },
41 { "name": "printColor", "type": "string", "values": ["cyan", "magenta", "yellow", "black"], "optional": true }
45 "name": "didExecuteNoOptionalParameters",
47 { "name": "columnNames", "type": "array", "items": { "type": "string" } },
48 { "name": "notes", "type": "string" },
49 { "name": "timestamp", "type": "number" },
50 { "name": "values", "type": "object" },
51 { "name": "payload", "type": "any" },
52 { "name": "sqlError", "$ref": "Error" },
53 { "name": "screenColor", "$ref": "PrimaryColors" },
54 { "name": "alternateColors", "$ref": "ColorList" },
55 { "name": "printColor", "type": "string", "values": ["cyan", "magenta", "yellow", "black"] }