Fetch a single publication profile with owner identity and aggregate stats.
Parameters
Output
Encoding
application/jsondocumentCount
integer
Optional
No description available.
lastDocumentAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
owner
refapp.standard-reader.defs#profileView
Optional
No description available.
publication
refapp.standard-reader.defs#publicationView
Required
No description available.
subscriberCount
integer
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"publication"
],
"properties": {
"owner": {
"ref": "app.standard-reader.defs#profileView",
"type": "ref"
},
"publication": {
"ref": "app.standard-reader.defs#publicationView",
"type": "ref"
},
"documentCount": {
"type": "integer"
},
"lastDocumentAt": {
"type": "string",
"format": "datetime",
"nullable": true
},
"subscriberCount": {
"type": "integer"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"publication"
],
"properties": {
"publication": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Fetch a single publication profile with owner identity and aggregate stats."
}