CustomerAccount

A Rackspace customer account identified by RCN (Rackspace Customer Number).

CloudManaged ServicesMulticloudInfrastructureDevOps

Properties

Name Type Description
rcn string Rackspace Customer Number.
name string
status string
createdAt string
updatedAt string
customerSegment string
billingCountry string
View JSON Schema on GitHub

JSON Schema

rackspace-customer-service-customer-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/rackspace-technology/main/json-schema/rackspace-customer-service-customer-account-schema.json",
  "title": "CustomerAccount",
  "description": "A Rackspace customer account identified by RCN (Rackspace Customer Number).",
  "type": "object",
  "properties": {
    "rcn": { "type": "string", "description": "Rackspace Customer Number." },
    "name": { "type": "string" },
    "status": { "type": "string", "enum": ["ACTIVE", "INACTIVE", "SUSPENDED", "CLOSED"] },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" },
    "customerSegment": { "type": "string" },
    "billingCountry": { "type": "string" }
  },
  "required": ["rcn"]
}