{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "capacity": {
      "description": "Capacity override. Set null to reset to defaults.",
      "anyOf": [
        {
          "type": "integer",
          "minimum": 100,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    },
    "bits": {
      "description": "Bits-per-status override. Set null to reset to defaults.",
      "anyOf": [
        {
          "anyOf": [
            {
              "type": "number",
              "const": 1
            },
            {
              "type": "number",
              "const": 2
            },
            {
              "type": "number",
              "const": 4
            },
            {
              "type": "number",
              "const": 8
            }
          ]
        },
        {
          "type": "null"
        }
      ]
    },
    "ttl": {
      "description": "JWT TTL override in seconds. Set null to reset.",
      "anyOf": [
        {
          "type": "integer",
          "minimum": 60,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    },
    "immediateUpdate": {
      "description": "Immediate regeneration toggle. Set null to reset.",
      "type": [
        "boolean",
        "null"
      ]
    },
    "enableAggregation": {
      "description": "Aggregation URI toggle. Set null to reset.",
      "type": [
        "boolean",
        "null"
      ]
    }
  },
  "additionalProperties": false,
  "$id": "./UpdateStatusListConfigDto.schema.json",
  "title": "UpdateStatusListConfigDto"
}
