iam_organization_invite

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-iam-organization-invite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/iam_organization_invite",
  "title": "iam_organization_invite",
  "allOf": [
    {
      "$ref": "#/components/schemas/iam_base"
    },
    {
      "properties": {
        "organization_is_enforcing_twofactor": {
          "default": false,
          "description": "Current status of two-factor enforcement on the organization.",
          "example": true,
          "type": "boolean"
        },
        "status": {
          "description": "Current status of the invitation.",
          "enum": [
            "pending",
            "accepted",
            "rejected",
            "canceled",
            "left",
            "expired"
          ],
          "example": "accepted",
          "type": "string"
        }
      }
    }
  ]
}