Netlify · Schema
user
CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| uid | string | |
| full_name | string | |
| avatar_url | string | |
| string | ||
| affiliate_id | string | |
| site_count | integer | |
| created_at | string | |
| last_login | string | |
| login_providers | array | |
| onboarding_progress | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/user",
"title": "user",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"uid": {
"type": "string"
},
"full_name": {
"type": "string"
},
"avatar_url": {
"type": "string"
},
"email": {
"type": "string"
},
"affiliate_id": {
"type": "string"
},
"site_count": {
"type": "integer",
"format": "int64"
},
"created_at": {
"type": "string",
"format": "dateTime"
},
"last_login": {
"type": "string",
"format": "dateTime"
},
"login_providers": {
"type": "array",
"items": {
"type": "string"
}
},
"onboarding_progress": {
"type": "object",
"properties": {
"slides": {
"type": "string"
}
}
}
}
}