-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
54 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: string | ||
|
||
description: The 404 error redirect link. | ||
description: URL to redirect customers if a short link is broken or inactive. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
type: object | ||
|
||
properties: | ||
data: | ||
type: array | ||
description: List of domains. | ||
items: | ||
$ref: "domain_response.yml" | ||
allOf: | ||
- $ref: "../../../shared/models/list.yml" | ||
- type: object | ||
properties: | ||
data: | ||
type: array | ||
description: List of domains. | ||
items: | ||
$ref: "domain_response.yml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
type: object | ||
|
||
properties: | ||
count: | ||
type: integer | ||
description: The number of results in the current response. | ||
limit: | ||
type: integer | ||
description: How many results to return. | ||
offset: | ||
type: integer | ||
description: An integer that designates the offset at which to begin returning results. Defaults to 0. | ||
data: | ||
type: array | ||
description: > | ||
list of links | ||
items: | ||
$ref: "link_response.yml" | ||
allOf: | ||
- $ref: "../../../shared/models/list.yml" | ||
- type: object | ||
properties: | ||
data: | ||
type: array | ||
description: List of links | ||
items: | ||
$ref: "link_response.yml" |