MuleSoft · Schema

OrganizationUpdate

Fields that can be updated on an organization

API GatewayAPI ManagementEnterpriseIntegration

Properties

Name Type Description
name string Display name of the organization
ownerId string User ID of the new organization owner
sessionTimeout integer Session timeout in minutes
mfaRequired boolean Whether multi-factor authentication is required
View JSON Schema on GitHub

JSON Schema

mulesoft-organizationupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationUpdate",
  "title": "OrganizationUpdate",
  "type": "object",
  "description": "Fields that can be updated on an organization",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the organization",
      "example": "Example Title"
    },
    "ownerId": {
      "type": "string",
      "format": "uuid",
      "description": "User ID of the new organization owner",
      "example": "500123"
    },
    "sessionTimeout": {
      "type": "integer",
      "description": "Session timeout in minutes",
      "minimum": 15,
      "maximum": 180,
      "example": 10
    },
    "mfaRequired": {
      "type": "boolean",
      "description": "Whether multi-factor authentication is required",
      "example": true
    }
  }
}