SerenAI

Pay Per Call Agentic Commerce

OrganizationOtpStatus

Properties

PropertyTypeRequiredDescription
enrollment_status OrganizationOtpEnrollmentStatus Yes
is_scope_protected boolean Yes
locked_until string,null No
organization_id string Yes
scope OrganizationOtpScope Yes
user_id string Yes
verification_required boolean Yes
verification_ttl OrganizationOtpVerificationTtl Yes
verified_until string,null No
View JSON Schema
{
  "type": "object",
  "required": [
    "organization_id",
    "user_id",
    "scope",
    "is_scope_protected",
    "enrollment_status",
    "verification_required",
    "verification_ttl"
  ],
  "properties": {
    "enrollment_status": {
      "$ref": "#/components/schemas/OrganizationOtpEnrollmentStatus"
    },
    "is_scope_protected": {
      "type": "boolean"
    },
    "locked_until": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "organization_id": {
      "type": "string",
      "format": "uuid"
    },
    "scope": {
      "$ref": "#/components/schemas/OrganizationOtpScope"
    },
    "user_id": {
      "type": "string",
      "format": "uuid"
    },
    "verification_required": {
      "type": "boolean"
    },
    "verification_ttl": {
      "$ref": "#/components/schemas/OrganizationOtpVerificationTtl"
    },
    "verified_until": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    }
  }
}