{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountToken", "title": "AccountToken", "type": "object", "properties": { "account_token": { "type": "string" }, "integration": { "$ref": "#/components/schemas/AccountIntegration" }, "id": { "type": "string" } }, "required": [ "account_token", "integration", "id" ] }