AhaSend · JSON Structure

Openapi V2 Retention Structure

Retention schema from AhaSend API

Type: object Properties: 2
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

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

Properties

metadata data

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/ahasend/refs/heads/main/json-structure/openapi-v2-retention-structure.json",
  "name": "Retention",
  "description": "Retention schema from AhaSend API",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "int32",
      "nullable": true,
      "description": "Number of days to retain metadata",
      "minimum": 1,
      "maximum": 30,
      "example": 1
    },
    "data": {
      "type": "int32",
      "nullable": true,
      "description": "Number of days to retain data",
      "minimum": 0,
      "maximum": 30,
      "example": 1
    }
  },
  "example": {
    "metadata": 1,
    "data": 0
  }
}