{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountConnection", "title": "AccountConnection", "type": "object", "description": "An established connection between two Moov accounts.", "properties": { "accountID": { "type": "string", "format": "uuid", "description": "The account that initiated the connection." }, "partnerAccountID": { "type": "string", "format": "uuid", "description": "The connected partner account." }, "createdOn": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the connection was created." } } }