{ "$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" } } } ] }