{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServiceAccount", "title": "ServiceAccount", "type": "object", "properties": { "id": { "type": "integer", "description": "Service account unique identifier" }, "name": { "type": "string", "description": "Service account display name" }, "username": { "type": "string", "description": "Service account username for basic auth" }, "organizationId": { "type": "integer", "description": "Parent organization ID" }, "createdAt": { "type": "string", "format": "date-time", "description": "When the service account was created" } } }