Netlify · Schema

accountUpdateMemberSetup

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
role string
site_access string
site_ids array
View JSON Schema on GitHub

JSON Schema

netlify-accountupdatemembersetup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accountUpdateMemberSetup",
  "title": "accountUpdateMemberSetup",
  "type": "object",
  "properties": {
    "role": {
      "type": "string",
      "enum": [
        "Owner",
        "Developer",
        "Billing Admin",
        "Reviewer"
      ]
    },
    "site_access": {
      "type": "string",
      "enum": [
        "all",
        "none",
        "selected"
      ]
    },
    "site_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}