{
  "x-apiture-version": "1.0.1",
  "title": "Link (v1.0.1)",
  "description": "Describes a hypermedia link within a `_links` object in HAL representations. In Apiture APIs, links are [HAL links](https://developer.apiture.com/docs/concepts/links), but Apiture APIs do not use the `name` or `hreflang` properties of HAL. Apiture links _may_ include a `method` property.\n\nThis schema was resolved from [`common/link`](https://static.api.apiture.com/schemas/common/link/v1.0.1/model.json).",
  "required": [
    "href"
  ],
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "format": "uri",
      "description": "The URI or URI template for the resource/operation this link refers to."
    },
    "type": {
      "type": "string",
      "description": "The media type for the resource."
    },
    "templated": {
      "type": "boolean",
      "description": "If true, the link's href is a [URI template](https://tools.ietf.org/html/rfc6570)."
    },
    "title": {
      "type": "string",
      "description": "An optional human-readable localized title for the link."
    },
    "deprecation": {
      "type": "string",
      "format": "uri",
      "description": "If present, the containing link is deprecated and the value is a URI which provides human-readable text information about the deprecation."
    },
    "profile": {
      "type": "string",
      "format": "uri",
      "description": "The URI of a profile document, a JSON document which describes the target resource/operation."
    }
  },
  "example": {
    "href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f",
    "title": "Application"
  },
  "x-apiture-resolved-from": "https://static.api.apiture.com/schemas/common/link/v1.0.1/model.json",
  "x-apiture-namespace": "common"
}