ilert · Schema

DeploymentPipeline

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Properties

Name Type Description
id integer
name string
integrationType string
integrationKey string
teams array
createdAt string
updatedAt string
params object
integrationUrl string
View JSON Schema on GitHub

JSON Schema

deploymentpipeline.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/DeploymentPipeline",
  "title": "DeploymentPipeline",
  "type": "object",
  "required": [
    "name",
    "integrationType"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "integrationType": {
      "type": "string"
    },
    "integrationKey": {
      "type": "string"
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "params": {
      "$ref": "#/components/schemas/DeploymentPipelineParams"
    },
    "integrationUrl": {
      "type": "string"
    }
  }
}