{
  "openapi": "3.1.0",
  "info": {
    "description": "This is the API reference for incident.io.\n\nIt documents available API endpoints, provides examples of how to use it, and\ninstructions around things like authentication and error handling.\n\nThe API is hosted at:\n\n- https://api.incident.io/\n\nAnd you will need to create an API key via your [incident.io\ndashboard](https://app.incident.io/settings/api-keys) to make requests.\n\n# Making requests\n\nHere are the key concepts required to make requests to the incident.io API.\n\n## Authentication\n\nFor all requests made to the incident.io API, you'll need an API key.\n\nTo create an API key, head to the incident dashboard and visit [API\nkeys](https://app.incident.io/settings/api-keys). When you create the key, you'll be able to choose what actions it\ncan take for your account: choose carefully, as those roles can only be set\nwhen you first create the key. We'll only show you the token once, so make sure\nyou store it somewhere safe.\n\nAPI keys are global to your incident.io account, and can be managed by anyone\nwho has the right permissions. We display the user that created the API key,\nand the API key will remain valid if that user becomes deactivated.\n\nOnce you have the key, you should make requests to the API that set the\n`Authorization` request header using a \"Bearer\" authentication scheme:\n\n```\nAuthorization: Bearer <YOUR_API_KEY>\n```\n\n## Rate Limits\n\nThe incident.io API enforces rate limits to ensure consistent performance for all users.\n\nThe default rate limit is 1200 requests/minute per API key. This limit applies to most endpoints across the API.\n\nLimits are token buckets that refill continuously rather than resetting on a fixed window boundary. The default\nbucket holds 1200 requests and refills at 20 per second, so you can burst up to the full bucket and then sustain\n20 requests/second indefinitely. There is no boundary at which your quota resets to full in one step.\n\nSome endpoints have lower rate limits, particularly those that interact with external third-party systems that impose\ntheir own limitations. These specific limits vary by endpoint.\n\n### Rate limit headers\n\nResponses to requests authenticated with an API key carry your current allowance, so you can pace yourself rather\nthan waiting to be throttled:\n\n```\nX-RateLimit-Limit: 60, 1200;window=60, 60;window=60\nX-RateLimit-Remaining: 59\nX-RateLimit-Used: 1\nX-RateLimit-Reset: 1785173199\n```\n\n| Header | Meaning |\n| --- | --- |\n| `X-RateLimit-Limit` | The quota that binds this request, followed by every limit that applied and the window it applies over |\n| `X-RateLimit-Remaining` | Requests you can make right now against the binding limit |\n| `X-RateLimit-Used` | Requests you have spent against it |\n| `X-RateLimit-Reset` | Unix timestamp (seconds) at which that limit will be back to full |\n\nMore than one limit can apply to a request: your API key's overall limit, and for some endpoints a lower limit of\ntheir own. `X-RateLimit-Limit` lists all of them, each with its window, so `1200;window=60` means 1200 requests per\nminute. Because our limits refill continuously rather than resetting on a boundary, that window is what tells you\nthe rate you can sustain: 1200 per 60 seconds is 20 requests/second indefinitely.\n\n`Remaining`, `Used` and `Reset` describe whichever limit has the least allowance left, since that is the one you\nwill hit first.\n\n`X-RateLimit-Remaining` may lag by a small number of requests under high concurrency, and can move by more than the\nrequests you made, because limits scoped to your whole organisation are shared with your other API keys.\n\nHeaders are omitted rather than guessed if we cannot determine your allowance for a request.\n\n### Exceeding a rate limit\n\nWhen you exceed a rate limit the API responds with `429 Too Many Requests` and a `Retry-After` header giving the\nnumber of seconds to wait:\n\n```\nX-RateLimit-Limit: 1200, 1200;window=60\nX-RateLimit-Remaining: 0\nX-RateLimit-Used: 1200\nX-RateLimit-Reset: 1785173199\nRetry-After: 1\n```\n\nPrefer `Retry-After` over `X-RateLimit-Reset` when deciding how long to back off. `Retry-After` is when a single\nrequest will succeed; `X-RateLimit-Reset` is the later point at which your whole allowance has returned. It is a\nduration rather than a timestamp, so it does not depend on your clock agreeing with ours.\n\nThe 429 also carries a JSON body with the same information:\n\n```json\n{\n    \"type\": \"too_many_requests\",\n    \"status\": 429,\n    \"request_id\": \"b839a403-7704-41c1-bf6a-39a2d68caefa\",\n    \"rate_limit\": {\n        \"name\": \"api_key_name\",\n        \"limit\": 1200,\n        \"remaining\": 0,\n        \"retry_after\": \"2025-04-17T11:17:18Z\"\n    },\n    \"errors\": [\n        {\n            \"code\": \"too_many_requests\",\n            \"message\": \"Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.\"\n        }\n    ]\n}\n```\n\nThe response includes:\n* The name of the API key (`name`)\n* The bucket limit (`limit`)\n* The number of requests remaining (`remaining`)\n* When you can retry requests (`retry_after`), as an RFC3339 timestamp\n\n## Errors\n\nWe use standard HTTP response codes to indicate the status or failure of API\nrequests.\n\nThe API response body will be JSON, and contain more detailed information on the\nnature of the error.\n\nAn example error when a request is made without an API key:\n\n```json\n{\n  \"type\": \"authentication_error\",\n  \"status\": 401,\n  \"request_id\": \"8e3cc412-b49d-4957-9073-2c19d2c61804\",\n  \"errors\": [\n    {\n      \"code\": \"missing_authorization_material\",\n      \"message\": \"No authorization material provided in request\"\n    }\n  ]\n}\n```\n\nNote that the error:\n\n- Contains the HTTP status (`401`)\n- References the type of error (`authentication_error`)\n- Includes a `request_id` that can be provided to incident.io support to help\n\tdebug questions with your API request\n- Provides a list of individual errors, which go into detail about why the error\n\toccurred\n\nThe most common error will be a 422 Validation Error, which is returned when the\nrequest was rejected due to failing validations.\n\nThese errors look like this:\n\n```json\n{\n  \"type\": \"validation_error\",\n  \"status\": 422,\n  \"request_id\": \"631766c4-4afd-4803-997c-cd700928fa4b\",\n  \"errors\": [\n    {\n      \"code\": \"is_required\",\n      \"message\": \"A severity is required to open an incident\",\n      \"source\": {\n        \"field\": \"severity_id\"\n      }\n    }\n  ]\n}\n```\n\nThis error is caused by not providing a severity identifier, which should be at\nthe `severity_id` field of the request payload. Errors like these can be mapped to\nforms, should you be integrating with the API from a user-interface.\n\n## Compatibility\n\nWe won't make breaking changes to existing API services or endpoints, but will\nexpect integrators to upgrade themselves to the latest API endpoints within 3\nmonths of us deprecating the old service.\n\nWe will make changes that are considered backwards compatible, which include:\n\n- Adding new API endpoints and services\n- Adding new properties to responses from existing API endpoints\n- Reordering properties returned from existing API endpoints\n- Adding optional request parameters to existing API endpoints\n- Altering the format or length of IDs\n- Adding new values to enums\n\nIt is important that clients are robust to these changes, to ensure reliable\nintegrations.\n\nAs an example, if you are generating a client using an openapi-generator, ensure\nthe generated client is configured to support unknown enum values, often\nconfigured via the `enumUnknownDefaultCase` parameter.\n\nWhen breaking changes are unavoidable, we'll create a new service version on a\nseparate path, and run them in parallel.\n\nFor example:\n\n- https://api.incident.io/v1/incidents\n- https://api.incident.io/v2/incidents\n\nFor any questions, email support@incident.io.\n",
    "title": "incident.io",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://api.incident.io"
    }
  ],
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "tags": [
    {
      "name": "API key"
    },
    {
      "name": "Activity log"
    },
    {
      "name": "Alert"
    },
    {
      "name": "Alert chat message template"
    },
    {
      "name": "Alert priority"
    },
    {
      "name": "Alert route"
    },
    {
      "name": "Alert schema"
    },
    {
      "name": "Alert source config"
    },
    {
      "name": "Announcement post template"
    },
    {
      "name": "Announcement rule"
    },
    {
      "name": "Catalog entry attribute"
    },
    {
      "name": "Catalog type"
    },
    {
      "name": "Connector config"
    },
    {
      "name": "Custom field"
    },
    {
      "name": "Debrief invite rule"
    },
    {
      "name": "Email otp login setting"
    },
    {
      "name": "Escalation"
    },
    {
      "name": "Escalation path"
    },
    {
      "name": "Follow up category"
    },
    {
      "name": "Follow up priority"
    },
    {
      "name": "Holiday user feed"
    },
    {
      "name": "Hris time off policy"
    },
    {
      "name": "IP allowlist"
    },
    {
      "name": "Incident call setting"
    },
    {
      "name": "Incident call transcription session"
    },
    {
      "name": "Incident duration metric"
    },
    {
      "name": "Incident role"
    },
    {
      "name": "Incident status"
    },
    {
      "name": "Incident template"
    },
    {
      "name": "Incident timestamp"
    },
    {
      "name": "Incident timestamp set by rule"
    },
    {
      "name": "Incident type"
    },
    {
      "name": "Integration"
    },
    {
      "name": "Internal status page"
    },
    {
      "name": "Maintenance window"
    },
    {
      "name": "Nudge"
    },
    {
      "name": "On call notification method"
    },
    {
      "name": "On call upsell"
    },
    {
      "name": "Organisation settings"
    },
    {
      "name": "Policy"
    },
    {
      "name": "Policy report schedule"
    },
    {
      "name": "Post incident task"
    },
    {
      "name": "Postmortem section"
    },
    {
      "name": "Postmortem template"
    },
    {
      "name": "Private alert"
    },
    {
      "name": "Private escalation"
    },
    {
      "name": "Private incident"
    },
    {
      "name": "Private incident membership"
    },
    {
      "name": "Private incident team membership"
    },
    {
      "name": "Private insights"
    },
    {
      "name": "Qr code mobile login setting"
    },
    {
      "name": "RBAC role"
    },
    {
      "name": "SCIM group"
    },
    {
      "name": "Schedule"
    },
    {
      "name": "Schedule override"
    },
    {
      "name": "Schedule sync rule"
    },
    {
      "name": "Schedule sync target"
    },
    {
      "name": "Secret"
    },
    {
      "name": "Severity"
    },
    {
      "name": "Status page"
    },
    {
      "name": "Status page sub page"
    },
    {
      "name": "Status page template"
    },
    {
      "name": "Team role"
    },
    {
      "name": "Team settings"
    },
    {
      "name": "Telemetry data source"
    },
    {
      "name": "Timeline item"
    },
    {
      "name": "User"
    },
    {
      "name": "Workflow"
    }
  ],
  "paths": {},
  "webhooks": {
    "activity_log.scrubbed.1": {
      "get": {
        "description": "This entry is created whenever an activity log entry is permanently erased",
        "operationId": "ActivityLogScrubbedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "activity_log.scrubbed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Activity log entry (01FCNDV6P870EA6S7TK1DSYDG0)",
                      "type": "activity_log"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsActivityLogScrubbedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Activity log"
        ],
        "summary": "Scrubbed v1"
      }
    },
    "alert.scrubbed.1": {
      "get": {
        "description": "This entry is created whenever sensitive data is permanently erased from an alert, its events, and linked escalations.",
        "operationId": "AlertScrubbedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert.scrubbed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Alert (01KB0083ASNF7EPT8NHQNRDXFC)",
                      "type": "alert"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertScrubbedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert"
        ],
        "summary": "Scrubbed v1"
      }
    },
    "alert_chat_message_template.created.1": {
      "get": {
        "description": "This entry is created whenever an alert chat message template is created",
        "operationId": "AlertChatMessageTemplateCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_chat_message_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Standard",
                      "type": "alert_chat_message_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertChatMessageTemplateCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert chat message template"
        ],
        "summary": "Created v1"
      }
    },
    "alert_chat_message_template.deleted.1": {
      "get": {
        "description": "This entry is created whenever an alert chat message template is deleted",
        "operationId": "AlertChatMessageTemplateDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_chat_message_template.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Standard",
                      "type": "alert_chat_message_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertChatMessageTemplateDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert chat message template"
        ],
        "summary": "Deleted v1"
      }
    },
    "alert_chat_message_template.updated.1": {
      "get": {
        "description": "This entry is created whenever an alert chat message template is updated",
        "operationId": "AlertChatMessageTemplateUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_chat_message_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Standard",
                      "type": "alert_chat_message_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertChatMessageTemplateUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert chat message template"
        ],
        "summary": "Updated v1"
      }
    },
    "alert_priority.created.1": {
      "get": {
        "description": "This entry is created whenever an alert priority is created",
        "operationId": "AlertPriorityCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_priority.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Urgent",
                      "type": "alert_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertPriorityCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert priority"
        ],
        "summary": "Created v1"
      }
    },
    "alert_priority.deleted.1": {
      "get": {
        "description": "This entry is created whenever an alert priority is deleted",
        "operationId": "AlertPriorityDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_priority.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Urgent",
                      "type": "alert_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertPriorityDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert priority"
        ],
        "summary": "Deleted v1"
      }
    },
    "alert_priority.set_as_default.1": {
      "get": {
        "description": "This entry is created whenever an alert priority is set as the default",
        "operationId": "AlertPrioritySetAsDefaultV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_priority.set_as_default",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Urgent",
                      "type": "alert_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertPrioritySetAsDefaultV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert priority"
        ],
        "summary": "Set as default v1"
      }
    },
    "alert_priority.updated.1": {
      "get": {
        "description": "This entry is created whenever an alert priority is updated",
        "operationId": "AlertPriorityUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_priority.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Urgent",
                      "type": "alert_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertPriorityUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert priority"
        ],
        "summary": "Updated v1"
      }
    },
    "alert_route.created.1": {
      "get": {
        "description": "This entry is created whenever an alert route is created",
        "operationId": "AlertRouteCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_route.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Production incidents",
                      "type": "alert_route"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertRouteCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert route"
        ],
        "summary": "Created v1"
      }
    },
    "alert_route.deleted.1": {
      "get": {
        "description": "This entry is created whenever an alert route is deleted",
        "operationId": "AlertRouteDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_route.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Production incidents",
                      "type": "alert_route"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertRouteDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert route"
        ],
        "summary": "Deleted v1"
      }
    },
    "alert_route.updated.1": {
      "get": {
        "description": "This entry is created whenever an alert route is updated",
        "operationId": "AlertRouteUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_route.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Production incidents",
                      "type": "alert_route"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertRouteUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert route"
        ],
        "summary": "Updated v1"
      }
    },
    "alert_schema.updated.1": {
      "get": {
        "description": "This entry is created whenever alert attributes are updated",
        "operationId": "AlertSchemaUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_schema.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Alert schema",
                      "type": "alert_schema"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertSchemaUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert schema"
        ],
        "summary": "Updated v1"
      }
    },
    "alert_source_config.created.1": {
      "get": {
        "description": "This entry is created whenever an alert source is created",
        "operationId": "AlertSourceConfigCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_source_config.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog alerts",
                      "type": "alert_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertSourceConfigCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert source config"
        ],
        "summary": "Created v1"
      }
    },
    "alert_source_config.deleted.1": {
      "get": {
        "description": "This entry is created whenever an alert source is deleted",
        "operationId": "AlertSourceConfigDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_source_config.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog alerts",
                      "type": "alert_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertSourceConfigDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert source config"
        ],
        "summary": "Deleted v1"
      }
    },
    "alert_source_config.updated.1": {
      "get": {
        "description": "This entry is created whenever an alert source is updated",
        "operationId": "AlertSourceConfigUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "alert_source_config.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog alerts",
                      "type": "alert_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAlertSourceConfigUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Alert source config"
        ],
        "summary": "Updated v1"
      }
    },
    "announcement_post_template.created.1": {
      "get": {
        "description": "This entry is created whenever an announcement post template is created",
        "operationId": "AnnouncementPostTemplateCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_post_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Major incident",
                      "type": "announcement_post_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementPostTemplateCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement post template"
        ],
        "summary": "Created v1"
      }
    },
    "announcement_post_template.created.2": {
      "get": {
        "description": "This entry is created whenever an announcement post template is created",
        "operationId": "AnnouncementPostTemplateCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_post_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Major incident",
                      "type": "announcement_post_template"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementPostTemplateCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement post template"
        ],
        "summary": "Created v2"
      }
    },
    "announcement_post_template.deleted.1": {
      "get": {
        "description": "This entry is created whenever an announcement post template is deleted",
        "operationId": "AnnouncementPostTemplateDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_post_template.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Major incident",
                      "type": "announcement_post_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementPostTemplateDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement post template"
        ],
        "summary": "Deleted v1"
      }
    },
    "announcement_post_template.set_as_default.1": {
      "get": {
        "description": "This entry is created whenever an announcement post template is set as the default",
        "operationId": "AnnouncementPostTemplateSetAsDefaultV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_post_template.set_as_default",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Major incident",
                      "type": "announcement_post_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementPostTemplateSetAsDefaultV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement post template"
        ],
        "summary": "Set as default v1"
      }
    },
    "announcement_post_template.updated.1": {
      "get": {
        "description": "This entry is created whenever an announcement post template is updated",
        "operationId": "AnnouncementPostTemplateUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_post_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Major incident",
                      "type": "announcement_post_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementPostTemplateUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement post template"
        ],
        "summary": "Updated v1"
      }
    },
    "announcement_post_template.updated.2": {
      "get": {
        "description": "This entry is created whenever an announcement post template is updated",
        "operationId": "AnnouncementPostTemplateUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_post_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Major incident",
                      "type": "announcement_post_template"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementPostTemplateUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement post template"
        ],
        "summary": "Updated v2"
      }
    },
    "announcement_rule.created.1": {
      "get": {
        "description": "This entry is created whenever a announcement rule is created",
        "operationId": "AnnouncementRuleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_rule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#engineering",
                      "type": "announcement_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementRuleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement rule"
        ],
        "summary": "Created v1"
      }
    },
    "announcement_rule.created.2": {
      "get": {
        "description": "This entry is created whenever a announcement rule is created",
        "operationId": "AnnouncementRuleCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_rule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "after_private_incident_scope": "owning_teams",
                    "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
                    "before_private_incident_scope": "none"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#engineering",
                      "type": "announcement_rule"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementRuleCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement rule"
        ],
        "summary": "Created v2"
      }
    },
    "announcement_rule.deleted.1": {
      "get": {
        "description": "This entry is created whenever a announcement rule is deleted",
        "operationId": "AnnouncementRuleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_rule.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#engineering",
                      "type": "announcement_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementRuleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement rule"
        ],
        "summary": "Deleted v1"
      }
    },
    "announcement_rule.updated.1": {
      "get": {
        "description": "This entry is created whenever a announcement rule is updated",
        "operationId": "AnnouncementRuleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_rule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#engineering",
                      "type": "announcement_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementRuleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement rule"
        ],
        "summary": "Updated v1"
      }
    },
    "announcement_rule.updated.2": {
      "get": {
        "description": "This entry is created whenever a announcement rule is updated",
        "operationId": "AnnouncementRuleUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "announcement_rule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "after_private_incident_scope": "owning_teams",
                    "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
                    "before_private_incident_scope": "none"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#engineering",
                      "type": "announcement_rule"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAnnouncementRuleUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Announcement rule"
        ],
        "summary": "Updated v2"
      }
    },
    "api_key.created.1": {
      "get": {
        "description": "This entry is created whenever a api key is created",
        "operationId": "ApiKeyCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "api_key.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Development API Key",
                      "type": "api_key"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAPIKeyCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "API key"
        ],
        "summary": "Created v1"
      }
    },
    "api_key.deleted.1": {
      "get": {
        "description": "This entry is created whenever a api key is deleted",
        "operationId": "ApiKeyDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "api_key.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Development API Key",
                      "type": "api_key"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAPIKeyDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "API key"
        ],
        "summary": "Deleted v1"
      }
    },
    "api_key.rotated.1": {
      "get": {
        "description": "This entry is created whenever an api key is rotated",
        "operationId": "ApiKeyRotatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "api_key.rotated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Development API Key",
                      "type": "api_key"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAPIKeyRotatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "API key"
        ],
        "summary": "Rotated v1"
      }
    },
    "api_key.updated.1": {
      "get": {
        "description": "This entry is created whenever a api key is updated",
        "operationId": "ApiKeyUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "api_key.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Development API Key",
                      "type": "api_key"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsAPIKeyUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "API key"
        ],
        "summary": "Updated v1"
      }
    },
    "catalog_entry_attribute.updated.1": {
      "get": {
        "description": "This entry is created whenever a restricted catalog entry attribute is updated",
        "operationId": "CatalogEntryAttributeUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "catalog_entry_attribute.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_values": [
                      "01FCNDV6P870EA6S7TK1DSYDG0",
                      "01FCNDV6P870EA6S7TK1DSYDG2"
                    ],
                    "before_values": [
                      "01FCNDV6P870EA6S7TK1DSYDG0",
                      "01FCNDV6P870EA6S7TK1DSYDG1"
                    ]
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Service",
                      "type": "catalog_type"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering Team",
                      "type": "catalog_entry"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Members",
                      "type": "catalog_attribute"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCatalogEntryAttributeUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Catalog entry attribute"
        ],
        "summary": "Updated v1"
      }
    },
    "catalog_entry_attribute.updated.2": {
      "get": {
        "description": "This entry is created whenever a restricted catalog entry attribute is updated",
        "operationId": "CatalogEntryAttributeUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "catalog_entry_attribute.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_values": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "before_values": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Service",
                      "type": "catalog_type"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering Team",
                      "type": "catalog_entry"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Members",
                      "type": "catalog_attribute"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCatalogEntryAttributeUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Catalog entry attribute"
        ],
        "summary": "Updated v2"
      }
    },
    "catalog_type.created.1": {
      "get": {
        "description": "This entry is created whenever a catalog type is created",
        "operationId": "CatalogTypeCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "catalog_type.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Service",
                      "type": "catalog_type"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCatalogTypeCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Catalog type"
        ],
        "summary": "Created v1"
      }
    },
    "catalog_type.deleted.1": {
      "get": {
        "description": "This entry is created whenever a catalog type is deleted",
        "operationId": "CatalogTypeDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "catalog_type.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Service",
                      "type": "catalog_type"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCatalogTypeDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Catalog type"
        ],
        "summary": "Deleted v1"
      }
    },
    "catalog_type.updated.1": {
      "get": {
        "description": "This entry is created whenever a catalog type is updated",
        "operationId": "CatalogTypeUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "catalog_type.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Service",
                      "type": "catalog_type"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCatalogTypeUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Catalog type"
        ],
        "summary": "Updated v1"
      }
    },
    "connector_config.created.1": {
      "get": {
        "description": "This entry is created whenever a connector config is created",
        "operationId": "ConnectorConfigCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "connector_config.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "My Connector",
                      "type": "connector_config"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsConnectorConfigCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Connector config"
        ],
        "summary": "Created v1"
      }
    },
    "connector_config.token_generated.1": {
      "get": {
        "description": "This entry is created whenever a connector config token is regenerated",
        "operationId": "ConnectorConfigTokenGeneratedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "connector_config.token_generated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "My Connector",
                      "type": "connector_config"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsConnectorConfigTokenGeneratedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Connector config"
        ],
        "summary": "Token generated v1"
      }
    },
    "connector_config.updated.1": {
      "get": {
        "description": "This entry is created whenever a connector config is updated",
        "operationId": "ConnectorConfigUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "connector_config.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "My Connector",
                      "type": "connector_config"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsConnectorConfigUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Connector config"
        ],
        "summary": "Updated v1"
      }
    },
    "custom_field.created.1": {
      "get": {
        "description": "This entry is created whenever a custom field is created",
        "operationId": "CustomFieldCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "custom_field.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Affected teams",
                      "type": "custom_field"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCustomFieldCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Custom field"
        ],
        "summary": "Created v1"
      }
    },
    "custom_field.deleted.1": {
      "get": {
        "description": "This entry is created whenever a custom field is deleted",
        "operationId": "CustomFieldDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "custom_field.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Affected teams",
                      "type": "custom_field"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCustomFieldDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Custom field"
        ],
        "summary": "Deleted v1"
      }
    },
    "custom_field.updated.1": {
      "get": {
        "description": "This entry is created whenever a custom field is updated",
        "operationId": "CustomFieldUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "custom_field.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Affected teams",
                      "type": "custom_field"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsCustomFieldUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Custom field"
        ],
        "summary": "Updated v1"
      }
    },
    "debrief_invite_rule.created.1": {
      "get": {
        "description": "This entry is created whenever a debrief invite rule is created",
        "operationId": "DebriefInviteRuleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "debrief_invite_rule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Invite founders for critical incidents",
                      "type": "debrief_invite_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsDebriefInviteRuleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Debrief invite rule"
        ],
        "summary": "Created v1"
      }
    },
    "debrief_invite_rule.deleted.1": {
      "get": {
        "description": "This entry is created whenever a debrief invite rule is deleted",
        "operationId": "DebriefInviteRuleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "debrief_invite_rule.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Invite founders for critical incidents",
                      "type": "debrief_invite_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsDebriefInviteRuleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Debrief invite rule"
        ],
        "summary": "Deleted v1"
      }
    },
    "debrief_invite_rule.updated.1": {
      "get": {
        "description": "This entry is created whenever a debrief invite rule is updated",
        "operationId": "DebriefInviteRuleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "debrief_invite_rule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Invite founders for critical incidents",
                      "type": "debrief_invite_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsDebriefInviteRuleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Debrief invite rule"
        ],
        "summary": "Updated v1"
      }
    },
    "email_otp_login_setting.updated.1": {
      "get": {
        "description": "This entry is created whenever the email OTP login setting is toggled for an organisation",
        "operationId": "EmailOtpLoginSettingUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "email_otp_login_setting.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "enabled": "true"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Organisation Settings",
                      "type": "organisation_settings"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsEmailOtpLoginSettingUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Email otp login setting"
        ],
        "summary": "Updated v1"
      }
    },
    "escalation.scrubbed.1": {
      "get": {
        "description": "This entry is created whenever sensitive data is permanently erased from an escalation.",
        "operationId": "EscalationScrubbedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "escalation.scrubbed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Escalation (01KB0083ASNF7EPT8NHQNRDXFC)",
                      "type": "escalation"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsEscalationScrubbedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Escalation"
        ],
        "summary": "Scrubbed v1"
      }
    },
    "escalation_path.created.1": {
      "get": {
        "description": "This entry is created whenever an escalation path is created",
        "operationId": "EscalationPathCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "escalation_path.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Critical incidents",
                      "type": "escalation_path"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsEscalationPathCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Escalation path"
        ],
        "summary": "Created v1"
      }
    },
    "escalation_path.deleted.1": {
      "get": {
        "description": "This entry is created whenever an escalation path is deleted",
        "operationId": "EscalationPathDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "escalation_path.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Critical incidents",
                      "type": "escalation_path"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsEscalationPathDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Escalation path"
        ],
        "summary": "Deleted v1"
      }
    },
    "escalation_path.updated.1": {
      "get": {
        "description": "This entry is created whenever an escalation path is updated",
        "operationId": "EscalationPathUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "escalation_path.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Critical incidents",
                      "type": "escalation_path"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsEscalationPathUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Escalation path"
        ],
        "summary": "Updated v1"
      }
    },
    "follow_up_category.created.1": {
      "get": {
        "description": "This entry is created whenever a follow up category is created",
        "operationId": "FollowUpCategoryCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "follow_up_category.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Category Name",
                      "type": "follow_up_category"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsFollowUpCategoryCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Follow up category"
        ],
        "summary": "Created v1"
      }
    },
    "follow_up_category.deleted.1": {
      "get": {
        "description": "This entry is created whenever a follow up category is deleted",
        "operationId": "FollowUpCategoryDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "follow_up_category.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Category Name",
                      "type": "follow_up_category"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsFollowUpCategoryDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Follow up category"
        ],
        "summary": "Deleted v1"
      }
    },
    "follow_up_category.updated.1": {
      "get": {
        "description": "This entry is created whenever a follow up category is updated",
        "operationId": "FollowUpCategoryUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "follow_up_category.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Category Name",
                      "type": "follow_up_category"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsFollowUpCategoryUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Follow up category"
        ],
        "summary": "Updated v1"
      }
    },
    "follow_up_priority.created.1": {
      "get": {
        "description": "This entry is created whenever a follow up priority is created",
        "operationId": "FollowUpPriorityCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "follow_up_priority.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Low",
                      "type": "follow_up_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsFollowUpPriorityCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Follow up priority"
        ],
        "summary": "Created v1"
      }
    },
    "follow_up_priority.deleted.1": {
      "get": {
        "description": "This entry is created whenever a follow up priority is deleted",
        "operationId": "FollowUpPriorityDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "follow_up_priority.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Low",
                      "type": "follow_up_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsFollowUpPriorityDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Follow up priority"
        ],
        "summary": "Deleted v1"
      }
    },
    "follow_up_priority.updated.1": {
      "get": {
        "description": "This entry is created whenever a follow up priority is updated",
        "operationId": "FollowUpPriorityUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "follow_up_priority.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Low",
                      "type": "follow_up_priority"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsFollowUpPriorityUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Follow up priority"
        ],
        "summary": "Updated v1"
      }
    },
    "holiday_user_feed.created.1": {
      "get": {
        "description": "This entry is created whenever a holiday user feed is created",
        "operationId": "HolidayUserFeedCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "holiday_user_feed.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "US Team holidays",
                      "type": "holiday_user_feed"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsHolidayUserFeedCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Holiday user feed"
        ],
        "summary": "Created v1"
      }
    },
    "holiday_user_feed.deleted.1": {
      "get": {
        "description": "This entry is created whenever a holiday user feed is deleted",
        "operationId": "HolidayUserFeedDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "holiday_user_feed.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "US Team holidays",
                      "type": "holiday_user_feed"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsHolidayUserFeedDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Holiday user feed"
        ],
        "summary": "Deleted v1"
      }
    },
    "holiday_user_feed.updated.1": {
      "get": {
        "description": "This entry is created whenever a holiday user feed is updated",
        "operationId": "HolidayUserFeedUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "holiday_user_feed.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "US Team holidays",
                      "type": "holiday_user_feed"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsHolidayUserFeedUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Holiday user feed"
        ],
        "summary": "Updated v1"
      }
    },
    "hris_time_off_policy.updated.1": {
      "get": {
        "description": "This entry is created whenever the visibility of a HRIS time-off policy is updated",
        "operationId": "HrisTimeOffPolicyUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "hris_time_off_policy.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "behaviour": "visible",
                    "connection_name": "default",
                    "previous_behaviour": "private",
                    "provider_slug": "bamboohr"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Jury duty",
                      "type": "hris_time_off_policy"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsHrisTimeOffPolicyUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Hris time off policy"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_call_setting.updated.1": {
      "get": {
        "description": "This entry is created whenever an organisation's incident call settings are updated",
        "operationId": "IncidentCallSettingUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_call_setting.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Incident call settings",
                      "type": "incident_call_setting"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentCallSettingUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident call setting"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_call_transcription_session.deleted.1": {
      "get": {
        "description": "This entry is created whenever a calls notes (transcription session) are deleted",
        "operationId": "IncidentCallTranscriptionSessionDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_call_transcription_session.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Call transcription session",
                      "type": "incident_call_transcription_session"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentCallTranscriptionSessionDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident call transcription session"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_duration_metric.created.1": {
      "get": {
        "description": "This entry is created whenever a incident duration metric is created",
        "operationId": "IncidentDurationMetricCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_duration_metric.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Time to resolve",
                      "type": "incident_duration_metric"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentDurationMetricCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident duration metric"
        ],
        "summary": "Created v1"
      }
    },
    "incident_duration_metric.deleted.1": {
      "get": {
        "description": "This entry is created whenever a incident duration metric is deleted",
        "operationId": "IncidentDurationMetricDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_duration_metric.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Time to resolve",
                      "type": "incident_duration_metric"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentDurationMetricDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident duration metric"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_duration_metric.updated.1": {
      "get": {
        "description": "This entry is created whenever a incident duration metric is updated",
        "operationId": "IncidentDurationMetricUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_duration_metric.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Time to resolve",
                      "type": "incident_duration_metric"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentDurationMetricUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident duration metric"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_role.created.1": {
      "get": {
        "description": "This entry is created whenever a incident role is created",
        "operationId": "IncidentRoleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_role.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Communications Lead",
                      "type": "incident_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentRoleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident role"
        ],
        "summary": "Created v1"
      }
    },
    "incident_role.deleted.1": {
      "get": {
        "description": "This entry is created whenever a incident role is deleted",
        "operationId": "IncidentRoleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_role.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Communications Lead",
                      "type": "incident_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentRoleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident role"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_role.updated.1": {
      "get": {
        "description": "This entry is created whenever a incident role is updated",
        "operationId": "IncidentRoleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_role.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Communications Lead",
                      "type": "incident_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentRoleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident role"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_status.created.1": {
      "get": {
        "description": "This entry is created whenever a incident status is created",
        "operationId": "IncidentStatusCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_status.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Investigating",
                      "type": "incident_status"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentStatusCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident status"
        ],
        "summary": "Created v1"
      }
    },
    "incident_status.deleted.1": {
      "get": {
        "description": "This entry is created whenever a incident status is deleted",
        "operationId": "IncidentStatusDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_status.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Investigating",
                      "type": "incident_status"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentStatusDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident status"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_status.updated.1": {
      "get": {
        "description": "This entry is created whenever a incident status is updated",
        "operationId": "IncidentStatusUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_status.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Investigating",
                      "type": "incident_status"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentStatusUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident status"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_template.created.1": {
      "get": {
        "description": "This entry is created whenever an incident template is created",
        "operationId": "IncidentTemplateCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Production incidents",
                      "type": "incident_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTemplateCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident template"
        ],
        "summary": "Created v1"
      }
    },
    "incident_template.deleted.1": {
      "get": {
        "description": "This entry is created whenever an incident template is deleted",
        "operationId": "IncidentTemplateDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_template.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Production incidents",
                      "type": "incident_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTemplateDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident template"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_template.updated.1": {
      "get": {
        "description": "This entry is created whenever an incident template is updated",
        "operationId": "IncidentTemplateUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Production incidents",
                      "type": "incident_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTemplateUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident template"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_timestamp.created.1": {
      "get": {
        "description": "This entry is created whenever a incident timestamp is created",
        "operationId": "IncidentTimestampCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_timestamp.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Fixed at",
                      "type": "incident_timestamp"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTimestampCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident timestamp"
        ],
        "summary": "Created v1"
      }
    },
    "incident_timestamp.deleted.1": {
      "get": {
        "description": "This entry is created whenever a incident timestamp is deleted",
        "operationId": "IncidentTimestampDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_timestamp.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Fixed at",
                      "type": "incident_timestamp"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTimestampDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident timestamp"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_timestamp.updated.1": {
      "get": {
        "description": "This entry is created whenever a incident timestamp is updated",
        "operationId": "IncidentTimestampUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_timestamp.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Fixed at",
                      "type": "incident_timestamp"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTimestampUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident timestamp"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_timestamp_set_by_rule.created.1": {
      "get": {
        "description": "This entry is created whenever an incident timestamp set by rule is created",
        "operationId": "IncidentTimestampSetByRuleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_timestamp_set_by_rule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Fixed at",
                      "type": "incident_timestamp"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Resolved at ('set by' rule)",
                      "type": "incident_timestamp_set_by_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTimestampSetByRuleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident timestamp set by rule"
        ],
        "summary": "Created v1"
      }
    },
    "incident_timestamp_set_by_rule.deleted.1": {
      "get": {
        "description": "This entry is created whenever an incident timestamp set by rule is deleted",
        "operationId": "IncidentTimestampSetByRuleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_timestamp_set_by_rule.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Fixed at",
                      "type": "incident_timestamp"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Resolved at ('set by' rule)",
                      "type": "incident_timestamp_set_by_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTimestampSetByRuleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident timestamp set by rule"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_timestamp_set_by_rule.updated.1": {
      "get": {
        "description": "This entry is created whenever an incident timestamp set by rule is updated",
        "operationId": "IncidentTimestampSetByRuleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_timestamp_set_by_rule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Fixed at",
                      "type": "incident_timestamp"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Resolved at ('set by' rule)",
                      "type": "incident_timestamp_set_by_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTimestampSetByRuleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident timestamp set by rule"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_type.created.1": {
      "get": {
        "description": "This entry is created whenever a incident type is created",
        "operationId": "IncidentTypeCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_type.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "incident_type"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTypeCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident type"
        ],
        "summary": "Created v1"
      }
    },
    "incident_type.created.2": {
      "get": {
        "description": "This entry is created whenever an incident type is created",
        "operationId": "IncidentTypeCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_type.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "before_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "incident_type"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTypeCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident type"
        ],
        "summary": "Created v2"
      }
    },
    "incident_type.deleted.1": {
      "get": {
        "description": "This entry is created whenever a incident type is deleted",
        "operationId": "IncidentTypeDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_type.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "incident_type"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTypeDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident type"
        ],
        "summary": "Deleted v1"
      }
    },
    "incident_type.updated.1": {
      "get": {
        "description": "This entry is created whenever a incident type is updated",
        "operationId": "IncidentTypeUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_type.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "incident_type"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTypeUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident type"
        ],
        "summary": "Updated v1"
      }
    },
    "incident_type.updated.2": {
      "get": {
        "description": "This entry is created whenever an incident type is updated",
        "operationId": "IncidentTypeUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "incident_type.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
                    "before_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "incident_type"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIncidentTypeUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Incident type"
        ],
        "summary": "Updated v2"
      }
    },
    "integration.installed.1": {
      "get": {
        "description": "This entry is created whenever an integration is installed",
        "operationId": "IntegrationInstalledV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "integration.installed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "github",
                      "name": "Github",
                      "type": "integration"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIntegrationInstalledV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Integration"
        ],
        "summary": "Installed v1"
      }
    },
    "integration.uninstalled.1": {
      "get": {
        "description": "This entry is created whenever an integration is uninstalled",
        "operationId": "IntegrationUninstalledV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "integration.uninstalled",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "github",
                      "name": "Github",
                      "type": "integration"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIntegrationUninstalledV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Integration"
        ],
        "summary": "Uninstalled v1"
      }
    },
    "internal_status_page.created.1": {
      "get": {
        "description": "This entry is created whenever an internal status page is created",
        "operationId": "InternalStatusPageCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "internal_status_page.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Public Page",
                      "type": "internal_status_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsInternalStatusPageCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Internal status page"
        ],
        "summary": "Created v1"
      }
    },
    "internal_status_page.deleted.1": {
      "get": {
        "description": "This entry is created whenever an internal status page is deleted",
        "operationId": "InternalStatusPageDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "internal_status_page.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Public Page",
                      "type": "internal_status_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsInternalStatusPageDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Internal status page"
        ],
        "summary": "Deleted v1"
      }
    },
    "internal_status_page.updated.1": {
      "get": {
        "description": "This entry is created whenever an internal status page has its configuration updated",
        "operationId": "InternalStatusPageUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "internal_status_page.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Public Page",
                      "type": "internal_status_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsInternalStatusPageUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Internal status page"
        ],
        "summary": "Updated v1"
      }
    },
    "ip_allowlist.updated.1": {
      "get": {
        "description": "This entry is created whenever an IP allowlist is updated",
        "operationId": "IpAllowlistUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "ip_allowlist.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "additions": "[\"192.0.2.0\",\"192.0.2.0/24\"]",
                    "additions_count": "2",
                    "enabled": "true",
                    "removals": "[\"192.0.2.1\"]",
                    "removals_count": "1",
                    "version": "2"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "IP allowlist",
                      "type": "ip_allowlist"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsIPAllowlistUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "IP allowlist"
        ],
        "summary": "Updated v1"
      }
    },
    "maintenance_window.created.1": {
      "get": {
        "description": "This entry is created whenever a maintenance window is created",
        "operationId": "MaintenanceWindowCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "maintenance_window.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Planned DB migration",
                      "type": "maintenance_window"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsMaintenanceWindowCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Maintenance window"
        ],
        "summary": "Created v1"
      }
    },
    "maintenance_window.deleted.1": {
      "get": {
        "description": "This entry is created whenever a maintenance window is deleted",
        "operationId": "MaintenanceWindowDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "maintenance_window.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Planned DB migration",
                      "type": "maintenance_window"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsMaintenanceWindowDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Maintenance window"
        ],
        "summary": "Deleted v1"
      }
    },
    "maintenance_window.updated.1": {
      "get": {
        "description": "This entry is created whenever a maintenance window is updated",
        "operationId": "MaintenanceWindowUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "maintenance_window.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Planned DB migration",
                      "type": "maintenance_window"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsMaintenanceWindowUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Maintenance window"
        ],
        "summary": "Updated v1"
      }
    },
    "nudge.created.1": {
      "get": {
        "description": "This entry is created whenever a nudge is created",
        "operationId": "NudgeCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "nudge.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Reminder to take a break",
                      "type": "nudge"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsNudgeCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Nudge"
        ],
        "summary": "Created v1"
      }
    },
    "nudge.deleted.1": {
      "get": {
        "description": "This entry is created whenever a nudge is deleted",
        "operationId": "NudgeDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "nudge.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Reminder to take a break",
                      "type": "nudge"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsNudgeDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Nudge"
        ],
        "summary": "Deleted v1"
      }
    },
    "nudge.updated.1": {
      "get": {
        "description": "This entry is created whenever a nudge is updated",
        "operationId": "NudgeUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "nudge.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Reminder to take a break",
                      "type": "nudge"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsNudgeUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Nudge"
        ],
        "summary": "Updated v1"
      }
    },
    "on_call_notification_method.created.1": {
      "get": {
        "description": "This entry is created whenever an on-call notification method is created by an actor that isn't the owning user",
        "operationId": "OnCallNotificationMethodCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "on_call_notification_method.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Phone notification method",
                      "type": "on_call_notification_method"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsOnCallNotificationMethodCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "On call notification method"
        ],
        "summary": "Created v1"
      }
    },
    "on_call_notification_method.created.2": {
      "get": {
        "description": "This entry is created whenever an on-call notification method is created by an actor that isn't the owning user",
        "operationId": "OnCallNotificationMethodCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "on_call_notification_method.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "target_user": "01JV9EMFCFRGCFVNDWTBKT2EBR"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Phone notification method",
                      "type": "on_call_notification_method"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsOnCallNotificationMethodCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "On call notification method"
        ],
        "summary": "Created v2"
      }
    },
    "on_call_notification_method.destroyed.1": {
      "get": {
        "description": "This entry is created whenever an on-call notification method is destroyed by an actor that isn't the owning user",
        "operationId": "OnCallNotificationMethodDestroyedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "on_call_notification_method.destroyed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Phone notification method",
                      "type": "on_call_notification_method"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsOnCallNotificationMethodDestroyedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "On call notification method"
        ],
        "summary": "Destroyed v1"
      }
    },
    "on_call_notification_method.destroyed.2": {
      "get": {
        "description": "This entry is created whenever an on-call notification method is destroyed by an actor that isn't the owning user",
        "operationId": "OnCallNotificationMethodDestroyedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "on_call_notification_method.destroyed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "target_user": "01JV9EMFCFRGCFVNDWTBKT2EBR"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Phone notification method",
                      "type": "on_call_notification_method"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsOnCallNotificationMethodDestroyedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "On call notification method"
        ],
        "summary": "Destroyed v2"
      }
    },
    "on_call_upsell.requested.1": {
      "get": {
        "description": "This entry is created whenever a self-serve on-call seat upsell is submitted.",
        "operationId": "OnCallUpsellRequestedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "on_call_upsell.requested",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "gate_count_after": "15",
                    "gate_count_before": "10",
                    "requested_by_user_id": "01JV9EMFCFRGCFVNDWTBKT2EBR",
                    "seats_added": "5"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "On-call upsell (+5 seats)",
                      "type": "on_call_upsell_request"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsOnCallUpsellRequestedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "On call upsell"
        ],
        "summary": "Requested v1"
      }
    },
    "organisation_settings.updated.1": {
      "get": {
        "description": "This entry is created when certain organisation settings are updated",
        "operationId": "OrganisationSettingsUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "organisation_settings.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "default_timezone": "Europe/London"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Organisation Settings",
                      "type": "organisation_settings"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsOrganisationSettingsUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Organisation settings"
        ],
        "summary": "Updated v1"
      }
    },
    "policy.created.1": {
      "get": {
        "description": "This entry is created whenever a policy is created",
        "operationId": "PolicyCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Follow-ups must be closed within 3 weeks",
                      "type": "policy"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy"
        ],
        "summary": "Created v1"
      }
    },
    "policy.created.2": {
      "get": {
        "description": "This entry is created whenever a policy is created",
        "operationId": "PolicyCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "run_on_private_incidents": "true"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Follow-ups must be closed within 3 weeks",
                      "type": "policy"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy"
        ],
        "summary": "Created v2"
      }
    },
    "policy.deleted.1": {
      "get": {
        "description": "This entry is created whenever a policy is deleted",
        "operationId": "PolicyDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Follow-ups must be closed within 3 weeks",
                      "type": "policy"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy"
        ],
        "summary": "Deleted v1"
      }
    },
    "policy.updated.1": {
      "get": {
        "description": "This entry is created whenever a policy is updated",
        "operationId": "PolicyUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Follow-ups must be closed within 3 weeks",
                      "type": "policy"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy"
        ],
        "summary": "Updated v1"
      }
    },
    "policy.updated.2": {
      "get": {
        "description": "This entry is created whenever a policy is updated",
        "operationId": "PolicyUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "run_on_private_incidents": "true"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Follow-ups must be closed within 3 weeks",
                      "type": "policy"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy"
        ],
        "summary": "Updated v2"
      }
    },
    "policy_report_schedule.created.1": {
      "get": {
        "description": "This entry is created whenever a policy report schedule is created",
        "operationId": "PolicyReportScheduleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy_report_schedule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Weekly overdue follow-ups report",
                      "type": "policy_report_schedule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyReportScheduleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy report schedule"
        ],
        "summary": "Created v1"
      }
    },
    "policy_report_schedule.deleted.1": {
      "get": {
        "description": "This entry is created whenever a policy report schedule is deleted",
        "operationId": "PolicyReportScheduleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy_report_schedule.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Weekly overdue follow-ups report",
                      "type": "policy_report_schedule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyReportScheduleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy report schedule"
        ],
        "summary": "Deleted v1"
      }
    },
    "policy_report_schedule.updated.1": {
      "get": {
        "description": "This entry is created whenever a policy report schedule is updated",
        "operationId": "PolicyReportScheduleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "policy_report_schedule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Weekly overdue follow-ups report",
                      "type": "policy_report_schedule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPolicyReportScheduleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Policy report schedule"
        ],
        "summary": "Updated v1"
      }
    },
    "post_incident_task.created.1": {
      "get": {
        "description": "This entry is created whenever a post-incident task is created",
        "operationId": "PostIncidentTaskCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "post_incident_task.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostIncidentTaskCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Post incident task"
        ],
        "summary": "Created v1"
      }
    },
    "post_incident_task.deleted.1": {
      "get": {
        "description": "This entry is created whenever a post-incident task is deleted",
        "operationId": "PostIncidentTaskDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "post_incident_task.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostIncidentTaskDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Post incident task"
        ],
        "summary": "Deleted v1"
      }
    },
    "post_incident_task.updated.1": {
      "get": {
        "description": "This entry is created whenever a post-incident task is updated",
        "operationId": "PostIncidentTaskUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "post_incident_task.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostIncidentTaskUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Post incident task"
        ],
        "summary": "Updated v1"
      }
    },
    "postmortem_section.created.1": {
      "get": {
        "description": "This entry is created whenever a postmortem template section is created",
        "operationId": "PostmortemSectionCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_section.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemSectionCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem section"
        ],
        "summary": "Created v1"
      }
    },
    "postmortem_section.created.2": {
      "get": {
        "description": "This entry is created whenever a postmortem template section is created",
        "operationId": "PostmortemSectionCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_section.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "follow_ups",
                      "type": "postmortem_template_section"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemSectionCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem section"
        ],
        "summary": "Created v2"
      }
    },
    "postmortem_section.deleted.1": {
      "get": {
        "description": "This entry is created whenever a postmortem template section is deleted",
        "operationId": "PostmortemSectionDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_section.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemSectionDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem section"
        ],
        "summary": "Deleted v1"
      }
    },
    "postmortem_section.deleted.2": {
      "get": {
        "description": "This entry is created whenever a postmortem template section is deleted",
        "operationId": "PostmortemSectionDeletedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_section.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "follow_ups",
                      "type": "postmortem_template_section"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemSectionDeletedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem section"
        ],
        "summary": "Deleted v2"
      }
    },
    "postmortem_section.updated.1": {
      "get": {
        "description": "This entry is created whenever a postmortem template section is updated",
        "operationId": "PostmortemSectionUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_section.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemSectionUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem section"
        ],
        "summary": "Updated v1"
      }
    },
    "postmortem_section.updated.2": {
      "get": {
        "description": "This entry is created whenever a postmortem template section is updated",
        "operationId": "PostmortemSectionUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_section.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "follow_ups",
                      "type": "postmortem_template_section"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemSectionUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem section"
        ],
        "summary": "Updated v2"
      }
    },
    "postmortem_template.created.1": {
      "get": {
        "description": "This entry is created whenever a postmortem template is created",
        "operationId": "PostmortemTemplateCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemTemplateCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem template"
        ],
        "summary": "Created v1"
      }
    },
    "postmortem_template.created.2": {
      "get": {
        "description": "This entry is created whenever a postmortem template is created",
        "operationId": "PostmortemTemplateCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Root cause analysis (RCA)",
                      "type": "postmortem_template"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemTemplateCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem template"
        ],
        "summary": "Created v2"
      }
    },
    "postmortem_template.deleted.1": {
      "get": {
        "description": "This entry is created whenever a postmortem template is deleted",
        "operationId": "PostmortemTemplateDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_template.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemTemplateDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem template"
        ],
        "summary": "Deleted v1"
      }
    },
    "postmortem_template.deleted.2": {
      "get": {
        "description": "This entry is created whenever a postmortem template is deleted",
        "operationId": "PostmortemTemplateDeletedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_template.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Root cause analysis (RCA)",
                      "type": "postmortem_template"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemTemplateDeletedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem template"
        ],
        "summary": "Deleted v2"
      }
    },
    "postmortem_template.updated.1": {
      "get": {
        "description": "This entry is created whenever a postmortem template is updated",
        "operationId": "PostmortemTemplateUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Schedule a debrief",
                      "type": "post_incident_task"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemTemplateUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem template"
        ],
        "summary": "Updated v1"
      }
    },
    "postmortem_template.updated.2": {
      "get": {
        "description": "This entry is created whenever a postmortem template is updated",
        "operationId": "PostmortemTemplateUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "postmortem_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Root cause analysis (RCA)",
                      "type": "postmortem_template"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPostmortemTemplateUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Postmortem template"
        ],
        "summary": "Updated v2"
      }
    },
    "private_alert.access_attempted.1": {
      "get": {
        "description": "This entry is created whenever someone attempts to access a private alert.",
        "operationId": "PrivateAlertAccessAttemptedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_alert.access_attempted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "outcome": "granted"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Alert (01KB0083ASNF7EPT8NHQNRDXFC)",
                      "type": "alert"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateAlertAccessAttemptedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private alert"
        ],
        "summary": "Access attempted v1"
      }
    },
    "private_escalation.access_attempted.1": {
      "get": {
        "description": "This entry is created whenever someone attempts to access a private escalation.",
        "operationId": "PrivateEscalationAccessAttemptedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_escalation.access_attempted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "outcome": "granted"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Escalation (01KB0083ASNF7EPT8NHQNRDXFC)",
                      "type": "escalation"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateEscalationAccessAttemptedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private escalation"
        ],
        "summary": "Access attempted v1"
      }
    },
    "private_incident.access_attempted.1": {
      "get": {
        "description": "This entry is created whenever someone attempts to access a private incident.",
        "operationId": "PrivateIncidentAccessAttemptedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident.access_attempted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "outcome": "granted"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentAccessAttemptedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident"
        ],
        "summary": "Access attempted v1"
      }
    },
    "private_incident.access_attempted.2": {
      "get": {
        "description": "This entry is created whenever someone attempts to access a private incident.",
        "operationId": "PrivateIncidentAccessAttemptedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident.access_attempted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "access_type": "N/A",
                    "outcome": "granted",
                    "team_id": "01G0J1EXE7AXZ2C93K61WBPYEH"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentAccessAttemptedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident"
        ],
        "summary": "Access attempted v2"
      }
    },
    "private_incident.access_requested.1": {
      "get": {
        "description": "This entry is created whenever someone requests access to a private incident.",
        "operationId": "PrivateIncidentAccessRequestedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident.access_requested",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentAccessRequestedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident"
        ],
        "summary": "Access requested v1"
      }
    },
    "private_incident.accessed_via_bot.1": {
      "get": {
        "description": "This entry is created whenever someone accesses a private incident via the incident bot.",
        "operationId": "PrivateIncidentAccessedViaBotV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident.accessed_via_bot",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentAccessedViaBotV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident"
        ],
        "summary": "Accessed via bot v1"
      }
    },
    "private_incident_membership.granted.1": {
      "get": {
        "description": "This entry is created whenever someone is granted access to a private incident. If they have the 'manage private incidents' permission, then it'll appear that the system has given them access to the incident.",
        "operationId": "PrivateIncidentMembershipGrantedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident_membership.granted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentMembershipGrantedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident membership"
        ],
        "summary": "Granted v1"
      }
    },
    "private_incident_membership.revoked.1": {
      "get": {
        "description": "This entry is created whenever someone's access to a private incident is revoked.",
        "operationId": "PrivateIncidentMembershipRevokedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident_membership.revoked",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentMembershipRevokedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident membership"
        ],
        "summary": "Revoked v1"
      }
    },
    "private_incident_membership.upgraded_to_direct.1": {
      "get": {
        "description": "This entry is created whenever someone's team-derived access to a private incident is upgraded to durable direct access, so it survives the covering team's access being revoked.",
        "operationId": "PrivateIncidentMembershipUpgradedToDirectV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident_membership.upgraded_to_direct",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentMembershipUpgradedToDirectV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident membership"
        ],
        "summary": "Upgraded to direct v1"
      }
    },
    "private_incident_team_membership.granted.1": {
      "get": {
        "description": "This entry is created whenever a team is granted access to a private incident.",
        "operationId": "PrivateIncidentTeamMembershipGrantedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident_team_membership.granted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering Team",
                      "type": "catalog_entry"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentTeamMembershipGrantedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident team membership"
        ],
        "summary": "Granted v1"
      }
    },
    "private_incident_team_membership.revoked.1": {
      "get": {
        "description": "This entry is created whenever a team's access to a private incident is revoked.",
        "operationId": "PrivateIncidentTeamMembershipRevokedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_incident_team_membership.revoked",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering Team",
                      "type": "catalog_entry"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "#INC-123 The website is slow",
                      "type": "incident"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateIncidentTeamMembershipRevokedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private incident team membership"
        ],
        "summary": "Revoked v1"
      }
    },
    "private_insights.exported.1": {
      "get": {
        "description": "This entry is created whenever someone exports private Insights data.",
        "operationId": "PrivateInsightsExportedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_insights.exported",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "measure": "alert_volume",
                    "outcome": "granted"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Organisation",
                      "type": "organisation"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateInsightsExportedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private insights"
        ],
        "summary": "Exported v1"
      }
    },
    "private_insights.measure_queried.1": {
      "get": {
        "description": "This entry is created whenever someone queries a private Insights measure.",
        "operationId": "PrivateInsightsMeasureQueriedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_insights.measure_queried",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "measure": "alert_volume",
                    "outcome": "granted"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Organisation",
                      "type": "organisation"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateInsightsMeasureQueriedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private insights"
        ],
        "summary": "Measure queried v1"
      }
    },
    "private_insights.underlying_data_queried.1": {
      "get": {
        "description": "This entry is created whenever someone queries private Insights underlying data.",
        "operationId": "PrivateInsightsUnderlyingDataQueriedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "private_insights.underlying_data_queried",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "measure": "alert_volume",
                    "outcome": "granted"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Organisation",
                      "type": "organisation"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsPrivateInsightsUnderlyingDataQueriedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Private insights"
        ],
        "summary": "Underlying data queried v1"
      }
    },
    "qr_code_mobile_login_setting.updated.1": {
      "get": {
        "description": "This entry is created whenever the QR code mobile login setting is toggled for an organisation",
        "operationId": "QrCodeMobileLoginSettingUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "qr_code_mobile_login_setting.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "enabled": "true"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Organisation Settings",
                      "type": "organisation_settings"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsQrCodeMobileLoginSettingUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Qr code mobile login setting"
        ],
        "summary": "Updated v1"
      }
    },
    "rbac_role.created.1": {
      "get": {
        "description": "This entry is created whenever a rbac role is created",
        "operationId": "RbacRoleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "rbac_role.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering",
                      "type": "rbac_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsRbacRoleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "RBAC role"
        ],
        "summary": "Created v1"
      }
    },
    "rbac_role.deleted.1": {
      "get": {
        "description": "This entry is created whenever a rbac role is deleted",
        "operationId": "RbacRoleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "rbac_role.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering",
                      "type": "rbac_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsRbacRoleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "RBAC role"
        ],
        "summary": "Deleted v1"
      }
    },
    "rbac_role.updated.1": {
      "get": {
        "description": "This entry is created whenever a rbac role is updated",
        "operationId": "RbacRoleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "rbac_role.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Engineering",
                      "type": "rbac_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsRbacRoleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "RBAC role"
        ],
        "summary": "Updated v1"
      }
    },
    "schedule.created.1": {
      "get": {
        "description": "This entry is created whenever a schedule is created",
        "operationId": "ScheduleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "On-call",
                      "type": "schedule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule"
        ],
        "summary": "Created v1"
      }
    },
    "schedule.deleted.1": {
      "get": {
        "description": "This entry is created whenever a schedule is deleted",
        "operationId": "ScheduleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "On-call",
                      "type": "schedule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule"
        ],
        "summary": "Deleted v1"
      }
    },
    "schedule.updated.1": {
      "get": {
        "description": "This entry is created whenever a schedule is updated",
        "operationId": "ScheduleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "On-call",
                      "type": "schedule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule"
        ],
        "summary": "Updated v1"
      }
    },
    "schedule_override.created.1": {
      "get": {
        "description": "This entry is created whenever a schedule override is created",
        "operationId": "ScheduleOverrideCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_override.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Override for Urgent Support",
                      "type": "schedule_override"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleOverrideCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule override"
        ],
        "summary": "Created v1"
      }
    },
    "schedule_override.created.2": {
      "get": {
        "description": "This entry is created whenever a schedule override is created",
        "operationId": "ScheduleOverrideCreatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_override.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
                    "after_user_names": "Nicole C",
                    "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
                    "before_user_names": "Nicole A,Nicole B",
                    "end_at": "2026-03-02T08:00:00Z",
                    "start_at": "2026-03-01T18:00:00Z"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Override for Urgent Support",
                      "type": "schedule_override"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleOverrideCreatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule override"
        ],
        "summary": "Created v2"
      }
    },
    "schedule_override.deleted.1": {
      "get": {
        "description": "This entry is created whenever a schedule override is deleted",
        "operationId": "ScheduleOverrideDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_override.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Override for Urgent Support",
                      "type": "schedule_override"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleOverrideDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule override"
        ],
        "summary": "Deleted v1"
      }
    },
    "schedule_override.deleted.2": {
      "get": {
        "description": "This entry is created whenever a schedule override is deleted",
        "operationId": "ScheduleOverrideDeletedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_override.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
                    "after_user_names": "Nicole C",
                    "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
                    "before_user_names": "Nicole A,Nicole B",
                    "end_at": "2026-03-02T08:00:00Z",
                    "start_at": "2026-03-01T18:00:00Z"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Override for Urgent Support",
                      "type": "schedule_override"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleOverrideDeletedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule override"
        ],
        "summary": "Deleted v2"
      }
    },
    "schedule_override.updated.1": {
      "get": {
        "description": "This entry is created whenever a schedule override is updated",
        "operationId": "ScheduleOverrideUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_override.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Override for Urgent Support",
                      "type": "schedule_override"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleOverrideUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule override"
        ],
        "summary": "Updated v1"
      }
    },
    "schedule_override.updated.2": {
      "get": {
        "description": "This entry is created whenever a schedule override is updated",
        "operationId": "ScheduleOverrideUpdatedV2",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_override.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
                    "after_user_names": "Nicole C",
                    "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
                    "before_user_names": "Nicole A,Nicole B",
                    "end_at": "2026-03-02T08:00:00Z",
                    "start_at": "2026-03-01T18:00:00Z"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Override for Urgent Support",
                      "type": "schedule_override"
                    }
                  ],
                  "version": 2
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleOverrideUpdatedV2"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule override"
        ],
        "summary": "Updated v2"
      }
    },
    "schedule_sync_rule.created.1": {
      "get": {
        "description": "This entry is created whenever a schedule sync rule is created",
        "operationId": "ScheduleSyncRuleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_sync_rule.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "on_call sync rule to Slack user group S012345ABCD",
                      "type": "schedule_sync_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleSyncRuleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule sync rule"
        ],
        "summary": "Created v1"
      }
    },
    "schedule_sync_rule.deleted.1": {
      "get": {
        "description": "This entry is created whenever a schedule sync rule is deleted",
        "operationId": "ScheduleSyncRuleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_sync_rule.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "on_call sync rule to Slack user group S012345ABCD",
                      "type": "schedule_sync_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleSyncRuleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule sync rule"
        ],
        "summary": "Deleted v1"
      }
    },
    "schedule_sync_rule.updated.1": {
      "get": {
        "description": "This entry is created whenever a schedule sync rule is updated",
        "operationId": "ScheduleSyncRuleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_sync_rule.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "on_call sync rule to Slack user group S012345ABCD",
                      "type": "schedule_sync_rule"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleSyncRuleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule sync rule"
        ],
        "summary": "Updated v1"
      }
    },
    "schedule_sync_target.created.1": {
      "get": {
        "description": "This entry is created whenever a schedule sync target is created",
        "operationId": "ScheduleSyncTargetCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_sync_target.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Slack user group S012345ABCD",
                      "type": "schedule_sync_target"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleSyncTargetCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule sync target"
        ],
        "summary": "Created v1"
      }
    },
    "schedule_sync_target.deleted.1": {
      "get": {
        "description": "This entry is created whenever a schedule sync target is deleted",
        "operationId": "ScheduleSyncTargetDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_sync_target.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Slack user group S012345ABCD",
                      "type": "schedule_sync_target"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleSyncTargetDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule sync target"
        ],
        "summary": "Deleted v1"
      }
    },
    "schedule_sync_target.updated.1": {
      "get": {
        "description": "This entry is created whenever a schedule sync target's add_bot_to_group flag is updated",
        "operationId": "ScheduleSyncTargetUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "schedule_sync_target.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Slack user group S012345ABCD",
                      "type": "schedule_sync_target"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScheduleSyncTargetUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Schedule sync target"
        ],
        "summary": "Updated v1"
      }
    },
    "scim_group.role_mappings_updated.1": {
      "get": {
        "description": "This entry is created whenever a SCIM group is mapped to a new RBAC role",
        "operationId": "ScimGroupRoleMappingsUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "scim_group.role_mappings_updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_base_role_slug": "owner",
                    "after_custom_role_slugs": "engineering,data",
                    "before_base_role_slug": "admin",
                    "before_custom_role_slugs": "engineering,security"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "scim_group"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScimGroupRoleMappingsUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "SCIM group"
        ],
        "summary": "Role mappings updated v1"
      }
    },
    "scim_group.seat_mappings_updated.1": {
      "get": {
        "description": "This entry is created whenever a SCIM group is mapped to new seat types",
        "operationId": "ScimGroupSeatMappingsUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "scim_group.seat_mappings_updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_seat_types": "[full_access, responder_access]",
                    "before_seat_types": "[full_access]"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Security",
                      "type": "scim_group"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsScimGroupSeatMappingsUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "SCIM group"
        ],
        "summary": "Seat mappings updated v1"
      }
    },
    "secret.created.1": {
      "get": {
        "description": "This entry is created whenever a secret is created",
        "operationId": "SecretCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "secret.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog webhook signing key",
                      "type": "secret"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSecretCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Secret"
        ],
        "summary": "Created v1"
      }
    },
    "secret.deleted.1": {
      "get": {
        "description": "This entry is created whenever a secret is deleted",
        "operationId": "SecretDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "secret.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog webhook signing key",
                      "type": "secret"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSecretDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Secret"
        ],
        "summary": "Deleted v1"
      }
    },
    "secret.reference_added.1": {
      "get": {
        "description": "This entry is created whenever a secret is referenced by a workflow for the first time",
        "operationId": "SecretReferenceAddedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "secret.reference_added",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog webhook signing key",
                      "type": "secret"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Nudge to write a postmortem",
                      "type": "workflow"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSecretReferenceAddedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Secret"
        ],
        "summary": "Reference added v1"
      }
    },
    "secret.reference_removed.1": {
      "get": {
        "description": "This entry is created whenever a secret stops being referenced by a workflow",
        "operationId": "SecretReferenceRemovedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "secret.reference_removed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog webhook signing key",
                      "type": "secret"
                    },
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Nudge to write a postmortem",
                      "type": "workflow"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSecretReferenceRemovedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Secret"
        ],
        "summary": "Reference removed v1"
      }
    },
    "secret.rotated.1": {
      "get": {
        "description": "This entry is created whenever a secret's value is rotated",
        "operationId": "SecretRotatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "secret.rotated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog webhook signing key",
                      "type": "secret"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSecretRotatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Secret"
        ],
        "summary": "Rotated v1"
      }
    },
    "secret.updated.1": {
      "get": {
        "description": "This entry is created whenever a secret's metadata is updated",
        "operationId": "SecretUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "secret.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Datadog webhook signing key",
                      "type": "secret"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSecretUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Secret"
        ],
        "summary": "Updated v1"
      }
    },
    "severity.created.1": {
      "get": {
        "description": "This entry is created whenever a severity is created",
        "operationId": "SeverityCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "severity.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Minor",
                      "type": "severity"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSeverityCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Severity"
        ],
        "summary": "Created v1"
      }
    },
    "severity.deleted.1": {
      "get": {
        "description": "This entry is created whenever a severity is deleted",
        "operationId": "SeverityDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "severity.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Minor",
                      "type": "severity"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSeverityDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Severity"
        ],
        "summary": "Deleted v1"
      }
    },
    "severity.updated.1": {
      "get": {
        "description": "This entry is created whenever a severity is updated",
        "operationId": "SeverityUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "severity.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Minor",
                      "type": "severity"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsSeverityUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Severity"
        ],
        "summary": "Updated v1"
      }
    },
    "status_page.created.1": {
      "get": {
        "description": "This entry is created whenever a status page is created",
        "operationId": "StatusPageCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Public Page",
                      "type": "status_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page"
        ],
        "summary": "Created v1"
      }
    },
    "status_page.deleted.1": {
      "get": {
        "description": "This entry is created whenever a status page is deleted",
        "operationId": "StatusPageDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Public Page",
                      "type": "status_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page"
        ],
        "summary": "Deleted v1"
      }
    },
    "status_page.updated.1": {
      "get": {
        "description": "This entry is created whenever a status page has its configuration updated",
        "operationId": "StatusPageUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Public Page",
                      "type": "status_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page"
        ],
        "summary": "Updated v1"
      }
    },
    "status_page_sub_page.created.1": {
      "get": {
        "description": "This entry is created whenever a status page sub-page is created",
        "operationId": "StatusPageSubPageCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page_sub_page.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Superpayments France",
                      "type": "status_page_sub_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageSubPageCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page sub page"
        ],
        "summary": "Created v1"
      }
    },
    "status_page_sub_page.deleted.1": {
      "get": {
        "description": "This entry is created whenever a status page sub-page is deleted",
        "operationId": "StatusPageSubPageDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page_sub_page.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Superpayments France",
                      "type": "status_page_sub_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageSubPageDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page sub page"
        ],
        "summary": "Deleted v1"
      }
    },
    "status_page_sub_page.updated.1": {
      "get": {
        "description": "This entry is created whenever a status page sub-page has its configuration updated",
        "operationId": "StatusPageSubPageUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page_sub_page.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Superpayments France",
                      "type": "status_page_sub_page"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageSubPageUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page sub page"
        ],
        "summary": "Updated v1"
      }
    },
    "status_page_template.created.1": {
      "get": {
        "description": "This entry is created whenever a status page template is created",
        "operationId": "StatusPageTemplateCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page_template.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Investigating",
                      "type": "status_page_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageTemplateCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page template"
        ],
        "summary": "Created v1"
      }
    },
    "status_page_template.deleted.1": {
      "get": {
        "description": "This entry is created whenever a status page template is deleted",
        "operationId": "StatusPageTemplateDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page_template.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Investigating",
                      "type": "status_page_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageTemplateDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page template"
        ],
        "summary": "Deleted v1"
      }
    },
    "status_page_template.updated.1": {
      "get": {
        "description": "This entry is created whenever a status page template is updated",
        "operationId": "StatusPageTemplateUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "status_page_template.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Investigating",
                      "type": "status_page_template"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsStatusPageTemplateUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Status page template"
        ],
        "summary": "Updated v1"
      }
    },
    "team_role.created.1": {
      "get": {
        "description": "This entry is created whenever a team role is created",
        "operationId": "TeamRoleCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "team_role.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Tech lead",
                      "type": "team_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTeamRoleCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Team role"
        ],
        "summary": "Created v1"
      }
    },
    "team_role.deleted.1": {
      "get": {
        "description": "This entry is created whenever a team role is deleted",
        "operationId": "TeamRoleDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "team_role.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Tech lead",
                      "type": "team_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTeamRoleDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Team role"
        ],
        "summary": "Deleted v1"
      }
    },
    "team_role.updated.1": {
      "get": {
        "description": "This entry is created whenever a team role is updated",
        "operationId": "TeamRoleUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "team_role.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Tech lead",
                      "type": "team_role"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTeamRoleUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Team role"
        ],
        "summary": "Updated v1"
      }
    },
    "team_settings.updated.1": {
      "get": {
        "description": "This entry is created whenever team settings are updated",
        "operationId": "TeamSettingsUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "team_settings.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Team Settings",
                      "type": "team_settings"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTeamSettingsUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Team settings"
        ],
        "summary": "Updated v1"
      }
    },
    "telemetry_data_source.installed.1": {
      "get": {
        "description": "This entry is created whenever a telemetry data source is connected",
        "operationId": "TelemetryDataSourceInstalledV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "telemetry_data_source.installed",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Grafana Cloud",
                      "type": "telemetry_data_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTelemetryDataSourceInstalledV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Telemetry data source"
        ],
        "summary": "Installed v1"
      }
    },
    "telemetry_data_source.uninstalled.1": {
      "get": {
        "description": "This entry is created whenever a telemetry data source is disconnected",
        "operationId": "TelemetryDataSourceUninstalledV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "telemetry_data_source.uninstalled",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Grafana Cloud",
                      "type": "telemetry_data_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTelemetryDataSourceUninstalledV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Telemetry data source"
        ],
        "summary": "Uninstalled v1"
      }
    },
    "telemetry_data_source.write_access_granted.1": {
      "get": {
        "description": "This entry is created whenever tools on a connector are allowed to change the connected system",
        "operationId": "TelemetryDataSourceWriteAccessGrantedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "telemetry_data_source.write_access_granted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "tools": "create_issue:chat=execute, delete_issue:chat=execute"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Grafana Cloud",
                      "type": "telemetry_data_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTelemetryDataSourceWriteAccessGrantedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Telemetry data source"
        ],
        "summary": "Write access granted v1"
      }
    },
    "telemetry_data_source.write_access_revoked.1": {
      "get": {
        "description": "This entry is created whenever tools on a connector lose permission to change the connected system",
        "operationId": "TelemetryDataSourceWriteAccessRevokedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "telemetry_data_source.write_access_revoked",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "tools": "create_issue:chat=execute, delete_issue:chat=execute"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Grafana Cloud",
                      "type": "telemetry_data_source"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTelemetryDataSourceWriteAccessRevokedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Telemetry data source"
        ],
        "summary": "Write access revoked v1"
      }
    },
    "timeline_item.deleted.1": {
      "get": {
        "description": "This entry is created whenever a timeline item is deleted",
        "operationId": "TimelineItemDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "timeline_item.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Timeline item (01FCNDV6P870EA6S7TK1DSYDG0)",
                      "type": "timeline_item"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsTimelineItemDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Timeline item"
        ],
        "summary": "Deleted v1"
      }
    },
    "user.created.1": {
      "get": {
        "description": "This entry is created whenever a user is created",
        "operationId": "UserCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "user.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsUserCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "User"
        ],
        "summary": "Created v1"
      }
    },
    "user.deactivated.1": {
      "get": {
        "description": "This entry is created whenever a user is deactivated",
        "operationId": "UserDeactivatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "user.deactivated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsUserDeactivatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "User"
        ],
        "summary": "Deactivated v1"
      }
    },
    "user.logged_in.1": {
      "get": {
        "description": "This entry is created whenever a user successfully logs in",
        "operationId": "UserLoggedInV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "user.logged_in",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "login_method": "slack_oidc"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsUserLoggedInV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "User"
        ],
        "summary": "Logged in v1"
      }
    },
    "user.reinstated.1": {
      "get": {
        "description": "This entry is created when a user is reinstated after being deactivated",
        "operationId": "UserReinstatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "user.reinstated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsUserReinstatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "User"
        ],
        "summary": "Reinstated v1"
      }
    },
    "user.role_memberships_updated.1": {
      "get": {
        "description": "This entry is created whenever a user's role memberships are changed.",
        "operationId": "UserRoleMembershipsUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "user.role_memberships_updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "metadata": {
                    "after_base_role_slug": "owner",
                    "after_custom_role_slugs": "engineering,data",
                    "before_base_role_slug": "admin",
                    "before_custom_role_slugs": "engineering,security"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsUserRoleMembershipsUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "User"
        ],
        "summary": "Role memberships updated v1"
      }
    },
    "user.updated.1": {
      "get": {
        "description": "This entry is created whenever a user is updated",
        "operationId": "UserUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "user.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Bob the builder",
                      "type": "user"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsUserUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "User"
        ],
        "summary": "Updated v1"
      }
    },
    "workflow.created.1": {
      "get": {
        "description": "This entry is created whenever a workflow is created",
        "operationId": "WorkflowCreatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "workflow.created",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Nudge to write a postmortem",
                      "type": "workflow"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsWorkflowCreatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Workflow"
        ],
        "summary": "Created v1"
      }
    },
    "workflow.deleted.1": {
      "get": {
        "description": "This entry is created whenever a workflow is deleted",
        "operationId": "WorkflowDeletedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "workflow.deleted",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Nudge to write a postmortem",
                      "type": "workflow"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsWorkflowDeletedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Workflow"
        ],
        "summary": "Deleted v1"
      }
    },
    "workflow.updated.1": {
      "get": {
        "description": "This entry is created whenever a workflow is updated",
        "operationId": "WorkflowUpdatedV1",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "example": {
                  "action": "workflow.updated",
                  "actor": {
                    "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                    "metadata": {
                      "user_base_role_slug": "admin",
                      "user_custom_role_slugs": "engineering,security"
                    },
                    "name": "John Doe",
                    "type": "user"
                  },
                  "context": {
                    "location": "1.2.3.4",
                    "user_agent": "Chrome/91.0.4472.114"
                  },
                  "occurred_at": "2021-08-17T13:28:57.801578Z",
                  "targets": [
                    {
                      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                      "name": "Nudge to write a postmortem",
                      "type": "workflow"
                    }
                  ],
                  "version": 1
                },
                "schema": {
                  "$ref": "#/components/schemas/AuditLogsWorkflowUpdatedV1"
                }
              }
            },
            "description": "OK response."
          }
        },
        "tags": [
          "Workflow"
        ],
        "summary": "Updated v1"
      }
    }
  },
  "components": {
    "schemas": {
      "AuditLogsActivityLogScrubbedV1": {
        "example": {
          "action": "activity_log.scrubbed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Activity log entry (01FCNDV6P870EA6S7TK1DSYDG0)",
              "type": "activity_log"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "activity_log.scrubbed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Activity log entry (01FCNDV6P870EA6S7TK1DSYDG0)",
                "type": "activity_log"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertScrubbedV1": {
        "example": {
          "action": "alert.scrubbed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Alert (01KB0083ASNF7EPT8NHQNRDXFC)",
              "type": "alert"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert.scrubbed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Alert (01KB0083ASNF7EPT8NHQNRDXFC)",
                "type": "alert"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertChatMessageTemplateCreatedV1": {
        "example": {
          "action": "alert_chat_message_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Standard",
              "type": "alert_chat_message_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_chat_message_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Standard",
                "type": "alert_chat_message_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertChatMessageTemplateDeletedV1": {
        "example": {
          "action": "alert_chat_message_template.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Standard",
              "type": "alert_chat_message_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_chat_message_template.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Standard",
                "type": "alert_chat_message_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertChatMessageTemplateUpdatedV1": {
        "example": {
          "action": "alert_chat_message_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Standard",
              "type": "alert_chat_message_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_chat_message_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Standard",
                "type": "alert_chat_message_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertPriorityCreatedV1": {
        "example": {
          "action": "alert_priority.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Urgent",
              "type": "alert_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_priority.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Urgent",
                "type": "alert_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertPriorityDeletedV1": {
        "example": {
          "action": "alert_priority.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Urgent",
              "type": "alert_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_priority.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Urgent",
                "type": "alert_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertPrioritySetAsDefaultV1": {
        "example": {
          "action": "alert_priority.set_as_default",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Urgent",
              "type": "alert_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_priority.set_as_default",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Urgent",
                "type": "alert_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertPriorityUpdatedV1": {
        "example": {
          "action": "alert_priority.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Urgent",
              "type": "alert_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_priority.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Urgent",
                "type": "alert_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertRouteCreatedV1": {
        "example": {
          "action": "alert_route.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Production incidents",
              "type": "alert_route"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_route.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Production incidents",
                "type": "alert_route"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertRouteDeletedV1": {
        "example": {
          "action": "alert_route.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Production incidents",
              "type": "alert_route"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_route.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Production incidents",
                "type": "alert_route"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertRouteUpdatedV1": {
        "example": {
          "action": "alert_route.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Production incidents",
              "type": "alert_route"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_route.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Production incidents",
                "type": "alert_route"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertSchemaUpdatedV1": {
        "example": {
          "action": "alert_schema.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Alert schema",
              "type": "alert_schema"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_schema.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Alert schema",
                "type": "alert_schema"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertSourceConfigCreatedV1": {
        "example": {
          "action": "alert_source_config.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog alerts",
              "type": "alert_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_source_config.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog alerts",
                "type": "alert_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertSourceConfigDeletedV1": {
        "example": {
          "action": "alert_source_config.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog alerts",
              "type": "alert_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_source_config.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog alerts",
                "type": "alert_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAlertSourceConfigUpdatedV1": {
        "example": {
          "action": "alert_source_config.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog alerts",
              "type": "alert_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "alert_source_config.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog alerts",
                "type": "alert_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementPostTemplateCreatedV1": {
        "example": {
          "action": "announcement_post_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Major incident",
              "type": "announcement_post_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_post_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Major incident",
                "type": "announcement_post_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementPostTemplateCreatedV2": {
        "example": {
          "action": "announcement_post_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Major incident",
              "type": "announcement_post_template"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_post_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogAnnouncementPostTemplateOwningTeamsMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Major incident",
                "type": "announcement_post_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementPostTemplateDeletedV1": {
        "example": {
          "action": "announcement_post_template.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Major incident",
              "type": "announcement_post_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_post_template.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Major incident",
                "type": "announcement_post_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementPostTemplateSetAsDefaultV1": {
        "example": {
          "action": "announcement_post_template.set_as_default",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Major incident",
              "type": "announcement_post_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_post_template.set_as_default",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Major incident",
                "type": "announcement_post_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementPostTemplateUpdatedV1": {
        "example": {
          "action": "announcement_post_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Major incident",
              "type": "announcement_post_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_post_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Major incident",
                "type": "announcement_post_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementPostTemplateUpdatedV2": {
        "example": {
          "action": "announcement_post_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Major incident",
              "type": "announcement_post_template"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_post_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogAnnouncementPostTemplateOwningTeamsMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Major incident",
                "type": "announcement_post_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementRuleCreatedV1": {
        "example": {
          "action": "announcement_rule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#engineering",
              "type": "announcement_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_rule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#engineering",
                "type": "announcement_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementRuleCreatedV2": {
        "example": {
          "action": "announcement_rule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "after_private_incident_scope": "owning_teams",
            "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "before_private_incident_scope": "none"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#engineering",
              "type": "announcement_rule"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_rule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogAnnouncementRuleMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#engineering",
                "type": "announcement_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementRuleDeletedV1": {
        "example": {
          "action": "announcement_rule.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#engineering",
              "type": "announcement_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_rule.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#engineering",
                "type": "announcement_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementRuleUpdatedV1": {
        "example": {
          "action": "announcement_rule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#engineering",
              "type": "announcement_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_rule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#engineering",
                "type": "announcement_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAnnouncementRuleUpdatedV2": {
        "example": {
          "action": "announcement_rule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "after_private_incident_scope": "owning_teams",
            "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "before_private_incident_scope": "none"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#engineering",
              "type": "announcement_rule"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "announcement_rule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogAnnouncementRuleMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#engineering",
                "type": "announcement_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsAPIKeyCreatedV1": {
        "example": {
          "action": "api_key.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Development API Key",
              "type": "api_key"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "api_key.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Development API Key",
                "type": "api_key"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAPIKeyDeletedV1": {
        "example": {
          "action": "api_key.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Development API Key",
              "type": "api_key"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "api_key.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Development API Key",
                "type": "api_key"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAPIKeyRotatedV1": {
        "example": {
          "action": "api_key.rotated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Development API Key",
              "type": "api_key"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "api_key.rotated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Development API Key",
                "type": "api_key"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsAPIKeyUpdatedV1": {
        "example": {
          "action": "api_key.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Development API Key",
              "type": "api_key"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "api_key.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Development API Key",
                "type": "api_key"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsCatalogEntryAttributeUpdatedV1": {
        "example": {
          "action": "catalog_entry_attribute.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_values": [
              "01FCNDV6P870EA6S7TK1DSYDG0",
              "01FCNDV6P870EA6S7TK1DSYDG2"
            ],
            "before_values": [
              "01FCNDV6P870EA6S7TK1DSYDG0",
              "01FCNDV6P870EA6S7TK1DSYDG1"
            ]
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Service",
              "type": "catalog_type"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering Team",
              "type": "catalog_entry"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Members",
              "type": "catalog_attribute"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "catalog_entry_attribute.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogCatalogAttributeUpdatedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Service",
                "type": "catalog_type"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering Team",
                "type": "catalog_entry"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Members",
                "type": "catalog_attribute"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsCatalogEntryAttributeUpdatedV2": {
        "example": {
          "action": "catalog_entry_attribute.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_values": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "before_values": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Service",
              "type": "catalog_type"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering Team",
              "type": "catalog_entry"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Members",
              "type": "catalog_attribute"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "catalog_entry_attribute.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogCatalogAttributeUpdatedMetadataV2V2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Service",
                "type": "catalog_type"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering Team",
                "type": "catalog_entry"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Members",
                "type": "catalog_attribute"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsCatalogTypeCreatedV1": {
        "example": {
          "action": "catalog_type.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Service",
              "type": "catalog_type"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "catalog_type.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Service",
                "type": "catalog_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsCatalogTypeDeletedV1": {
        "example": {
          "action": "catalog_type.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Service",
              "type": "catalog_type"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "catalog_type.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Service",
                "type": "catalog_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsCatalogTypeUpdatedV1": {
        "example": {
          "action": "catalog_type.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Service",
              "type": "catalog_type"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "catalog_type.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Service",
                "type": "catalog_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsConnectorConfigCreatedV1": {
        "example": {
          "action": "connector_config.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "My Connector",
              "type": "connector_config"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "connector_config.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "My Connector",
                "type": "connector_config"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsConnectorConfigTokenGeneratedV1": {
        "example": {
          "action": "connector_config.token_generated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "My Connector",
              "type": "connector_config"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "connector_config.token_generated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "My Connector",
                "type": "connector_config"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsConnectorConfigUpdatedV1": {
        "example": {
          "action": "connector_config.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "My Connector",
              "type": "connector_config"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "connector_config.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "My Connector",
                "type": "connector_config"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsCustomFieldCreatedV1": {
        "example": {
          "action": "custom_field.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Affected teams",
              "type": "custom_field"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "custom_field.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Affected teams",
                "type": "custom_field"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsCustomFieldDeletedV1": {
        "example": {
          "action": "custom_field.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Affected teams",
              "type": "custom_field"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "custom_field.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Affected teams",
                "type": "custom_field"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsCustomFieldUpdatedV1": {
        "example": {
          "action": "custom_field.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Affected teams",
              "type": "custom_field"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "custom_field.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Affected teams",
                "type": "custom_field"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsDebriefInviteRuleCreatedV1": {
        "example": {
          "action": "debrief_invite_rule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Invite founders for critical incidents",
              "type": "debrief_invite_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "debrief_invite_rule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Invite founders for critical incidents",
                "type": "debrief_invite_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsDebriefInviteRuleDeletedV1": {
        "example": {
          "action": "debrief_invite_rule.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Invite founders for critical incidents",
              "type": "debrief_invite_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "debrief_invite_rule.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Invite founders for critical incidents",
                "type": "debrief_invite_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsDebriefInviteRuleUpdatedV1": {
        "example": {
          "action": "debrief_invite_rule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Invite founders for critical incidents",
              "type": "debrief_invite_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "debrief_invite_rule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Invite founders for critical incidents",
                "type": "debrief_invite_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsEmailOtpLoginSettingUpdatedV1": {
        "example": {
          "action": "email_otp_login_setting.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "enabled": "true"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Organisation Settings",
              "type": "organisation_settings"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "email_otp_login_setting.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogEmailOtpLoginSettingUpdatedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Organisation Settings",
                "type": "organisation_settings"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsEscalationScrubbedV1": {
        "example": {
          "action": "escalation.scrubbed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Escalation (01KB0083ASNF7EPT8NHQNRDXFC)",
              "type": "escalation"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "escalation.scrubbed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Escalation (01KB0083ASNF7EPT8NHQNRDXFC)",
                "type": "escalation"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsEscalationPathCreatedV1": {
        "example": {
          "action": "escalation_path.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Critical incidents",
              "type": "escalation_path"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "escalation_path.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Critical incidents",
                "type": "escalation_path"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsEscalationPathDeletedV1": {
        "example": {
          "action": "escalation_path.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Critical incidents",
              "type": "escalation_path"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "escalation_path.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Critical incidents",
                "type": "escalation_path"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsEscalationPathUpdatedV1": {
        "example": {
          "action": "escalation_path.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Critical incidents",
              "type": "escalation_path"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "escalation_path.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Critical incidents",
                "type": "escalation_path"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsFollowUpCategoryCreatedV1": {
        "example": {
          "action": "follow_up_category.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Category Name",
              "type": "follow_up_category"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "follow_up_category.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Category Name",
                "type": "follow_up_category"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsFollowUpCategoryDeletedV1": {
        "example": {
          "action": "follow_up_category.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Category Name",
              "type": "follow_up_category"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "follow_up_category.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Category Name",
                "type": "follow_up_category"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsFollowUpCategoryUpdatedV1": {
        "example": {
          "action": "follow_up_category.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Category Name",
              "type": "follow_up_category"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "follow_up_category.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Category Name",
                "type": "follow_up_category"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsFollowUpPriorityCreatedV1": {
        "example": {
          "action": "follow_up_priority.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Low",
              "type": "follow_up_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "follow_up_priority.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Low",
                "type": "follow_up_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsFollowUpPriorityDeletedV1": {
        "example": {
          "action": "follow_up_priority.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Low",
              "type": "follow_up_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "follow_up_priority.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Low",
                "type": "follow_up_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsFollowUpPriorityUpdatedV1": {
        "example": {
          "action": "follow_up_priority.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Low",
              "type": "follow_up_priority"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "follow_up_priority.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Low",
                "type": "follow_up_priority"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsHolidayUserFeedCreatedV1": {
        "example": {
          "action": "holiday_user_feed.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "US Team holidays",
              "type": "holiday_user_feed"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "holiday_user_feed.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "US Team holidays",
                "type": "holiday_user_feed"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsHolidayUserFeedDeletedV1": {
        "example": {
          "action": "holiday_user_feed.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "US Team holidays",
              "type": "holiday_user_feed"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "holiday_user_feed.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "US Team holidays",
                "type": "holiday_user_feed"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsHolidayUserFeedUpdatedV1": {
        "example": {
          "action": "holiday_user_feed.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "US Team holidays",
              "type": "holiday_user_feed"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "holiday_user_feed.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "US Team holidays",
                "type": "holiday_user_feed"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsHrisTimeOffPolicyUpdatedV1": {
        "example": {
          "action": "hris_time_off_policy.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "behaviour": "visible",
            "connection_name": "default",
            "previous_behaviour": "private",
            "provider_slug": "bamboohr"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Jury duty",
              "type": "hris_time_off_policy"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "hris_time_off_policy.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogHrisTimeOffPolicyUpdatedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Jury duty",
                "type": "hris_time_off_policy"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsIncidentCallSettingUpdatedV1": {
        "example": {
          "action": "incident_call_setting.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Incident call settings",
              "type": "incident_call_setting"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_call_setting.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Incident call settings",
                "type": "incident_call_setting"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentCallTranscriptionSessionDeletedV1": {
        "example": {
          "action": "incident_call_transcription_session.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Call transcription session",
              "type": "incident_call_transcription_session"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_call_transcription_session.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Call transcription session",
                "type": "incident_call_transcription_session"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentDurationMetricCreatedV1": {
        "example": {
          "action": "incident_duration_metric.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Time to resolve",
              "type": "incident_duration_metric"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_duration_metric.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Time to resolve",
                "type": "incident_duration_metric"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentDurationMetricDeletedV1": {
        "example": {
          "action": "incident_duration_metric.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Time to resolve",
              "type": "incident_duration_metric"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_duration_metric.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Time to resolve",
                "type": "incident_duration_metric"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentDurationMetricUpdatedV1": {
        "example": {
          "action": "incident_duration_metric.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Time to resolve",
              "type": "incident_duration_metric"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_duration_metric.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Time to resolve",
                "type": "incident_duration_metric"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentRoleCreatedV1": {
        "example": {
          "action": "incident_role.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Communications Lead",
              "type": "incident_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_role.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Communications Lead",
                "type": "incident_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentRoleDeletedV1": {
        "example": {
          "action": "incident_role.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Communications Lead",
              "type": "incident_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_role.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Communications Lead",
                "type": "incident_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentRoleUpdatedV1": {
        "example": {
          "action": "incident_role.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Communications Lead",
              "type": "incident_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_role.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Communications Lead",
                "type": "incident_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentStatusCreatedV1": {
        "example": {
          "action": "incident_status.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Investigating",
              "type": "incident_status"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_status.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Investigating",
                "type": "incident_status"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentStatusDeletedV1": {
        "example": {
          "action": "incident_status.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Investigating",
              "type": "incident_status"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_status.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Investigating",
                "type": "incident_status"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentStatusUpdatedV1": {
        "example": {
          "action": "incident_status.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Investigating",
              "type": "incident_status"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_status.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Investigating",
                "type": "incident_status"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTemplateCreatedV1": {
        "example": {
          "action": "incident_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Production incidents",
              "type": "incident_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Production incidents",
                "type": "incident_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTemplateDeletedV1": {
        "example": {
          "action": "incident_template.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Production incidents",
              "type": "incident_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_template.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Production incidents",
                "type": "incident_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTemplateUpdatedV1": {
        "example": {
          "action": "incident_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Production incidents",
              "type": "incident_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Production incidents",
                "type": "incident_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTimestampCreatedV1": {
        "example": {
          "action": "incident_timestamp.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Fixed at",
              "type": "incident_timestamp"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_timestamp.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Fixed at",
                "type": "incident_timestamp"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTimestampDeletedV1": {
        "example": {
          "action": "incident_timestamp.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Fixed at",
              "type": "incident_timestamp"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_timestamp.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Fixed at",
                "type": "incident_timestamp"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTimestampUpdatedV1": {
        "example": {
          "action": "incident_timestamp.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Fixed at",
              "type": "incident_timestamp"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_timestamp.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Fixed at",
                "type": "incident_timestamp"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTimestampSetByRuleCreatedV1": {
        "example": {
          "action": "incident_timestamp_set_by_rule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Fixed at",
              "type": "incident_timestamp"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Resolved at ('set by' rule)",
              "type": "incident_timestamp_set_by_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_timestamp_set_by_rule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Fixed at",
                "type": "incident_timestamp"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Resolved at ('set by' rule)",
                "type": "incident_timestamp_set_by_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTimestampSetByRuleDeletedV1": {
        "example": {
          "action": "incident_timestamp_set_by_rule.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Fixed at",
              "type": "incident_timestamp"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Resolved at ('set by' rule)",
              "type": "incident_timestamp_set_by_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_timestamp_set_by_rule.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Fixed at",
                "type": "incident_timestamp"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Resolved at ('set by' rule)",
                "type": "incident_timestamp_set_by_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTimestampSetByRuleUpdatedV1": {
        "example": {
          "action": "incident_timestamp_set_by_rule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Fixed at",
              "type": "incident_timestamp"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Resolved at ('set by' rule)",
              "type": "incident_timestamp_set_by_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_timestamp_set_by_rule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Fixed at",
                "type": "incident_timestamp"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Resolved at ('set by' rule)",
                "type": "incident_timestamp_set_by_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTypeCreatedV1": {
        "example": {
          "action": "incident_type.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "incident_type"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_type.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "incident_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTypeCreatedV2": {
        "example": {
          "action": "incident_type.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "before_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "incident_type"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_type.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogIncidentTypeDefaultTeamsMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "incident_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTypeDeletedV1": {
        "example": {
          "action": "incident_type.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "incident_type"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_type.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "incident_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTypeUpdatedV1": {
        "example": {
          "action": "incident_type.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "incident_type"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_type.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "incident_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIncidentTypeUpdatedV2": {
        "example": {
          "action": "incident_type.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "before_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "incident_type"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "incident_type.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogIncidentTypeDefaultTeamsMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "incident_type"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsIntegrationInstalledV1": {
        "example": {
          "action": "integration.installed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "github",
              "name": "Github",
              "type": "integration"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "integration.installed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "github",
                "name": "Github",
                "type": "integration"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIntegrationUninstalledV1": {
        "example": {
          "action": "integration.uninstalled",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "github",
              "name": "Github",
              "type": "integration"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "integration.uninstalled",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "github",
                "name": "Github",
                "type": "integration"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsInternalStatusPageCreatedV1": {
        "example": {
          "action": "internal_status_page.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Public Page",
              "type": "internal_status_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "internal_status_page.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Public Page",
                "type": "internal_status_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsInternalStatusPageDeletedV1": {
        "example": {
          "action": "internal_status_page.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Public Page",
              "type": "internal_status_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "internal_status_page.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Public Page",
                "type": "internal_status_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsInternalStatusPageUpdatedV1": {
        "example": {
          "action": "internal_status_page.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Public Page",
              "type": "internal_status_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "internal_status_page.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Public Page",
                "type": "internal_status_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsIPAllowlistUpdatedV1": {
        "example": {
          "action": "ip_allowlist.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "additions": "[\"192.0.2.0\",\"192.0.2.0/24\"]",
            "additions_count": "2",
            "enabled": "true",
            "removals": "[\"192.0.2.1\"]",
            "removals_count": "1",
            "version": "2"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "IP allowlist",
              "type": "ip_allowlist"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "ip_allowlist.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogIPAllowlistUpdatedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "IP allowlist",
                "type": "ip_allowlist"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsMaintenanceWindowCreatedV1": {
        "example": {
          "action": "maintenance_window.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Planned DB migration",
              "type": "maintenance_window"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "maintenance_window.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Planned DB migration",
                "type": "maintenance_window"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsMaintenanceWindowDeletedV1": {
        "example": {
          "action": "maintenance_window.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Planned DB migration",
              "type": "maintenance_window"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "maintenance_window.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Planned DB migration",
                "type": "maintenance_window"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsMaintenanceWindowUpdatedV1": {
        "example": {
          "action": "maintenance_window.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Planned DB migration",
              "type": "maintenance_window"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "maintenance_window.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Planned DB migration",
                "type": "maintenance_window"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsNudgeCreatedV1": {
        "example": {
          "action": "nudge.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Reminder to take a break",
              "type": "nudge"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "nudge.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Reminder to take a break",
                "type": "nudge"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsNudgeDeletedV1": {
        "example": {
          "action": "nudge.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Reminder to take a break",
              "type": "nudge"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "nudge.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Reminder to take a break",
                "type": "nudge"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsNudgeUpdatedV1": {
        "example": {
          "action": "nudge.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Reminder to take a break",
              "type": "nudge"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "nudge.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Reminder to take a break",
                "type": "nudge"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsOnCallNotificationMethodCreatedV1": {
        "example": {
          "action": "on_call_notification_method.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Phone notification method",
              "type": "on_call_notification_method"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "on_call_notification_method.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Phone notification method",
                "type": "on_call_notification_method"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsOnCallNotificationMethodCreatedV2": {
        "example": {
          "action": "on_call_notification_method.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "target_user": "01JV9EMFCFRGCFVNDWTBKT2EBR"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Phone notification method",
              "type": "on_call_notification_method"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "on_call_notification_method.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogOnCallNotificationMethodMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Phone notification method",
                "type": "on_call_notification_method"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsOnCallNotificationMethodDestroyedV1": {
        "example": {
          "action": "on_call_notification_method.destroyed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Phone notification method",
              "type": "on_call_notification_method"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "on_call_notification_method.destroyed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Phone notification method",
                "type": "on_call_notification_method"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsOnCallNotificationMethodDestroyedV2": {
        "example": {
          "action": "on_call_notification_method.destroyed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "target_user": "01JV9EMFCFRGCFVNDWTBKT2EBR"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Phone notification method",
              "type": "on_call_notification_method"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "on_call_notification_method.destroyed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogOnCallNotificationMethodMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Phone notification method",
                "type": "on_call_notification_method"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsOnCallUpsellRequestedV1": {
        "example": {
          "action": "on_call_upsell.requested",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "gate_count_after": "15",
            "gate_count_before": "10",
            "requested_by_user_id": "01JV9EMFCFRGCFVNDWTBKT2EBR",
            "seats_added": "5"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "On-call upsell (+5 seats)",
              "type": "on_call_upsell_request"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "on_call_upsell.requested",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogOnCallUpsellRequestedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "On-call upsell (+5 seats)",
                "type": "on_call_upsell_request"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsOrganisationSettingsUpdatedV1": {
        "example": {
          "action": "organisation_settings.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "default_timezone": "Europe/London"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Organisation Settings",
              "type": "organisation_settings"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "organisation_settings.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogOrganisationSettingsUpdatedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Organisation Settings",
                "type": "organisation_settings"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPolicyCreatedV1": {
        "example": {
          "action": "policy.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Follow-ups must be closed within 3 weeks",
              "type": "policy"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Follow-ups must be closed within 3 weeks",
                "type": "policy"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPolicyCreatedV2": {
        "example": {
          "action": "policy.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "run_on_private_incidents": "true"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Follow-ups must be closed within 3 weeks",
              "type": "policy"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPolicyMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Follow-ups must be closed within 3 weeks",
                "type": "policy"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPolicyDeletedV1": {
        "example": {
          "action": "policy.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Follow-ups must be closed within 3 weeks",
              "type": "policy"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Follow-ups must be closed within 3 weeks",
                "type": "policy"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPolicyUpdatedV1": {
        "example": {
          "action": "policy.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Follow-ups must be closed within 3 weeks",
              "type": "policy"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Follow-ups must be closed within 3 weeks",
                "type": "policy"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPolicyUpdatedV2": {
        "example": {
          "action": "policy.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "run_on_private_incidents": "true"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Follow-ups must be closed within 3 weeks",
              "type": "policy"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPolicyMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Follow-ups must be closed within 3 weeks",
                "type": "policy"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPolicyReportScheduleCreatedV1": {
        "example": {
          "action": "policy_report_schedule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Weekly overdue follow-ups report",
              "type": "policy_report_schedule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy_report_schedule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Weekly overdue follow-ups report",
                "type": "policy_report_schedule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPolicyReportScheduleDeletedV1": {
        "example": {
          "action": "policy_report_schedule.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Weekly overdue follow-ups report",
              "type": "policy_report_schedule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy_report_schedule.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Weekly overdue follow-ups report",
                "type": "policy_report_schedule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPolicyReportScheduleUpdatedV1": {
        "example": {
          "action": "policy_report_schedule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Weekly overdue follow-ups report",
              "type": "policy_report_schedule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "policy_report_schedule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Weekly overdue follow-ups report",
                "type": "policy_report_schedule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostIncidentTaskCreatedV1": {
        "example": {
          "action": "post_incident_task.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "post_incident_task.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostIncidentTaskDeletedV1": {
        "example": {
          "action": "post_incident_task.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "post_incident_task.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostIncidentTaskUpdatedV1": {
        "example": {
          "action": "post_incident_task.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "post_incident_task.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemSectionCreatedV1": {
        "example": {
          "action": "postmortem_section.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_section.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemSectionCreatedV2": {
        "example": {
          "action": "postmortem_section.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "follow_ups",
              "type": "postmortem_template_section"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_section.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "follow_ups",
                "type": "postmortem_template_section"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemSectionDeletedV1": {
        "example": {
          "action": "postmortem_section.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_section.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemSectionDeletedV2": {
        "example": {
          "action": "postmortem_section.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "follow_ups",
              "type": "postmortem_template_section"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_section.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "follow_ups",
                "type": "postmortem_template_section"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemSectionUpdatedV1": {
        "example": {
          "action": "postmortem_section.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_section.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemSectionUpdatedV2": {
        "example": {
          "action": "postmortem_section.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "follow_ups",
              "type": "postmortem_template_section"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_section.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "follow_ups",
                "type": "postmortem_template_section"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemTemplateCreatedV1": {
        "example": {
          "action": "postmortem_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemTemplateCreatedV2": {
        "example": {
          "action": "postmortem_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Root cause analysis (RCA)",
              "type": "postmortem_template"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Root cause analysis (RCA)",
                "type": "postmortem_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemTemplateDeletedV1": {
        "example": {
          "action": "postmortem_template.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_template.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemTemplateDeletedV2": {
        "example": {
          "action": "postmortem_template.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Root cause analysis (RCA)",
              "type": "postmortem_template"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_template.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Root cause analysis (RCA)",
                "type": "postmortem_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemTemplateUpdatedV1": {
        "example": {
          "action": "postmortem_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Schedule a debrief",
              "type": "post_incident_task"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Schedule a debrief",
                "type": "post_incident_task"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPostmortemTemplateUpdatedV2": {
        "example": {
          "action": "postmortem_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Root cause analysis (RCA)",
              "type": "postmortem_template"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "postmortem_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Root cause analysis (RCA)",
                "type": "postmortem_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateAlertAccessAttemptedV1": {
        "example": {
          "action": "private_alert.access_attempted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "outcome": "granted"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Alert (01KB0083ASNF7EPT8NHQNRDXFC)",
              "type": "alert"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_alert.access_attempted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateAlertAccessAttemptedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Alert (01KB0083ASNF7EPT8NHQNRDXFC)",
                "type": "alert"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPrivateEscalationAccessAttemptedV1": {
        "example": {
          "action": "private_escalation.access_attempted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "outcome": "granted"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Escalation (01KB0083ASNF7EPT8NHQNRDXFC)",
              "type": "escalation"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_escalation.access_attempted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateEscalationAccessAttemptedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Escalation (01KB0083ASNF7EPT8NHQNRDXFC)",
                "type": "escalation"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentAccessAttemptedV1": {
        "example": {
          "action": "private_incident.access_attempted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "outcome": "granted"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident.access_attempted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateIncidentAccessAttemptedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentAccessAttemptedV2": {
        "example": {
          "action": "private_incident.access_attempted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "access_type": "N/A",
            "outcome": "granted",
            "team_id": "01G0J1EXE7AXZ2C93K61WBPYEH"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident.access_attempted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateIncidentAccessAttemptedMetadataV2V2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentAccessRequestedV1": {
        "example": {
          "action": "private_incident.access_requested",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident.access_requested",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentAccessedViaBotV1": {
        "example": {
          "action": "private_incident.accessed_via_bot",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident.accessed_via_bot",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentMembershipGrantedV1": {
        "example": {
          "action": "private_incident_membership.granted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident_membership.granted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentMembershipRevokedV1": {
        "example": {
          "action": "private_incident_membership.revoked",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident_membership.revoked",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentMembershipUpgradedToDirectV1": {
        "example": {
          "action": "private_incident_membership.upgraded_to_direct",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident_membership.upgraded_to_direct",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentTeamMembershipGrantedV1": {
        "example": {
          "action": "private_incident_team_membership.granted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering Team",
              "type": "catalog_entry"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident_team_membership.granted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering Team",
                "type": "catalog_entry"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateIncidentTeamMembershipRevokedV1": {
        "example": {
          "action": "private_incident_team_membership.revoked",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering Team",
              "type": "catalog_entry"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "#INC-123 The website is slow",
              "type": "incident"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_incident_team_membership.revoked",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering Team",
                "type": "catalog_entry"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "#INC-123 The website is slow",
                "type": "incident"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsPrivateInsightsExportedV1": {
        "example": {
          "action": "private_insights.exported",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "measure": "alert_volume",
            "outcome": "granted"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Organisation",
              "type": "organisation"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_insights.exported",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateInsightsExportedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Organisation",
                "type": "organisation"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPrivateInsightsMeasureQueriedV1": {
        "example": {
          "action": "private_insights.measure_queried",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "measure": "alert_volume",
            "outcome": "granted"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Organisation",
              "type": "organisation"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_insights.measure_queried",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateInsightsMeasureQueriedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Organisation",
                "type": "organisation"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsPrivateInsightsUnderlyingDataQueriedV1": {
        "example": {
          "action": "private_insights.underlying_data_queried",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "measure": "alert_volume",
            "outcome": "granted"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Organisation",
              "type": "organisation"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "private_insights.underlying_data_queried",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogPrivateInsightsUnderlyingDataQueriedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Organisation",
                "type": "organisation"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsQrCodeMobileLoginSettingUpdatedV1": {
        "example": {
          "action": "qr_code_mobile_login_setting.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "enabled": "true"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Organisation Settings",
              "type": "organisation_settings"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "qr_code_mobile_login_setting.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogQrCodeMobileLoginSettingUpdatedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Organisation Settings",
                "type": "organisation_settings"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsRbacRoleCreatedV1": {
        "example": {
          "action": "rbac_role.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering",
              "type": "rbac_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "rbac_role.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering",
                "type": "rbac_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsRbacRoleDeletedV1": {
        "example": {
          "action": "rbac_role.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering",
              "type": "rbac_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "rbac_role.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering",
                "type": "rbac_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsRbacRoleUpdatedV1": {
        "example": {
          "action": "rbac_role.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Engineering",
              "type": "rbac_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "rbac_role.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Engineering",
                "type": "rbac_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleCreatedV1": {
        "example": {
          "action": "schedule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "On-call",
              "type": "schedule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "On-call",
                "type": "schedule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleDeletedV1": {
        "example": {
          "action": "schedule.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "On-call",
              "type": "schedule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "On-call",
                "type": "schedule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleUpdatedV1": {
        "example": {
          "action": "schedule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "On-call",
              "type": "schedule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "On-call",
                "type": "schedule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleOverrideCreatedV1": {
        "example": {
          "action": "schedule_override.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Override for Urgent Support",
              "type": "schedule_override"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_override.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Override for Urgent Support",
                "type": "schedule_override"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleOverrideCreatedV2": {
        "example": {
          "action": "schedule_override.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
            "after_user_names": "Nicole C",
            "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "before_user_names": "Nicole A,Nicole B",
            "end_at": "2026-03-02T08:00:00Z",
            "start_at": "2026-03-01T18:00:00Z"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Override for Urgent Support",
              "type": "schedule_override"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_override.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogScheduleOverrideMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Override for Urgent Support",
                "type": "schedule_override"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsScheduleOverrideDeletedV1": {
        "example": {
          "action": "schedule_override.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Override for Urgent Support",
              "type": "schedule_override"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_override.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Override for Urgent Support",
                "type": "schedule_override"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleOverrideDeletedV2": {
        "example": {
          "action": "schedule_override.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
            "after_user_names": "Nicole C",
            "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "before_user_names": "Nicole A,Nicole B",
            "end_at": "2026-03-02T08:00:00Z",
            "start_at": "2026-03-01T18:00:00Z"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Override for Urgent Support",
              "type": "schedule_override"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_override.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogScheduleOverrideMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Override for Urgent Support",
                "type": "schedule_override"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsScheduleOverrideUpdatedV1": {
        "example": {
          "action": "schedule_override.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Override for Urgent Support",
              "type": "schedule_override"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_override.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Override for Urgent Support",
                "type": "schedule_override"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleOverrideUpdatedV2": {
        "example": {
          "action": "schedule_override.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
            "after_user_names": "Nicole C",
            "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "before_user_names": "Nicole A,Nicole B",
            "end_at": "2026-03-02T08:00:00Z",
            "start_at": "2026-03-01T18:00:00Z"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Override for Urgent Support",
              "type": "schedule_override"
            }
          ],
          "version": 2
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_override.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogScheduleOverrideMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Override for Urgent Support",
                "type": "schedule_override"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 2,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsScheduleSyncRuleCreatedV1": {
        "example": {
          "action": "schedule_sync_rule.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "on_call sync rule to Slack user group S012345ABCD",
              "type": "schedule_sync_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_sync_rule.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "on_call sync rule to Slack user group S012345ABCD",
                "type": "schedule_sync_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleSyncRuleDeletedV1": {
        "example": {
          "action": "schedule_sync_rule.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "on_call sync rule to Slack user group S012345ABCD",
              "type": "schedule_sync_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_sync_rule.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "on_call sync rule to Slack user group S012345ABCD",
                "type": "schedule_sync_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleSyncRuleUpdatedV1": {
        "example": {
          "action": "schedule_sync_rule.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "on_call sync rule to Slack user group S012345ABCD",
              "type": "schedule_sync_rule"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_sync_rule.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "on_call sync rule to Slack user group S012345ABCD",
                "type": "schedule_sync_rule"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleSyncTargetCreatedV1": {
        "example": {
          "action": "schedule_sync_target.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Slack user group S012345ABCD",
              "type": "schedule_sync_target"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_sync_target.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Slack user group S012345ABCD",
                "type": "schedule_sync_target"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleSyncTargetDeletedV1": {
        "example": {
          "action": "schedule_sync_target.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Slack user group S012345ABCD",
              "type": "schedule_sync_target"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_sync_target.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Slack user group S012345ABCD",
                "type": "schedule_sync_target"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScheduleSyncTargetUpdatedV1": {
        "example": {
          "action": "schedule_sync_target.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Slack user group S012345ABCD",
              "type": "schedule_sync_target"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "schedule_sync_target.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Slack user group S012345ABCD",
                "type": "schedule_sync_target"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsScimGroupRoleMappingsUpdatedV1": {
        "example": {
          "action": "scim_group.role_mappings_updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_base_role_slug": "owner",
            "after_custom_role_slugs": "engineering,data",
            "before_base_role_slug": "admin",
            "before_custom_role_slugs": "engineering,security"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "scim_group"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "scim_group.role_mappings_updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogUserSCIMGroupMappingChangedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "scim_group"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsScimGroupSeatMappingsUpdatedV1": {
        "example": {
          "action": "scim_group.seat_mappings_updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_seat_types": "[full_access, responder_access]",
            "before_seat_types": "[full_access]"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Security",
              "type": "scim_group"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "scim_group.seat_mappings_updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogSCIMGroupSeatMappingChangedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Security",
                "type": "scim_group"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsSecretCreatedV1": {
        "example": {
          "action": "secret.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog webhook signing key",
              "type": "secret"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "secret.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog webhook signing key",
                "type": "secret"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSecretDeletedV1": {
        "example": {
          "action": "secret.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog webhook signing key",
              "type": "secret"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "secret.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog webhook signing key",
                "type": "secret"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSecretReferenceAddedV1": {
        "example": {
          "action": "secret.reference_added",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog webhook signing key",
              "type": "secret"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Nudge to write a postmortem",
              "type": "workflow"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "secret.reference_added",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog webhook signing key",
                "type": "secret"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Nudge to write a postmortem",
                "type": "workflow"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSecretReferenceRemovedV1": {
        "example": {
          "action": "secret.reference_removed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog webhook signing key",
              "type": "secret"
            },
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Nudge to write a postmortem",
              "type": "workflow"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "secret.reference_removed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog webhook signing key",
                "type": "secret"
              },
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Nudge to write a postmortem",
                "type": "workflow"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSecretRotatedV1": {
        "example": {
          "action": "secret.rotated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog webhook signing key",
              "type": "secret"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "secret.rotated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog webhook signing key",
                "type": "secret"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSecretUpdatedV1": {
        "example": {
          "action": "secret.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Datadog webhook signing key",
              "type": "secret"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "secret.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Datadog webhook signing key",
                "type": "secret"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSeverityCreatedV1": {
        "example": {
          "action": "severity.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Minor",
              "type": "severity"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "severity.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Minor",
                "type": "severity"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSeverityDeletedV1": {
        "example": {
          "action": "severity.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Minor",
              "type": "severity"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "severity.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Minor",
                "type": "severity"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsSeverityUpdatedV1": {
        "example": {
          "action": "severity.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Minor",
              "type": "severity"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "severity.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Minor",
                "type": "severity"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageCreatedV1": {
        "example": {
          "action": "status_page.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Public Page",
              "type": "status_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Public Page",
                "type": "status_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageDeletedV1": {
        "example": {
          "action": "status_page.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Public Page",
              "type": "status_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Public Page",
                "type": "status_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageUpdatedV1": {
        "example": {
          "action": "status_page.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Public Page",
              "type": "status_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Public Page",
                "type": "status_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageSubPageCreatedV1": {
        "example": {
          "action": "status_page_sub_page.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Superpayments France",
              "type": "status_page_sub_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page_sub_page.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Superpayments France",
                "type": "status_page_sub_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageSubPageDeletedV1": {
        "example": {
          "action": "status_page_sub_page.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Superpayments France",
              "type": "status_page_sub_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page_sub_page.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Superpayments France",
                "type": "status_page_sub_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageSubPageUpdatedV1": {
        "example": {
          "action": "status_page_sub_page.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Superpayments France",
              "type": "status_page_sub_page"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page_sub_page.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Superpayments France",
                "type": "status_page_sub_page"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageTemplateCreatedV1": {
        "example": {
          "action": "status_page_template.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Investigating",
              "type": "status_page_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page_template.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Investigating",
                "type": "status_page_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageTemplateDeletedV1": {
        "example": {
          "action": "status_page_template.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Investigating",
              "type": "status_page_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page_template.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Investigating",
                "type": "status_page_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsStatusPageTemplateUpdatedV1": {
        "example": {
          "action": "status_page_template.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Investigating",
              "type": "status_page_template"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "status_page_template.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Investigating",
                "type": "status_page_template"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTeamRoleCreatedV1": {
        "example": {
          "action": "team_role.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Tech lead",
              "type": "team_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "team_role.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Tech lead",
                "type": "team_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTeamRoleDeletedV1": {
        "example": {
          "action": "team_role.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Tech lead",
              "type": "team_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "team_role.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Tech lead",
                "type": "team_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTeamRoleUpdatedV1": {
        "example": {
          "action": "team_role.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Tech lead",
              "type": "team_role"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "team_role.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Tech lead",
                "type": "team_role"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTeamSettingsUpdatedV1": {
        "example": {
          "action": "team_settings.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Team Settings",
              "type": "team_settings"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "team_settings.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Team Settings",
                "type": "team_settings"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTelemetryDataSourceInstalledV1": {
        "example": {
          "action": "telemetry_data_source.installed",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Grafana Cloud",
              "type": "telemetry_data_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "telemetry_data_source.installed",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Grafana Cloud",
                "type": "telemetry_data_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTelemetryDataSourceUninstalledV1": {
        "example": {
          "action": "telemetry_data_source.uninstalled",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Grafana Cloud",
              "type": "telemetry_data_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "telemetry_data_source.uninstalled",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Grafana Cloud",
                "type": "telemetry_data_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsTelemetryDataSourceWriteAccessGrantedV1": {
        "example": {
          "action": "telemetry_data_source.write_access_granted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "tools": "create_issue:chat=execute, delete_issue:chat=execute"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Grafana Cloud",
              "type": "telemetry_data_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "telemetry_data_source.write_access_granted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogTelemetryDataSourceWriteAccessMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Grafana Cloud",
                "type": "telemetry_data_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsTelemetryDataSourceWriteAccessRevokedV1": {
        "example": {
          "action": "telemetry_data_source.write_access_revoked",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "tools": "create_issue:chat=execute, delete_issue:chat=execute"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Grafana Cloud",
              "type": "telemetry_data_source"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "telemetry_data_source.write_access_revoked",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogTelemetryDataSourceWriteAccessMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Grafana Cloud",
                "type": "telemetry_data_source"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsTimelineItemDeletedV1": {
        "example": {
          "action": "timeline_item.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Timeline item (01FCNDV6P870EA6S7TK1DSYDG0)",
              "type": "timeline_item"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "timeline_item.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Timeline item (01FCNDV6P870EA6S7TK1DSYDG0)",
                "type": "timeline_item"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsUserCreatedV1": {
        "example": {
          "action": "user.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "user.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsUserDeactivatedV1": {
        "example": {
          "action": "user.deactivated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "user.deactivated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsUserLoggedInV1": {
        "example": {
          "action": "user.logged_in",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "login_method": "slack_oidc"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "user.logged_in",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogUserLoggedInMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsUserReinstatedV1": {
        "example": {
          "action": "user.reinstated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "user.reinstated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsUserRoleMembershipsUpdatedV1": {
        "example": {
          "action": "user.role_memberships_updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "metadata": {
            "after_base_role_slug": "owner",
            "after_custom_role_slugs": "engineering,data",
            "before_base_role_slug": "admin",
            "before_custom_role_slugs": "engineering,security"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "user.role_memberships_updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogUserRoleMembershipChangedMetadataV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context",
          "metadata"
        ],
        "type": "object"
      },
      "AuditLogsUserUpdatedV1": {
        "example": {
          "action": "user.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Bob the builder",
              "type": "user"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "user.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Bob the builder",
                "type": "user"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsWorkflowCreatedV1": {
        "example": {
          "action": "workflow.created",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Nudge to write a postmortem",
              "type": "workflow"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "workflow.created",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Nudge to write a postmortem",
                "type": "workflow"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsWorkflowDeletedV1": {
        "example": {
          "action": "workflow.deleted",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Nudge to write a postmortem",
              "type": "workflow"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "workflow.deleted",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Nudge to write a postmortem",
                "type": "workflow"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogsWorkflowUpdatedV1": {
        "example": {
          "action": "workflow.updated",
          "actor": {
            "id": "01FCNDV6P870EA6S7TK1DSYDG0",
            "metadata": {
              "user_base_role_slug": "admin",
              "user_custom_role_slugs": "engineering,security"
            },
            "name": "John Doe",
            "type": "user"
          },
          "context": {
            "location": "1.2.3.4",
            "user_agent": "Chrome/91.0.4472.114"
          },
          "occurred_at": "2021-08-17T13:28:57.801578Z",
          "targets": [
            {
              "id": "01FCNDV6P870EA6S7TK1DSYDG0",
              "name": "Nudge to write a postmortem",
              "type": "workflow"
            }
          ],
          "version": 1
        },
        "properties": {
          "action": {
            "description": "The type of log entry that this is",
            "example": "workflow.updated",
            "type": "string"
          },
          "actor": {
            "$ref": "#/components/schemas/AuditLogActorV2"
          },
          "context": {
            "$ref": "#/components/schemas/AuditLogEntryContextV2"
          },
          "occurred_at": {
            "description": "When the entry occurred",
            "example": "2021-08-17T13:28:57.801578Z",
            "format": "date-time",
            "type": "string"
          },
          "targets": {
            "description": "The custom field that was created",
            "example": [
              {
                "id": "01FCNDV6P870EA6S7TK1DSYDG0",
                "name": "Nudge to write a postmortem",
                "type": "workflow"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AuditLogTargetV2"
            },
            "type": "array"
          },
          "version": {
            "description": "Which version the event is",
            "example": 1,
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "action",
          "occurred_at",
          "version",
          "actor",
          "targets",
          "context"
        ],
        "type": "object"
      },
      "AuditLogActorV2": {
        "example": {
          "id": "01FCNDV6P870EA6S7TK1DSYDG0",
          "metadata": {
            "user_base_role_slug": "admin",
            "user_custom_role_slugs": "engineering,security"
          },
          "name": "John Doe",
          "type": "user"
        },
        "properties": {
          "id": {
            "description": "The ID of the actor",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0",
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/AuditLogActorMetadataV2"
          },
          "name": {
            "description": "The name of the actor",
            "example": "John Doe",
            "type": "string"
          },
          "type": {
            "description": "The type of actor",
            "enum": [
              "user",
              "system",
              "api_key",
              "workflow",
              "external_resource"
            ],
            "example": "user",
            "type": "string"
          }
        },
        "required": [
          "id",
          "type"
        ],
        "type": "object"
      },
      "AuditLogEntryContextV2": {
        "example": {
          "location": "1.2.3.4",
          "user_agent": "Chrome/91.0.4472.114"
        },
        "properties": {
          "location": {
            "description": "The location of the actor that performed this action",
            "example": "1.2.3.4",
            "type": "string"
          },
          "user_agent": {
            "description": "The user agent of the actor that performed this action",
            "example": "Chrome/91.0.4472.114",
            "type": "string"
          }
        },
        "required": [
          "location"
        ],
        "type": "object"
      },
      "AuditLogTargetV2": {
        "example": {
          "id": "01FCNDV6P870EA6S7TK1DSYDG0",
          "name": "John Doe",
          "type": "user"
        },
        "properties": {
          "id": {
            "description": "The ID of the target",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0",
            "type": "string"
          },
          "name": {
            "description": "The name of the target",
            "example": "John Doe",
            "type": "string"
          },
          "type": {
            "description": "The type of target",
            "enum": [
              "api_key",
              "alert",
              "alert_chat_message_template",
              "alert_route",
              "alert_schema",
              "alert_source",
              "alert_priority",
              "announcement_rule",
              "announcement_post_template",
              "catalog_type",
              "catalog_entry",
              "catalog_attribute",
              "connector_config",
              "custom_field",
              "debrief_invite_rule",
              "escalation",
              "escalation_path",
              "follow_up_category",
              "follow_up_priority",
              "holiday_user_feed",
              "hris_time_off_policy",
              "incident",
              "incident_call_transcription_session",
              "incident_call_setting",
              "incident_duration_metric",
              "incident_template",
              "maintenance_window",
              "incident_role",
              "incident_status",
              "incident_timestamp",
              "incident_timestamp_set_by_rule",
              "incident_type",
              "integration",
              "internal_status_page",
              "ip_allowlist",
              "nudge",
              "on_call_notification_method",
              "organisation",
              "organisation_settings",
              "schedule_override",
              "schedule_sync_rule",
              "schedule_sync_target",
              "policy",
              "policy_report_schedule",
              "post_incident_task",
              "postmortem_template",
              "postmortem_template_section",
              "private_incident_membership",
              "rbac_role",
              "scim_group",
              "schedule",
              "team_role",
              "secret",
              "severity",
              "status_page",
              "status_page_sub_page",
              "status_page_template",
              "team_settings",
              "telemetry_data_source",
              "user",
              "workflow",
              "activity_log",
              "timeline_item",
              "on_call_upsell_request"
            ],
            "example": "user",
            "type": "string"
          }
        },
        "required": [
          "id",
          "type"
        ],
        "type": "object"
      },
      "AuditLogAnnouncementPostTemplateOwningTeamsMetadataV2": {
        "example": {
          "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
          "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
        },
        "properties": {
          "after_owning_team_ids": {
            "description": "Catalog entry IDs of the owning teams after the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "type": "string"
          },
          "before_owning_team_ids": {
            "description": "Catalog entry IDs of the owning teams before the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "type": "string"
          }
        },
        "required": [
          "before_owning_team_ids",
          "after_owning_team_ids"
        ],
        "type": "object"
      },
      "AuditLogAnnouncementRuleMetadataV2": {
        "example": {
          "after_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
          "after_private_incident_scope": "owning_teams",
          "before_owning_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
          "before_private_incident_scope": "none"
        },
        "properties": {
          "after_owning_team_ids": {
            "description": "Catalog entry IDs of the owning teams after the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "type": "string"
          },
          "after_private_incident_scope": {
            "description": "Which private incidents the rule acts on after the change (all, owning_teams, none)",
            "example": "owning_teams",
            "type": "string"
          },
          "before_owning_team_ids": {
            "description": "Catalog entry IDs of the owning teams before the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "type": "string"
          },
          "before_private_incident_scope": {
            "description": "Which private incidents the rule acted on before the change (all, owning_teams, none; empty on create)",
            "example": "none",
            "type": "string"
          }
        },
        "required": [
          "before_owning_team_ids",
          "after_owning_team_ids",
          "before_private_incident_scope",
          "after_private_incident_scope"
        ],
        "type": "object"
      },
      "AuditLogCatalogAttributeUpdatedMetadataV2": {
        "example": {
          "after_values": [
            "01FCNDV6P870EA6S7TK1DSYDG0",
            "01FCNDV6P870EA6S7TK1DSYDG2"
          ],
          "before_values": [
            "01FCNDV6P870EA6S7TK1DSYDG0",
            "01FCNDV6P870EA6S7TK1DSYDG1"
          ]
        },
        "properties": {
          "after_values": {
            "description": "The user IDs that are in the attribute after the change",
            "example": [
              "01FCNDV6P870EA6S7TK1DSYDG0",
              "01FCNDV6P870EA6S7TK1DSYDG2"
            ],
            "items": {
              "example": "abc123",
              "type": "string"
            },
            "type": "array"
          },
          "before_values": {
            "description": "The user IDs that were in the attribute before the change",
            "example": [
              "01FCNDV6P870EA6S7TK1DSYDG0",
              "01FCNDV6P870EA6S7TK1DSYDG1"
            ],
            "items": {
              "example": "abc123",
              "type": "string"
            },
            "type": "array"
          }
        },
        "required": [
          "before_values",
          "after_values"
        ],
        "type": "object"
      },
      "AuditLogCatalogAttributeUpdatedMetadataV2V2": {
        "example": {
          "after_values": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
          "before_values": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
        },
        "properties": {
          "after_values": {
            "description": "The user IDs that were in the attribute before the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "type": "string"
          },
          "before_values": {
            "description": "The user IDs that were in the attribute before the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "type": "string"
          }
        },
        "required": [
          "before_values",
          "after_values"
        ],
        "type": "object"
      },
      "AuditLogEmailOtpLoginSettingUpdatedMetadataV2": {
        "example": {
          "enabled": "true"
        },
        "properties": {
          "enabled": {
            "description": "Whether email OTP login is enabled after the update",
            "example": "true",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogHrisTimeOffPolicyUpdatedMetadataV2": {
        "example": {
          "behaviour": "visible",
          "connection_name": "default",
          "previous_behaviour": "private",
          "provider_slug": "bamboohr"
        },
        "properties": {
          "behaviour": {
            "description": "The visibility behaviour after the update (private, visible, or ignore)",
            "example": "visible",
            "type": "string"
          },
          "connection_name": {
            "description": "The name of the Merge.dev connection the policy belongs to",
            "example": "default",
            "type": "string"
          },
          "previous_behaviour": {
            "description": "The visibility behaviour before the update (private, visible, or ignore)",
            "example": "private",
            "type": "string"
          },
          "provider_slug": {
            "description": "The Merge.dev HRIS provider slug (e.g. bamboohr, hibob)",
            "example": "bamboohr",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogIncidentTypeDefaultTeamsMetadataV2": {
        "example": {
          "after_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
          "before_default_team_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1"
        },
        "properties": {
          "after_default_team_ids": {
            "description": "Catalog entry IDs of the default teams after the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG2",
            "type": "string"
          },
          "before_default_team_ids": {
            "description": "Catalog entry IDs of the default teams before the change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "type": "string"
          }
        },
        "required": [
          "before_default_team_ids",
          "after_default_team_ids"
        ],
        "type": "object"
      },
      "AuditLogIPAllowlistUpdatedMetadataV2": {
        "example": {
          "additions": "[\"192.0.2.0\",\"192.0.2.0/24\"]",
          "additions_count": "2",
          "enabled": "true",
          "removals": "[\"192.0.2.1\"]",
          "removals_count": "1",
          "version": "2"
        },
        "properties": {
          "additions": {
            "description": "A comma-separated array of newly added IPs/CIDRs. Max 500 characters",
            "example": "[\"192.0.2.0\",\"192.0.2.0/24\"]",
            "type": "string"
          },
          "additions_count": {
            "description": "The number of IPs/CIDRs added to the allowlist",
            "example": "2",
            "type": "string"
          },
          "enabled": {
            "description": "Whether or not the IP allowlist is enabled after the update",
            "example": "true",
            "type": "string"
          },
          "removals": {
            "description": "A comma-separated array of newly removed IPs/CIDRs. Max 500 characters",
            "example": "[\"192.0.2.1\"]",
            "type": "string"
          },
          "removals_count": {
            "description": "The number of IPs/CIDRs removed from the allowlist",
            "example": "1",
            "type": "string"
          },
          "version": {
            "description": "The version of the IP allowlist after the update",
            "example": "2",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogOnCallNotificationMethodMetadataV2": {
        "example": {
          "target_user": "01JV9EMFCFRGCFVNDWTBKT2EBR"
        },
        "properties": {
          "target_user": {
            "description": "The user whose notification method was created or destroyed",
            "example": "01JV9EMFCFRGCFVNDWTBKT2EBR",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogOnCallUpsellRequestedMetadataV2": {
        "example": {
          "gate_count_after": "15",
          "gate_count_before": "10",
          "requested_by_user_id": "01JV9EMFCFRGCFVNDWTBKT2EBR",
          "seats_added": "5"
        },
        "properties": {
          "gate_count_after": {
            "description": "The on-call seat allowance after the upsell",
            "example": "15",
            "type": "string"
          },
          "gate_count_before": {
            "description": "The on-call seat allowance before the upsell",
            "example": "10",
            "type": "string"
          },
          "requested_by_user_id": {
            "description": "The ID of the user who requested the upsell",
            "example": "01JV9EMFCFRGCFVNDWTBKT2EBR",
            "type": "string"
          },
          "seats_added": {
            "description": "The number of on-call seats added by this upsell",
            "example": "5",
            "type": "string"
          }
        },
        "required": [
          "seats_added",
          "gate_count_before",
          "gate_count_after",
          "requested_by_user_id"
        ],
        "type": "object"
      },
      "AuditLogOrganisationSettingsUpdatedMetadataV2": {
        "example": {
          "default_timezone": "Europe/London"
        },
        "properties": {
          "default_timezone": {
            "description": "The default timezone that was set",
            "example": "Europe/London",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPolicyMetadataV2": {
        "example": {
          "run_on_private_incidents": "true"
        },
        "properties": {
          "run_on_private_incidents": {
            "description": "Whether the policy evaluates private incidents",
            "example": "true",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPrivateAlertAccessAttemptedMetadataV2": {
        "example": {
          "outcome": "granted"
        },
        "properties": {
          "outcome": {
            "description": "Whether or not the user was able to access the private alert",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPrivateEscalationAccessAttemptedMetadataV2": {
        "example": {
          "outcome": "granted"
        },
        "properties": {
          "outcome": {
            "description": "Whether or not the user was able to access the private escalation",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPrivateIncidentAccessAttemptedMetadataV2": {
        "example": {
          "outcome": "granted"
        },
        "properties": {
          "outcome": {
            "description": "Whether or not the user was able to access the private incident",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPrivateIncidentAccessAttemptedMetadataV2V2": {
        "example": {
          "access_type": "N/A",
          "outcome": "granted",
          "team_id": "01G0J1EXE7AXZ2C93K61WBPYEH"
        },
        "properties": {
          "access_type": {
            "description": "How the user was granted access to the private incident, or N/A when access was denied",
            "enum": [
              "N/A",
              "global_access",
              "direct_membership",
              "team_membership"
            ],
            "example": "N/A",
            "type": "string"
          },
          "outcome": {
            "description": "Whether or not the user was able to access the private incident",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          },
          "team_id": {
            "description": "The ID of the team through which access was granted, or N/A when access_type is not team_membership",
            "example": "01G0J1EXE7AXZ2C93K61WBPYEH",
            "type": "string"
          }
        },
        "required": [
          "outcome",
          "access_type",
          "team_id"
        ],
        "type": "object"
      },
      "AuditLogPrivateInsightsExportedMetadataV2": {
        "example": {
          "measure": "alert_volume",
          "outcome": "granted"
        },
        "properties": {
          "measure": {
            "description": "Name of the Insights measure",
            "example": "alert_volume",
            "type": "string"
          },
          "outcome": {
            "description": "Whether or not the user was able to access private Insights data",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPrivateInsightsMeasureQueriedMetadataV2": {
        "example": {
          "measure": "alert_volume",
          "outcome": "granted"
        },
        "properties": {
          "measure": {
            "description": "Name of the Insights measure",
            "example": "alert_volume",
            "type": "string"
          },
          "outcome": {
            "description": "Whether or not the user was able to access private Insights data",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogPrivateInsightsUnderlyingDataQueriedMetadataV2": {
        "example": {
          "measure": "alert_volume",
          "outcome": "granted"
        },
        "properties": {
          "measure": {
            "description": "Name of the Insights measure",
            "example": "alert_volume",
            "type": "string"
          },
          "outcome": {
            "description": "Whether or not the user was able to access private Insights data",
            "enum": [
              "granted",
              "denied"
            ],
            "example": "granted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogQrCodeMobileLoginSettingUpdatedMetadataV2": {
        "example": {
          "enabled": "true"
        },
        "properties": {
          "enabled": {
            "description": "Whether QR code mobile login is enabled after the update",
            "example": "true",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogScheduleOverrideMetadataV2": {
        "example": {
          "after_user_ids": "01FCNDV6P870EA6S7TK1DSYDG2",
          "after_user_names": "Nicole C",
          "before_user_ids": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
          "before_user_names": "Nicole A,Nicole B",
          "end_at": "2026-03-02T08:00:00Z",
          "start_at": "2026-03-01T18:00:00Z"
        },
        "properties": {
          "after_user_ids": {
            "description": "User IDs of users on-call after the override change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG2",
            "type": "string"
          },
          "after_user_names": {
            "description": "Names of users on-call after the override change, comma separated",
            "example": "Nicole C",
            "type": "string"
          },
          "before_user_ids": {
            "description": "User IDs of users on-call before the override change, comma separated",
            "example": "01FCNDV6P870EA6S7TK1DSYDG0,01FCNDV6P870EA6S7TK1DSYDG1",
            "type": "string"
          },
          "before_user_names": {
            "description": "Names of users on-call before the override change, comma separated",
            "example": "Nicole A,Nicole B",
            "type": "string"
          },
          "end_at": {
            "description": "Override end time in the schedule's local timezone",
            "example": "2026-03-02T08:00:00Z",
            "type": "string"
          },
          "start_at": {
            "description": "Override start time in the schedule's local timezone",
            "example": "2026-03-01T18:00:00Z",
            "type": "string"
          }
        },
        "required": [
          "before_user_ids",
          "before_user_names",
          "after_user_ids",
          "after_user_names",
          "start_at",
          "end_at"
        ],
        "type": "object"
      },
      "AuditLogUserSCIMGroupMappingChangedMetadataV2": {
        "example": {
          "after_base_role_slug": "owner",
          "after_custom_role_slugs": "engineering,data",
          "before_base_role_slug": "admin",
          "before_custom_role_slugs": "engineering,security"
        },
        "properties": {
          "after_base_role_slug": {
            "description": "The base role slug of this SCIM group after the mapping was changed (if any)",
            "example": "owner",
            "type": "string"
          },
          "after_custom_role_slugs": {
            "description": "The custom role slugs of this SCIM group after the mapping was changed (if any), separated by commas",
            "example": "engineering,data",
            "type": "string"
          },
          "before_base_role_slug": {
            "description": "The base role slug assigned to this SCIM group before the mapping was changed (if any)",
            "example": "admin",
            "type": "string"
          },
          "before_custom_role_slugs": {
            "description": "The custom role slugs of this SCIM group before the mapping was changed (if any), separated by commas",
            "example": "engineering,security",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AuditLogSCIMGroupSeatMappingChangedMetadataV2": {
        "example": {
          "after_seat_types": "[full_access, responder_access]",
          "before_seat_types": "[full_access]"
        },
        "properties": {
          "after_seat_types": {
            "description": "The seat types assigned to this SCIM group after the mapping was changed",
            "example": "[full_access, responder_access]",
            "type": "string"
          },
          "before_seat_types": {
            "description": "The seat types assigned to this SCIM group before the mapping was changed",
            "example": "[full_access]",
            "type": "string"
          }
        },
        "required": [
          "before_seat_types",
          "after_seat_types"
        ],
        "type": "object"
      },
      "AuditLogTelemetryDataSourceWriteAccessMetadataV2": {
        "example": {
          "tools": "create_issue:chat=execute, delete_issue:chat=execute"
        },
        "properties": {
          "tools": {
            "description": "The tools whose permission changed, comma separated",
            "example": "create_issue:chat=execute, delete_issue:chat=execute",
            "type": "string"
          }
        },
        "required": [
          "tools"
        ],
        "type": "object"
      },
      "AuditLogUserLoggedInMetadataV2": {
        "example": {
          "login_method": "slack_oidc"
        },
        "properties": {
          "login_method": {
            "description": "The method the user authenticated with",
            "example": "slack_oidc",
            "type": "string"
          }
        },
        "required": [
          "login_method"
        ],
        "type": "object"
      },
      "AuditLogUserRoleMembershipChangedMetadataV2": {
        "example": {
          "after_base_role_slug": "owner",
          "after_custom_role_slugs": "engineering,data",
          "before_base_role_slug": "admin",
          "before_custom_role_slugs": "engineering,security"
        },
        "properties": {
          "after_base_role_slug": {
            "description": "The base role slug of the user after their role memberships changed",
            "example": "owner",
            "type": "string"
          },
          "after_custom_role_slugs": {
            "description": "The custom role slugs of the user after their role memberships changed, separated by commas",
            "example": "engineering,data",
            "type": "string"
          },
          "before_base_role_slug": {
            "description": "The base role slug of the user before their role memberships changed",
            "example": "admin",
            "type": "string"
          },
          "before_custom_role_slugs": {
            "description": "The custom role slugs of the user before their role memberships changed, separated by commas",
            "example": "engineering,security",
            "type": "string"
          }
        },
        "required": [
          "before_base_role_slug",
          "before_custom_role_slugs",
          "after_base_role_slug",
          "after_custom_role_slugs"
        ],
        "type": "object"
      },
      "AuditLogActorMetadataV2": {
        "example": {
          "api_key_roles": "abc123",
          "external_resource_external_id": "q1234",
          "external_resource_type": "pager_duty_incident",
          "user_base_role_slug": "admin",
          "user_custom_role_slugs": "engineering,security"
        },
        "properties": {
          "api_key_roles": {
            "description": "The roles that the API key has, separated by commas (if it's an API key actor)",
            "example": "abc123",
            "type": "string"
          },
          "external_resource_external_id": {
            "description": "The ID of the external resource in the 3rd party system (if it's an external resource actor)",
            "example": "q1234",
            "type": "string"
          },
          "external_resource_type": {
            "description": "The type of the external resource (if it's an external resource actor)",
            "example": "pager_duty_incident",
            "type": "string"
          },
          "user_base_role_slug": {
            "description": "The base role slug of the user (if it's a user actor)",
            "example": "admin",
            "type": "string"
          },
          "user_custom_role_slugs": {
            "description": "The custom role slugs of the user, separated by commas (if it's a user actor)",
            "example": "engineering,security",
            "type": "string"
          }
        },
        "type": "object"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "API key from your incident.io dashboard (Settings → API keys)"
      }
    }
  }
}
