AAiSense
/가이드/GEO/Author/Person 스키마 (E-E-A-T)
GEO

Author/Person 스키마 (E-E-A-T)

저자 정보를 Person JSON-LD로 명시 — E-E-A-T 신호 강화

GEO E-E-A-T 30% 가중치에 직접 기여

무엇을 측정하나요?

페이지 콘텐츠의 저자(또는 운영 주체)를 schema.org/Person 형식으로 구조화 데이터에 명시합니다. 가능하면 Article 스키마의 author 필드와 연결합니다.

AI 검색과의 연관성

Google의 E-E-A-T(Experience·Expertise·Authoritativeness·Trustworthiness) 평가에서 "누가 썼는가"는 핵심 신호입니다. ChatGPT/Claude 같은 생성AI도 출처 인용 시 저자가 명시된 콘텐츠를 우선 신뢰합니다.

목표 기준

모든 콘텐츠 페이지에 저자 이름·역할·소속이 명시된 Person 스키마, Article과 연결

단계별 개선 방법

1

name(이름)은 필수. jobTitle(직책), description(한 줄 소개), url(저자 페이지) 권장

2

affiliation 필드에 회사·기관(Organization) 연결

3

Article 스키마의 author 필드를 같은 Person으로 설정 (id 또는 인라인)

4

저자 페이지(/author/jane)를 별도 운영하면 SEO 권위성 추가 향상

5

AiSense는 페이지 본문에서 저자 정보를 추출해 자동 생성합니다

코드 예시

html
<head>
  <!-- Person 스키마 -->
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Person",
    "name": "Jane Doe",
    "jobTitle": "Lead Developer",
    "description": "10년 경력의 풀스택 개발자, React·AWS 전문",
    "url": "https://example.com/author/jane",
    "affiliation": {
      "@type": "Organization",
      "name": "Example Co.",
      "url": "https://example.com/"
    }
  }
  </script>

  <!-- Article 스키마에 저자 연결 -->
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Article",
    "headline": "...",
    "author": { "@type": "Person", "name": "Jane Doe" },
    "publisher": { "@type": "Organization", "name": "Example Co." }
  }
  </script>
</head>

함께 개선하면 좋은 항목

더 알아보기 (외부 자료)

내 사이트의 Author/Person 스키마 (E-E-A-T) 점수 확인

URL 하나로 19개 항목 무료 진단 · 60초

무료 진단 시작 →