Render · Schema

owner

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
id string
name string
email string
ipAllowList array
twoFactorAuthEnabled boolean Whether two-factor authentication is enabled for the owner. Only present if `type` is `user`.
type string
View JSON Schema on GitHub

JSON Schema

render-owner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/owner",
  "title": "owner",
  "type": "object",
  "required": [
    "id",
    "name",
    "email",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "ipAllowList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/cidrBlockAndDescription"
      }
    },
    "twoFactorAuthEnabled": {
      "type": "boolean",
      "description": "Whether two-factor authentication is enabled for the owner. Only present if `type` is `user`."
    },
    "type": {
      "type": "string",
      "enum": [
        "user",
        "team"
      ]
    }
  }
}