diff --git a/waku/waku_api/rest/admin/openapi.yaml b/waku/waku_api/rest/admin/openapi.yaml deleted file mode 100644 index f6118ad70..000000000 --- a/waku/waku_api/rest/admin/openapi.yaml +++ /dev/null @@ -1,115 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ - -tags: - - name: admin - description: Admin REST API for WakuV2 node - -paths: - /admin/v1/peers: - get: - summary: Get connected peers info - description: Retrieve information about connected peers. - operationId: getPeerInfo - tags: - - admin - responses: - '200': - description: Information about a Waku v2 node. - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/WakuPeer' - '5XX': - description: Unexpected error. - post: - summary: Adds new peer(s) to connect with - description: Adds new peer(s) to connect with. - operationId: postPeerInfo - tags: - - admin - requestBody: - content: - application/json: - schema: - type: array - items: - type: string - responses: - '200': - description: Ok - '400': - description: Cannot connect to one or more peers. - '5XX': - description: Unexpected error. - /admin/v1/filter/subscriptions: - get: - summary: Get filter protocol subscribers - description: Retrieve information about the serving filter subscriptions - operationId: getFilterInfo - tags: - - admin - responses: - '200': - description: Information about subscribed filter peers and topics - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/FilterSubscription' - '400': - description: Filter Protocol is not mounted to the node - '5XX': - description: Unexpected error. - -components: - schemas: - WakuPeer: - type: object - required: - - multiaddr - - protocols - properties: - multiaddr: - type: string - protocols: - type: array - items: - type: object - required: - - protocol - - connected - properties: - protocol: - type: string - connected: - type: boolean - - FilterSubscription: - type: object - required: - - peerId - - filterCriteria - properties: - peerId: - type: string - filterCriteria: - type: array - items: - type: object - required: - - pubsubTopic - - contentTopic - properties: - pubsubTopic: - type: string - contentTopic: - type: string diff --git a/waku/waku_api/rest/debug/openapi.yaml b/waku/waku_api/rest/debug/openapi.yaml deleted file mode 100644 index af205a065..000000000 --- a/waku/waku_api/rest/debug/openapi.yaml +++ /dev/null @@ -1,64 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ - -tags: - - name: debug - description: Debug REST API for WakuV2 node - -paths: - /debug/v1/info: - get: - summary: Get node info - description: Retrieve information about a Waku v2 node. - operationId: getNodeInfo - tags: - - debug - responses: - '200': - description: Information about a Waku v2 node. - content: - application/json: - schema: - $ref: '#/components/schemas/WakuInfo' - '4XX': - description: Bad request error. - '5XX': - description: Unexpected error. - - /debug/v1/version: - get: - summary: Get node version - description: Retrieve the Waku v2 node version. - operationId: getNodeVersion - tags: - - debug - responses: - '200': - description: The version of a Waku v2 node. - content: - text/plain: - schema: - type: string - '4XX': - description: Bad request error. - '5XX': - description: Unexpected error. - -components: - schemas: - WakuInfo: - type: object - properties: - listenAddresses: - type: array - items: - type: string - enrUri: - type: string - required: - - listenAddresses diff --git a/waku/waku_api/rest/filter/openapi.yaml b/waku/waku_api/rest/filter/openapi.yaml deleted file mode 100644 index 49ee6d967..000000000 --- a/waku/waku_api/rest/filter/openapi.yaml +++ /dev/null @@ -1,462 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ -tags: - - name: filter - description: Filter REST API for WakuV2 node - -paths: - # Legacy support for v1 waku filter - # TODO: legacy endpoint, remove in the future - /filter/v1/subscriptions: - post: # post_waku_v2_filter_v1_subscription - summary: Subscribe a node to an array of topics - description: Subscribe a node to an array of content topics. - operationId: postSubscriptions - tags: - - filter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FilterLegacySubscribeRequest' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - # TODO: Review the possible errors of this endpoint - '400': - description: Bad request. - content: - text/plain: - schema: - type: string - '5XX': - description: Unexpected error. - content: - text/plain: - schema: - type: string - - delete: # delete_waku_v2_filter_v1_subscription - summary: Unsubscribe a node from an array of topics - description: Unsubscribe a node from an array of content topics. - operationId: deleteSubscriptions - tags: - - filter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FilterLegacySubscribeRequest' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - # TODO: Review the possible errors of this endpoint - '400': - description: Bad request. - content: - text/plain: - schema: - type: string - '404': - description: Not found. - content: - text/plain: - schema: - type: string - '5XX': - description: Unexpected error. - content: - text/plain: - schema: - type: string - - # TODO: legacy endpoint, remove in the future - /filter/v1/messages/{contentTopic}: - get: # get_waku_v2_filter_v1_messages - summary: Get the latest messages on the polled content topic - description: Get a list of messages that were received on a subscribed content topic after the last time this method was called. - operationId: getMessagesByTopic - tags: - - filter - parameters: - - in: path - name: contentTopic # Note the name is the same as in the path - required: true - schema: - type: string - description: Content topic of message - responses: - '200': - description: The latest messages on the polled topic. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterGetMessagesResponse' - # TODO: Review the possible errors of this endpoint - '400': - description: Bad request. - content: - text/plain: - schema: - type: string - '404': - description: Not found. - content: - text/plain: - schema: - type: string - '5XX': - description: Unexpected error. - content: - text/plain: - schema: - type: string - - /filter/v2/subscriptions/{requestId}: - get: # get_waku_v2_filter_v2_subscription - ping - summary: Subscriber-ping - a peer can query if there is a registered subscription for it - description: | - Subscriber peer can query its subscription existence on service node. - Returns HTTP200 if exists and HTTP404 if not. - Client must not fill anything but requestId in the request body. - operationId: subscriberPing - tags: - - filter - parameters: - - in: path - name: requestId - required: true - schema: - type: string - description: Id of ping request - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '400': - description: Bad request. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '404': - description: Not found. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '5XX': - description: Unexpected error. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - - /filter/v2/subscriptions: - post: # post_waku_v2_filter_v2_subscription - summary: Subscribe a peer to an array of content topics under a pubsubTopic - description: | - Subscribe a peer to an array of content topics under a pubsubTopic. - - It is allowed to refresh or add new content topic to an existing subscription. - - Fields pubsubTopic and contentFilters must be filled. - operationId: postSubscriptions - tags: - - filter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscribeRequest' - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - # TODO: Review the possible errors of this endpoint - '400': - description: Bad request. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '404': - description: Not found. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '5XX': - description: Unexpected error. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - - put: # put_waku_v2_filter_v2_subscription - summary: Modify existing subscription of a peer under a pubsubTopic - description: | - Modify existing subscription of a peer under a pubsubTopic. - - It is allowed to refresh or add new content topic to an existing subscription. - - Fields pubsubTopic and contentFilters must be filled. - operationId: putSubscriptions - tags: - - filter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscribeRequest' - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - # TODO: Review the possible errors of this endpoint - '400': - description: Bad request. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '404': - description: Not found. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '5XX': - description: Unexpected error. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - - - delete: # delete_waku_v2_filter_v2_subscription - summary: Unsubscribe a peer from content topics - description: | - Unsubscribe a peer from content topics - Only that subscription will be removed which matches existing. - operationId: deleteSubscriptions - tags: - - filter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FilterUnsubscribeRequest' - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '400': - description: Bad request. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '404': - description: Not found. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '5XX': - description: Unexpected error. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - /filter/v2/subscriptions/all: - delete: # delete_waku_v2_filter_v2_subscription - summary: Unsubscribe a peer from all content topics - description: | - Unsubscribe a peer from all content topics - operationId: deleteAllSubscriptions - tags: - - filter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FilterUnsubscribeAllRequest' - responses: - '200': - description: OK - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '400': - description: Bad request. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '404': - description: Not found. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - '5XX': - description: Unexpected error. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterSubscriptionResponse' - /filter/v2/messages/{contentTopic}: - get: # get_waku_v2_filter_v2_messages - summary: Get the latest messages on the polled content topic - description: Get a list of messages that were received on a subscribed content topic after the last time this method was called. - operationId: getMessagesByTopic - tags: - - filter - parameters: - - in: path - name: contentTopic # Note the name is the same as in the path - required: true - schema: - type: string - description: Content topic of message - responses: - '200': - description: The latest messages on the polled topic. - content: - application/json: - schema: - $ref: '#/components/schemas/FilterGetMessagesResponse' - # TODO: Review the possible errors of this endpoint - '400': - description: Bad request. - content: - text/plain: - schema: - type: string - '404': - description: Not found. - content: - text/plain: - schema: - type: string - '5XX': - description: Unexpected error. - content: - text/plain: - schema: - type: string - -components: - schemas: - PubSubTopic: - type: string - ContentTopic: - type: string - - FilterWakuMessage: - type: object - properties: - payload: - type: string - format: byte - contentTopic: - $ref: '#/components/schemas/ContentTopic' - version: - type: number - timestamp: - type: number - required: - - payload - - FilterLegacySubscribeRequest: - type: object - properties: - contentFilters: - type: array - items: - $ref: '#/components/schemas/ContentTopic' - pubsubTopic: - $ref: "#/components/schemas/PubSubTopic" - required: - - contentFilters - - FilterGetMessagesResponse: - type: array - items: - $ref: '#/components/schemas/FilterWakuMessage' - - FilterSubscribeRequest: - type: object - properties: - requestId: - type: string - contentFilters: - type: array - items: - $ref: '#/components/schemas/ContentTopic' - pubsubTopic: - $ref: "#/components/schemas/PubSubTopic" - required: - - requestId - - contentFilters - - pubsubTopic - - FilterUnsubscribeRequest: - type: object - properties: - requestId: - type: string - contentFilters: - type: array - items: - $ref: '#/components/schemas/ContentTopic' - pubsubTopic: - $ref: "#/components/schemas/PubSubTopic" - required: - - requestId - - contentFilters - - FilterUnsubscribeAllRequest: - type: object - properties: - requestId: - type: string - required: - - requestId - - FilterSubscriptionResponse: - type: object - properties: - requestId: - type: string - statusDesc: - type: string - required: - - requestId diff --git a/waku/waku_api/rest/health/openapi.yaml b/waku/waku_api/rest/health/openapi.yaml deleted file mode 100644 index f433800c2..000000000 --- a/waku/waku_api/rest/health/openapi.yaml +++ /dev/null @@ -1,41 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ - -tags: - - name: health - description: Healt check REST API for WakuV2 node - -paths: - /health: - get: - summary: Get node health status - description: Retrieve readiness of a Waku v2 node. - operationId: healthcheck - tags: - - health - responses: - '200': - description: Waku v2 node is up and running. - content: - text/plain: - schema: - type: string - example: Node is healty - '500': - description: Internal server error - content: - text/plain: - schema: - type: string - '503': - description: Node not initialized or having issues - content: - text/plain: - schema: - type: string - example: Node is not initialized diff --git a/waku/waku_api/rest/lightpush/openapi.yaml b/waku/waku_api/rest/lightpush/openapi.yaml deleted file mode 100644 index e9e8162b7..000000000 --- a/waku/waku_api/rest/lightpush/openapi.yaml +++ /dev/null @@ -1,84 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ - -tags: - - name: lightpush - description: Lightpush REST API for WakuV2 node - -paths: - /lightpush/v1/message: - post: - summary: Request a message relay from a LightPush service provider - description: Push a message to be relayed on a PubSub topic. - operationId: postMessagesToPubsubTopic - tags: - - lightpush - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/PushRequest' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - '400': - description: Bad request. - content: - text/plain: - schema: - type: string - '500': - description: Internal server error - content: - text/plain: - schema: - type: string - '503': - description: Service not available - content: - text/plain: - schema: - type: string - -components: - schemas: - PubsubTopic: - type: string - - ContentTopic: - type: string - - WakuMessage: - type: object - properties: - payload: - type: string - format: byte - contentTopic: - $ref: '#/components/schemas/ContentTopic' - version: - type: number - timestamp: - type: number - required: - - payload - - contentTopic - - PushRequest: - type: object - properties: - pubsubTopic: - $ref: '#/components/schemas/PubsubTopic' - message: - $ref: '#/components/schemas/WakuMessage' - required: - - message diff --git a/waku/waku_api/rest/relay/openapi.yaml b/waku/waku_api/rest/relay/openapi.yaml deleted file mode 100644 index 9e20653ad..000000000 --- a/waku/waku_api/rest/relay/openapi.yaml +++ /dev/null @@ -1,244 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ - -tags: - - name: relay - description: Relay REST API for WakuV2 node - -paths: - /relay/v1/messages/{pubsubTopic}: # Note the plural in messages - get: # get_waku_v2_relay_v1_messages - summary: Get the latest messages on the polled topic - description: Get a list of messages that were received on a subscribed PubSub topic after the last time this method was called. - operationId: getMessagesByTopic - tags: - - relay - parameters: - - in: path - name: pubsubTopic # Note the name is the same as in the path - required: true - schema: - type: string - description: The user ID - responses: - '200': - description: The latest messages on the polled topic. - content: - application/json: - schema: - $ref: '#/components/schemas/RelayGetMessagesResponse' - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - post: # post_waku_v2_relay_v1_message - summary: Publish a message to be relayed - description: Publishes a message to be relayed on a PubSub topic. - operationId: postMessagesToTopic - tags: - - relay - parameters: - - in: path - name: pubsubTopic # Note the name is the same as in the path - description: The messages content topic - required: true - schema: - $ref: '#/components/schemas/RelayPostMessagesRequest' - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RelayPostMessagesRequest' - responses: - '200': - description: OK - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - /relay/v1/subscriptions: - post: # post_waku_v2_relay_v1_subscriptions - summary: Subscribe a node to an array of topics - description: Subscribe a node to an array of PubSub topics. - operationId: postSubscriptions - tags: - - relay - requestBody: - content: - application/json: - schema: - type array: - items: - $ref: '#/components/schemas/PubsubTopic' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - delete: # delete_waku_v2_relay_v1_subscriptions - summary: Unsubscribe a node from an array of topics - description: Unsubscribe a node from an array of PubSub topics. - operationId: deleteSubscriptions - tags: - - relay - requestBody: - content: - application/json: - schema: - type array: - items: - $ref: '#/components/schemas/PubsubTopic' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - /relay/v1/auto/messages/{contentTopic}: # Note the plural in messages - get: # get_waku_v2_relay_v1_auto_messages - summary: Get the latest messages on the polled topic - description: Get a list of messages that were received on a subscribed Content topic after the last time this method was called. - operationId: getMessagesByTopic - tags: - - relay - parameters: - - in: path - name: contentTopic # Note the name is the same as in the path - required: true - schema: - type: string - description: The user ID - responses: - '200': - description: The latest messages on the polled topic. - content: - application/json: - schema: - $ref: '#/components/schemas/RelayGetMessagesResponse' - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - /relay/v1/auto/messages: # Note the plural in messages - post: # post_waku_v2_relay_v1_auto_message - summary: Publish a message to be relayed - description: Publishes a message to be relayed on a Content topic. - operationId: postMessagesToTopic - tags: - - relay - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RelayPostMessagesRequest' - responses: - '200': - description: OK - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - /relay/v1/auto/subscriptions: - post: # post_waku_v2_relay_v1_auto_subscriptions - summary: Subscribe a node to an array of topics - description: Subscribe a node to an array of Content topics. - operationId: postSubscriptions - tags: - - relay - requestBody: - content: - application/json: - schema: - type array: - items: - $ref: '#/components/schemas/ContentTopic' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - delete: # delete_waku_v2_relay_v1_auto_subscriptions - summary: Unsubscribe a node from an array of topics - description: Unsubscribe a node from an array of Content topics. - operationId: deleteSubscriptions - tags: - - relay - requestBody: - content: - application/json: - schema: - type array: - items: - $ref: '#/components/schemas/ContentTopic' - responses: - '200': - description: OK - content: - text/plain: - schema: - type: string - '4XX': - description: Bad request. - '5XX': - description: Unexpected error. - - -components: - schemas: - PubSubTopic: - type: string - ContentTopic: - type: string - - RelayWakuMessage: - type: object - properties: - payload: - type: string - format: byte - contentTopic: - $ref: '#/components/schemas/ContentTopic' - version: - type: number - timestamp: - type: number - required: - - payload - - RelayGetMessagesResponse: - type: array - items: - $ref: '#/components/schemas/RelayWakuMessage' - - RelayPostMessagesRequest: - $ref: '#/components/schemas/RelayWakuMessage' - \ No newline at end of file diff --git a/waku/waku_api/rest/store/openapi.yaml b/waku/waku_api/rest/store/openapi.yaml deleted file mode 100644 index fdd552e19..000000000 --- a/waku/waku_api/rest/store/openapi.yaml +++ /dev/null @@ -1,204 +0,0 @@ -openapi: 3.0.3 -info: - title: Waku V2 node REST API - version: 1.0.0 - contact: - name: VAC Team - url: https://forum.vac.dev/ - -tags: - - name: store - description: Store REST API for WakuV2 node - -paths: - /store/v1/messages: - get: - summary: Gets message history - description: > - Retrieves WakuV2 message history. The returned history - can be potentially filtered by optional request parameters. - operationId: getMessageHistory - tags: - - store - parameters: - - name: peerAddr - in: query - schema: - type: string - required: true - description: > - P2P fully qualified peer multiaddress - in the format `(ip4|ip6)/tcp/p2p/$peerId` and URL-encoded. - example: '%2Fip4%2F127.0.0.1%2Ftcp%2F60001%2Fp2p%2F16Uiu2HAmVFXtAfSj4EiR7mL2KvL4EE2wztuQgUSBoj2Jx2KeXFLN' - - - name: pubsubTopic - in: query - schema: - type: string - description: > - The pubsub topic on which a WakuMessage is published. - If left empty, no filtering is applied. - It is also intended for pagination purposes. - It should be a URL-encoded string. - example: 'my%20pubsub%20topic' - - - name: contentTopics - in: query - schema: string - description: > - Comma-separated list of content topics. When specified, - only WakuMessages that are linked to any of the given - content topics will be delivered in the get response. - It should be a URL-encoded-comma-separated string. - example: 'my%20first%20content%20topic%2Cmy%20second%20content%20topic%2Cmy%20third%20content%20topic' - - - name: startTime - in: query - schema: - type: string - description: > - The inclusive lower bound on the timestamp of - queried WakuMessages. This field holds the - Unix epoch time in nanoseconds as a 64-bits - integer value. - example: '1680590945000000000' - - - name: endTime - in: query - schema: - type: string - description: > - The inclusive upper bound on the timestamp of - queried WakuMessages. This field holds the - Unix epoch time in nanoseconds as a 64-bits - integer value. - example: '1680590945000000000' - - - name: senderTime - in: query - schema: - type: string - description: > - Cursor field intended for pagination purposes. - Represents the Unix time in nanoseconds at which a message was generated. - It could be empty for retrieving the first page, - and will be returned from the GET response so that - it can be part of the next page request. - example: '1680590947000000000' - - - name: storeTime - in: query - schema: - type: string - description: > - Cursor field intended for pagination purposes. - Represents the Unix time in nanoseconds at which a message was stored. - It could be empty for retrieving the first page, - and will be returned from the GET response so that - it can be part of the next page request. - example: '1680590945000000000' - - - name: digest - in: query - schema: - type: string - description: > - Cursor field intended for pagination purposes. - URL-base64-encoded string computed as a hash of the - a message content topic plus a message payload. - It could be empty for retrieving the first page, - and will be returned from the GET response so that - it can be part of the next page request. - example: 'Gc4ACThW5t2QQO82huq3WnDv%2FapPPJpD%2FwJfxDxAnR0%3D' - - - name: pageSize - in: query - schema: - type: string - description: > - Number of messages to retrieve per page - example: '5' - - - name: ascending - in: query - schema: - type: string - description: > - "true" for paging forward, "false" for paging backward. - If not specified or if specified with an invalid value, the default is "true". - example: "true" - - responses: - '200': - description: WakuV2 message history. - content: - application/json: - schema: - $ref: '#/components/schemas/StoreResponse' - '400': - description: Bad request error. - content: - text/plain: - type: string - '412': - description: Precondition failed. - content: - text/plain: - type: string - '500': - description: Internal server error. - content: - text/plain: - type: string - -components: - schemas: - StoreResponse: - type: object - properties: - messages: - type: array - items: - $ref: '#/components/schemas/WakuMessage' - cursor: - $ref: '#/components/schemas/HistoryCursor' - error_message: - type: string - required: - - messages - - HistoryCursor: - type: object - properties: - pubsub_topic: - type: string - sender_time: - type: string - store_time: - type: string - digest: - type: string - required: - - pubsub_topic - - sender_time - - store_time - - digest - - WakuMessage: - type: object - properties: - payload: - type: string - content_topic: - type: string - version: - type: integer - format: int32 - timestamp: - type: integer - format: int64 - ephemeral: - type: boolean - required: - - payload - - content_topic