Apache James · JSON Structure

Webadmin Rest Api Quota Structure

Storage and message quota configuration

Type: object Properties: 2
EmailIMAPJavaJMAPMail ServerOpen SourceSMTP

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

Properties

count size

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

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-james/refs/heads/main/json-structure/webadmin-rest-api-quota-structure.json",
  "name": "Quota",
  "description": "Storage and message quota configuration",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Maximum number of messages (null for unlimited)",
      "example": 10000
    },
    "size": {
      "type": "integer",
      "description": "Maximum storage size in bytes (null for unlimited)",
      "example": 1073741824
    }
  }
}