access_approval_group

A group of email addresses that can approve a temporary authentication request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
approvals_needed number The number of approvals needed to obtain access.
email_addresses array A list of emails that can approve the access request.
email_list_uuid string The UUID of an re-usable email list.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-approval-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_approval_group",
  "title": "access_approval_group",
  "description": "A group of email addresses that can approve a temporary authentication request.",
  "properties": {
    "approvals_needed": {
      "description": "The number of approvals needed to obtain access.",
      "example": 1,
      "minimum": 0,
      "type": "number"
    },
    "email_addresses": {
      "description": "A list of emails that can approve the access request.",
      "example": [
        "[email protected]",
        "[email protected]"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "email_list_uuid": {
      "description": "The UUID of an re-usable email list.",
      "type": "string"
    }
  },
  "required": [
    "approvals_needed"
  ],
  "type": "object"
}