{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServicePrincipal", "title": "ServicePrincipal", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the service principal" }, "displayName": { "type": "string", "description": "Display name of the service principal" }, "clientId": { "type": "string", "description": "Client ID for OAuth authentication" }, "customerId": { "type": "string", "description": "Associated customer ID" }, "createdAt": { "type": "string", "format": "date-time", "description": "Creation timestamp" } } }