Atlassian · Schema

Link

A link to a resource related to this object.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
href string
name string
View JSON Schema on GitHub

JSON Schema

atlassian-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/link",
  "title": "Link",
  "type": "object",
  "description": "A link to a resource related to this object.",
  "properties": {
    "href": {
      "type": "string",
      "format": "uri",
      "example": "https://www.example.com"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    }
  },
  "additionalProperties": false
}