{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://dpp-keystone.org/spec/validation/v2/json-schema/shared/related-resource.schema.json",
  "title": "Related Resource",
  "description": "A resource identified by a URL, with additional metadata such as title, content type, and language.",
  "type": "object",
  "properties": {
    "resourceTitle": {
      "type": "string"
    },
    "contentType": {
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri-reference"
    }
  },
  "required": [
    "url"
  ]
}
