Netlify · Schema

accessToken

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
access_token string
user_id string
user_email string
created_at string
View JSON Schema on GitHub

JSON Schema

netlify-accesstoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accessToken",
  "title": "accessToken",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "access_token": {
      "type": "string"
    },
    "user_id": {
      "type": "string"
    },
    "user_email": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    }
  }
}