IntegrationsPagerdutyActions
List PagerDuty maintenance windows
List maintenance windows for the bound account. Requires read.
maintenance_windows.list · PagerDuty · v1
Details
Scopes
read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
maintenance_windows | array<object> | Yes | maxItems 100 |
maintenance_windows[] | object | Yes | additionalProperties false |
maintenance_windows[].id | string | Yes | minLength 1; maxLength 100 |
maintenance_windows[].sequence_number | integer | No | minimum 0 |
maintenance_windows[].start_time | string | Yes | minLength 1; maxLength 64 |
maintenance_windows[].end_time | string | Yes | minLength 1; maxLength 64 |
maintenance_windows[].description | string | Yes | maxLength 10000 |
maintenance_windows[].services | array<object> | Yes | maxItems 100 |
maintenance_windows[].services[] | object | Yes | additionalProperties false |
maintenance_windows[].services[].id | string | Yes | minLength 1; maxLength 100 |
maintenance_windows[].services[].summary | string | Yes | minLength 1; maxLength 200 |
maintenance_windows[].services[].html_url | string | No | maxLength 2048 |
maintenance_windows[].services[].type | string | No | maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"maintenance_windows": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"sequence_number": {
"type": "integer",
"minimum": 0
},
"start_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"end_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"description": {
"type": "string",
"maxLength": 10000
},
"services": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"summary": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"html_url": {
"type": "string",
"maxLength": 2048
},
"type": {
"type": "string",
"maxLength": 64
}
},
"required": [
"id",
"summary"
]
},
"maxItems": 100
}
},
"required": [
"id",
"start_time",
"end_time",
"description",
"services"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"maintenance_windows"
]
}