Ramp · Schema

Ramp User

Schema describing a user within a Ramp organization.

FinanceSpend ManagementCorporate CardsExpense ManagementAccounts PayableBill PayAccountingReimbursements

Properties

Name Type Description
id string
email string
first_name string
last_name string
role string
department_id string
location_id string
is_manager boolean
manager_id string
status string
View JSON Schema on GitHub

JSON Schema

ramp-user.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ramp/refs/heads/main/json-schema/ramp-user.json",
  "title": "Ramp User",
  "description": "Schema describing a user within a Ramp organization.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "email": { "type": "string", "format": "email" },
    "first_name": { "type": "string" },
    "last_name": { "type": "string" },
    "role": { "type": "string", "enum": ["BUSINESS_OWNER", "BUSINESS_ADMIN", "BUSINESS_USER", "BUSINESS_BOOKKEEPER", "IT_ADMIN"] },
    "department_id": { "type": "string" },
    "location_id": { "type": "string" },
    "is_manager": { "type": "boolean" },
    "manager_id": { "type": "string" },
    "status": { "type": "string", "enum": ["USER_ACTIVE", "USER_SUSPENDED", "USER_INACTIVE"] }
  },
  "required": ["id", "email"]
}