mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
23 lines
590 B
JSON
23 lines
590 B
JSON
{
|
|
"type": "object",
|
|
"required": ["visitedUrl", "type"],
|
|
"allOf": [{
|
|
"$ref": "./Visit.json"
|
|
}],
|
|
"properties": {
|
|
"visitedUrl": {
|
|
"type": "string",
|
|
"nullable": true,
|
|
"description": "The originally visited URL that triggered the tracking of this visit"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"invalid_short_url",
|
|
"base_url",
|
|
"regular_404"
|
|
],
|
|
"description": "Tells the type of orphan visit"
|
|
}
|
|
}
|
|
}
|