20#ifndef ORES_DQ_API_MESSAGING_LEI_ENTITY_SUMMARY_PROTOCOL_HPP
21#define ORES_DQ_API_MESSAGING_LEI_ENTITY_SUMMARY_PROTOCOL_HPP
27namespace ores::dq::messaging {
29struct lei_entity_summary {
31 std::string entity_legal_name;
32 std::string entity_category;
36struct get_lei_entities_summary_request {
37 using response_type =
struct get_lei_entities_summary_response;
38 static constexpr std::string_view nats_subject =
39 "dq.v1.lei-entities.summary";
40 std::string country_filter;
45struct get_lei_entities_summary_response {
47 std::string error_message;
48 std::vector<lei_entity_summary> entities;