Skip to content

Commit

Permalink
Quota: update the limit -> hardLimit conversion in a couple more places
Browse files Browse the repository at this point in the history
This appears to just be an oversight.  Fixing up the terminology
  • Loading branch information
brong authored and neilj committed Feb 6, 2023
1 parent 6fff171 commit d22db5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/quotas/quota.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ The quota object MAY contain the following fields:

The warn limit set by this quota object, using the "resourceType" defined as unit of measure.
It can be used to send a warning to an entity about to reach the hard limit soon, but with no action taken yet. If set, it
SHOULD be lower than the "softLimit" (if present and different from null) and the "limit".
SHOULD be lower than the "softLimit" (if present and different from null) and the "hardLimit".

* softLimit: "UnsignedInt|null"

The soft limit set by this quota object, using the "resourceType" defined as unit of measure.
It can be used to still allow some operations, but refuse some others. What is allowed or not is up to the server. For example, it
could be used for blocking outgoing events of an entity (sending emails, creating calendar events, ...) while still receiving
incoming events (receiving emails, receiving calendars events, ...). If set, it SHOULD be higher than the "warnLimit"
(if present and different from null) but lower than the "limit".
(if present and different from null) but lower than the "hardLimit".

* description: "String|null"

Expand Down

0 comments on commit d22db5e

Please sign in to comment.