{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "$id": "https://blockprotocol.org/types/modules/graph/0.3/schema/link-data",
  "title": "Link Data",
  "type": "object",
  "allOf": [
    {
      "properties": {
        "leftEntityId": {
          "$ref": "https://blockprotocol.org/types/modules/graph/0.3/schema/entity-id"
        },
        "rightEntityId": {
          "$ref": "https://blockprotocol.org/types/modules/graph/0.3/schema/entity-id"
        }
      }
    },
    {
      "$ref": "https://blockprotocol.org/types/modules/graph/0.3/schema/link-orders"
    }
  ],
  "required": ["leftEntityId", "rightEntityId"]
}
