Render · Schema

notificationOverrideWithCursor

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
override object
cursor object
View JSON Schema on GitHub

JSON Schema

render-notificationoverridewithcursor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/notificationOverrideWithCursor",
  "title": "notificationOverrideWithCursor",
  "required": [
    "override",
    "cursor"
  ],
  "type": "object",
  "properties": {
    "override": {
      "type": "object",
      "required": [
        "type",
        "serviceId",
        "previewNotificationsEnabled",
        "notificationsToSend"
      ],
      "properties": {
        "serviceId": {
          "type": "string"
        },
        "previewNotificationsEnabled": {
          "type": "string",
          "enum": [
            "default",
            "false",
            "true"
          ]
        },
        "notificationsToSend": {
          "type": "string",
          "enum": [
            "default",
            "none",
            "failure",
            "all"
          ]
        }
      }
    },
    "cursor": {
      "$ref": "#/components/schemas/cursor"
    }
  }
}