# Entity Relationship Building Template

## Template Overview
This template provides methods for building clear entity relationships, helping AI search engines better understand the concepts within your content and how they interrelate.

---

## Core Concepts

### What is an Entity?
An **Entity** is a clearly defined object, concept, event, or thing in the real world, such as:
- **Person:** Authors, experts, public figures.
- **Organization:** Companies, institutions, groups.
- **Concept:** Professional terms, methods, technologies.
- **Place:** Cities, countries, regions.
- **Event:** Conferences, launches, updates.

### What are Entity Relationships?
**Entity Relationships** describe semantic associations between entities:
- **is-a:** SEO is a marketing strategy.
- **part-of:** Keyword research is part of SEO.
- **related-to:** SEO is related to content marketing.
- **impacts:** Technical SEO impacts site speed.

---

## Entity Mapping Framework

### 1. Person Entities
- **Name:** Full name.
- **Role:** Job title or role.
- **Affiliation:** Company or institution.
- **Credentials:** Certifications, degrees, or awards.
- **Contribution:** Specific expertise in the topic.
- **Links:** LinkedIn, Twitter, Personal site.

### 2. Organization Entities
- **Name:** Full legal name.
- **Type:** e.g., Corporation, Non-profit.
- **Industry:** Primary niche.
- **Key Products/Services:** List of core offerings.
- **Location:** Headquarters city and country.

### 3. Concept Entities
- **Term:** Concept name.
- **Definition:** Clear, concise explanation.
- **Synonyms:** Alternative names or acronyms.
- **Parent Concept:** The broader category it belongs to.
- **Sub-concepts:** Specific branches included within.

---

## Knowledge Graph Construction

### Mermaid Syntax for Entity Maps
Use the following structure to visualize relationships:

```mermaid
graph TD
    A[SEO] --> B[Technical SEO]
    A --> C[Content SEO]
    A --> D[Link Building]

    B --> E[Site Speed]
    B --> F[Mobile Friendliness]
    
    C --> G[Keyword Research]
    C --> H[Readability]

    style A fill:#f9f,stroke:#333,stroke-width:4px
    style B fill:#bbf,stroke:#333,stroke-width:2px
```

---

## Schema.org Markup Patterns

### JSON-LD for Defined Terms
```json
{
  "@context": "https://schema.org",
  "@type": "DefinedTerm",
  "name": "SEO",
  "description": "The process of optimizing a website to improve its visibility in search results.",
  "inDefinedTermSet": {
    "@type": "DefinedTermSet",
    "name": "Digital Marketing Glossary"
  }
}
```

### JSON-LD for People and Organizations
```json
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "John Doe",
  "jobTitle": "Senior SEO Expert",
  "worksFor": {
    "@type": "Organization",
    "name": "Your Company"
  }
}
```

### Relationship Mapping using @graph
```json
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Concept",
      "name": "SEO",
      "hasPart": [
        { "@type": "Concept", "name": "Technical SEO" },
        { "@type": "Concept", "name": "Content SEO" }
      ]
    }
  ]
}
```

---

## Internal Linking Strategy

### 1. Topic Cluster Architecture
- **Pillar Page:** Comprehensive overview (links to all clusters).
- **Cluster Pages:** Detailed deep-dives (all link back to the pillar).

### 2. Descriptive Anchor Text
- ❌ **Avoid:** "Click here", "Read more", "This link".
- ✅ **Use:** "[Technical SEO Checklist]", "[Keyword Research Methods]", "[Mobile Optimization Guide]".

---
**Version:** 1.0.0
**Last Updated:** 2026-01-15
