Global Relay · Schema

Global Relay File

A file attachment uploaded to the Global Relay Archive, referenced by conversations, emails, voice records, or event cards.

ArchivingComplianceData RetentionEmail SecurityRegulatory Compliance

Properties

Name Type Description
fileId string Unique identifier for the file
fileName string Original filename
contentType string MIME type of the file
status string Status of the file upload
View JSON Schema on GitHub

JSON Schema

global-relay-file.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "global-relay-file.json",
  "title": "Global Relay File",
  "description": "A file attachment uploaded to the Global Relay Archive, referenced by conversations, emails, voice records, or event cards.",
  "type": "object",
  "required": [
    "fileId"
  ],
  "properties": {
    "fileId": {
      "type": "string",
      "description": "Unique identifier for the file"
    },
    "fileName": {
      "type": "string",
      "description": "Original filename"
    },
    "contentType": {
      "type": "string",
      "description": "MIME type of the file"
    },
    "status": {
      "type": "string",
      "description": "Status of the file upload"
    }
  }
}