shlink/docs/swagger/definitions/VisitStats.json

15 lines
496 B
JSON
Raw Normal View History

2020-05-01 12:44:55 +03:00
{
"type": "object",
"required": ["visitsCount", "orphanVisitsCount"],
2020-05-01 12:44:55 +03:00
"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)."
2020-05-01 12:44:55 +03:00
}
}
}