changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "frequency": {
+ "description": "Check interval in minutes.",
+ "type": "integer"
+ },
+ "id": {
+ "description": "Monitor id, used by every other tool.",
+ "type": "integer"
+ },
+ "isActive": {
+ "description": "False while the monitor is paused.",
+ "type": "boolean"
+ },
+ "name": {
+ "type": "string"
+ },
+ "statusSummary": {
+ "description": "Current state, for example GOOD or ERROR.",
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "PING",
+ "HTTP",
+ "API",
+ "SSL",
+ "DOMAIN",
+ "PORT"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+}