|  | 
|  | 1 | +import Doc from '~/components/layout/docs' | 
|  | 2 | +import { InlineCode } from '~/components/text/code' | 
|  | 3 | +import Caption from '~/components/text/caption' | 
|  | 4 | +import Card from '~/components/card' | 
|  | 5 | +import Note from '~/components/text/note' | 
|  | 6 | +import { GenericLink } from '~/components/text/link' | 
|  | 7 | +import Limits from '~/components/limits' | 
|  | 8 | + | 
|  | 9 | +export const meta = { | 
|  | 10 | +  title: 'Limits', | 
|  | 11 | +  description: 'A list of rate limits that apply on the ZEIT Now platform.', | 
|  | 12 | +  editUrl: 'pages/docs/v2/advanced/platform/limits.mdx', | 
|  | 13 | +  lastEdited: '2019-08-16T10:45:09.000Z' | 
|  | 14 | +} | 
|  | 15 | + | 
|  | 16 | +This page outlines all relevant limits on the ZEIT Now platform. | 
|  | 17 | + | 
|  | 18 | +The table consists of the following four columns: | 
|  | 19 | + | 
|  | 20 | +- **Description** - A brief description of the limit which, where relevant, will advise what type of plan it applies to. | 
|  | 21 | +- **Limit** - The amount of actions permitted within the amount of time (**Duration**) specified. | 
|  | 22 | +- **Duration** - The amount of time (seconds) in which you can perform the specified amount of actions in. Once a rate limit is hit, it will be reset after the **Duration** has expired. | 
|  | 23 | +- **Scope** - Who the limit applies to, `owner` refers to the account owner, `user` refers to an individual user on a **Team** account. | 
|  | 24 | + | 
|  | 25 | +## Examples | 
|  | 26 | + | 
|  | 27 | +Below are three examples that provide further information on how the rate limits work. | 
|  | 28 | + | 
|  | 29 | +### Project Creation | 
|  | 30 | + | 
|  | 31 | +Taking the domains deletion rate limit as an example, you are allowed to delete up to `60` domains every `60` seconds (1 minute). Should you hit the rate limit, you will need to wait another minute before deleting another domain. | 
|  | 32 | + | 
|  | 33 | +### Team Deletion | 
|  | 34 | + | 
|  | 35 | +With the team deletion rate limit, you are able to delete up to `20` teams every `3600` seconds (1 hour). Should you hit the rate limit, you will need to wait another hour before deleting another team. | 
|  | 36 | + | 
|  | 37 | +### Username Update | 
|  | 38 | + | 
|  | 39 | +For the username update rate limit, you are able to change your username up to `6` times every `604800` seconds (1 week). Should you hit the rate limit, you will need to wait another week before changing your username again. | 
|  | 40 | + | 
|  | 41 | +--- | 
|  | 42 | + | 
|  | 43 | +<Limits /> | 
|  | 44 | + | 
|  | 45 | +export default ({ children }) => <Doc meta={meta}>{children}</Doc> | 
|  | 46 | + | 
|  | 47 | +export const config = { | 
|  | 48 | +  amp: 'hybrid' | 
|  | 49 | +} | 
0 commit comments