SerenAI

Pay Per Call Agentic Commerce

OrganizationOtpPolicy

Properties

PropertyTypeRequiredDescription
default_verification_ttl OrganizationOtpVerificationTtl Yes
enabled_scopes Array<OrganizationOtpScope> Yes
organization_id string Yes
ttl_overrides Array<OrganizationOtpScopePolicy> No
updated_at string Yes
View JSON Schema
{
  "type": "object",
  "required": [
    "organization_id",
    "enabled_scopes",
    "default_verification_ttl",
    "updated_at"
  ],
  "properties": {
    "default_verification_ttl": {
      "$ref": "#/components/schemas/OrganizationOtpVerificationTtl"
    },
    "enabled_scopes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrganizationOtpScope"
      }
    },
    "organization_id": {
      "type": "string",
      "format": "uuid"
    },
    "ttl_overrides": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrganizationOtpScopePolicy"
      }
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}