shlink/docs/swagger/definitions/VisitStats.json
2021-02-09 23:09:42 +01:00

14 lines
496 B
JSON

{
"type": "object",
"required": ["visitsCount", "orphanVisitsCount"],
"properties": {
"visitsCount": {
"type": "number",
"description": "The total amount of visits received on any short URL."
},
"orphanVisitsCount": {
"type": "number",
"description": "The total amount of visits that could not be matched to a short URL (visits to the base URL, an invalid short URL or any other kind of 404)."
}
}
}