{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Account", "title": "Account", "type": "object", "properties": { "accountId": { "type": "string", "description": "The unique identifier for the account." }, "accountName": { "type": "string", "description": "The name associated with the account." }, "accountType": { "type": "string", "description": "The type of the account." }, "status": { "type": "string", "description": "The current status of the account." }, "currency": { "type": "string", "description": "The currency associated with the account.", "example": "NGN" }, "createdAt": { "type": "string", "format": "date-time", "description": "The date and time the account was created." } } }