Netlify · Schema

envVarUser

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string The user's unique identifier
full_name string The user's full name (first and last)
email string The user's email address
avatar_url string A URL pointing to the user's avatar
View JSON Schema on GitHub

JSON Schema

netlify-envvaruser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/envVarUser",
  "title": "envVarUser",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The user's unique identifier",
      "x-faker": "datatype.number"
    },
    "full_name": {
      "type": "string",
      "description": "The user's full name (first and last)",
      "x-faker": "name.findName"
    },
    "email": {
      "type": "string",
      "description": "The user's email address",
      "x-faker": "internet.email"
    },
    "avatar_url": {
      "type": "string",
      "description": "A URL pointing to the user's avatar",
      "x-faker": "internet.avatar"
    }
  }
}