{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Customer", "title": "Customer", "type": "object", "description": "A customer account in Fastly that owns services and manages users.", "properties": { "id": { "type": "string", "description": "The alphanumeric string identifying the customer." }, "name": { "type": "string", "description": "The name of the customer account." }, "owner_id": { "type": "string", "description": "The alphanumeric string identifying the account owner." }, "pricing_plan": { "type": "string", "description": "The pricing plan associated with the customer." }, "can_configure_wordpress": { "type": "boolean", "description": "Whether the customer can configure WordPress." }, "legal_contact_id": { "type": "string", "nullable": true, "description": "The ID of the legal contact for the account." }, "technical_contact_id": { "type": "string", "nullable": true, "description": "The ID of the technical contact for the account." }, "security_contact_id": { "type": "string", "nullable": true, "description": "The ID of the security contact for the account." }, "created_at": { "type": "string", "format": "date-time", "description": "The date and time the customer was created." }, "updated_at": { "type": "string", "format": "date-time", "description": "The date and time the customer was last updated." } } }