Profile: external-link
An external-link
document contains a link to an external document.
Structure
The external-link
profile specifies a required attribute externalLink
; this will be a link object linking to an external page. This link must use the http://
or https://
scheme and should have no rels
values.
It also specifies two optional attributes:
linkText
- Text that should be used to display this linklinkLabel
- DEPRECATED - Text that should be displayed contextually, in addition to the link itself
Example external-link document
{
"id": "12345",
"profiles": [
{
"href": "/v1/profiles/external-link"
},
{
"href": "/v1/profiles/document"
}
],
"externalLink": {
"href": "https://en.wikipedia.org/wiki/Superman"
},
"linkText": "The Man of Steel's backstory; who he is and how he came to Earth",
"linkLabel": "Who is Superman? What was life like before him? And what will life be like after he is gone?"
}