{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://driftsys.github.io/schemas/markspec/link-target/v1.json",
  "title": "MarkSpec Link Target",
  "description": "A resolved reference to another entry used in link arrays.",
  "type": "object",
  "required": ["displayId", "title", "url"],
  "additionalProperties": false,
  "properties": {
    "displayId": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "entryType": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "project": {
      "type": "object",
      "required": ["name"],
      "additionalProperties": false,
      "properties": {
        "name": {
          "type": "string"
        },
        "purl": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      }
    }
  }
}
