Backupify · JSON Structure

Saas Protection Api Domain Structure

A SaaS customer domain with backup subscription information

Type: object Properties: 4
SaaS BackupData ProtectionCloud BackupMicrosoft 365Google Workspace

Domain is a JSON Structure definition published by Backupify, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

saasCustomerId externalSubscriptionId domain status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/backupify/refs/heads/main/json-structure/saas-protection-api-domain-structure.json",
  "name": "Domain",
  "description": "A SaaS customer domain with backup subscription information",
  "type": "object",
  "properties": {
    "saasCustomerId": {
      "type": "string",
      "description": "Unique SaaS customer identifier",
      "example": "cust-001"
    },
    "externalSubscriptionId": {
      "type": "string",
      "description": "External subscription identifier for seat management",
      "example": "sub-abc123"
    },
    "domain": {
      "type": "string",
      "description": "The domain name (e.g., company.onmicrosoft.com)",
      "example": "company.onmicrosoft.com"
    },
    "status": {
      "type": "string",
      "description": "Domain backup status",
      "example": "active"
    }
  }
}