Netlify · Schema

accountSetup

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
name string
type_id string
payment_method_id string
period string
extra_seats_block integer
View JSON Schema on GitHub

JSON Schema

netlify-accountsetup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accountSetup",
  "title": "accountSetup",
  "required": [
    "name",
    "type_id"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "type_id": {
      "type": "string"
    },
    "payment_method_id": {
      "type": "string"
    },
    "period": {
      "type": "string",
      "enum": [
        "monthly",
        "yearly"
      ]
    },
    "extra_seats_block": {
      "type": "integer"
    }
  }
}