20#ifndef ORES_DQ_API_MESSAGING_PUBLICATION_PROTOCOL_HPP
21#define ORES_DQ_API_MESSAGING_PUBLICATION_PROTOCOL_HPP
26#include "ores.dq.api/domain/publication.hpp"
28namespace ores::dq::messaging {
30struct get_publications_request {
31 using response_type =
struct get_publications_response;
32 static constexpr std::string_view nats_subject =
"dq.v1.publications.list";
33 std::string dataset_id;
38struct get_publications_response {
41 std::vector<ores::dq::domain::publication> publications;