Netlify · Schema

accountMembership

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
name string
slug string
type string
capabilities object
billing_name string
billing_email string
billing_details string
billing_period string
payment_method_id string
type_name string
type_id string
owner_ids array
roles_allowed array
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

netlify-accountmembership-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accountMembership",
  "title": "accountMembership",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "capabilities": {
      "type": "object",
      "properties": {
        "sites": {
          "$ref": "#/components/schemas/accountUsageCapability"
        },
        "collaborators": {
          "$ref": "#/components/schemas/accountUsageCapability"
        }
      }
    },
    "billing_name": {
      "type": "string"
    },
    "billing_email": {
      "type": "string"
    },
    "billing_details": {
      "type": "string"
    },
    "billing_period": {
      "type": "string"
    },
    "payment_method_id": {
      "type": "string"
    },
    "type_name": {
      "type": "string"
    },
    "type_id": {
      "type": "string"
    },
    "owner_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "roles_allowed": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    },
    "updated_at": {
      "type": "string",
      "format": "dateTime"
    }
  }
}