mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 18:00:17 -06:00
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"shortCode": {
|
|
"type": "string",
|
|
"description": "The short code for this short URL."
|
|
},
|
|
"shortUrl": {
|
|
"type": "string",
|
|
"description": "The short URL."
|
|
},
|
|
"longUrl": {
|
|
"type": "string",
|
|
"description": "The original long URL."
|
|
},
|
|
"dateCreated": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"description": "The date in which the short URL was created in ISO format."
|
|
},
|
|
"visitsCount": {
|
|
"type": "integer",
|
|
"description": "The number of visits that this short URL has recieved."
|
|
},
|
|
"tags": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"description": "A list of tags applied to this short URL"
|
|
},
|
|
"meta": {
|
|
"$ref": "./ShortUrlMeta.json"
|
|
},
|
|
"originalUrl": {
|
|
"deprecated": true,
|
|
"type": "string",
|
|
"description": "The original long URL. [DEPRECATED. Use longUrl instead]"
|
|
}
|
|
}
|
|
}
|