The optional "includeTopicProperties" property causes the response to include a "topics" list that contains all the MQTT topics related to the request. Each string is the name of a topic property. Each item in the list is an object that contains the specified properties.
If the "includeTopicProperties" array is empty [], each object in the list contains the unique topic name, which you can use to look up additional information.
If the "includeTopicProperties" array is omitted or null, the "topics" list is not included in the response.
For available properties, see the top-level properties in the "describeTopics" action's "results" list.
Request example 1
"includeTopicProperties": [],Response example
"topics": [
{ "topic": "temperature" }
],Request example 2
"includeTopicProperties": [ "id", "topic", "averageMessagesPerMinute" ],Response example 2
"topics": [
{
"id": 1,
"topic": "temperature",
"averageMessagesPerMinute": 12
}
],