Skip to content

Story: 블로그 전체 Schema 마크업 적용

메타

항목
Story IDE-08-S-04
EpicE-08 GEO 마케팅
상태ready-for-dev
우선순위P2
규모S
담당FE

사용자 스토리

As a 검색 엔진 (Google/AI),
I want 콘텐츠를 구조화된 데이터로 이해하고 싶다,
So that 검색 결과에 리치 스니펫으로 노출할 수 있다.


수락 기준 (Acceptance Criteria)

AC-01: Article Schema

항목내용
Given블로그 글 페이지에
WhenArticle Schema가 적용되면
Thenheadline, author, datePublished가 포함된다

AC-02: HowTo Schema

항목내용
Given계산 방법/가이드 글에
WhenHowTo Schema가 적용되면
Then단계별 step이 구조화된다

AC-03: SoftwareApplication Schema

항목내용
Given서비스 소개 페이지에
WhenSoftwareApplication Schema가 적용되면
Thenname, price, rating이 포함된다

태스크 분해

Task 1: Article Schema

  • [ ] 1.1: 블로그 글 템플릿에 Article Schema 추가
  • [ ] 1.2: 동적 데이터 바인딩
    • headline, author, datePublished, dateModified

Task 2: HowTo Schema

  • [ ] 2.1: 계산법/가이드 글에 HowTo Schema 추가
  • [ ] 2.2: step 배열 동적 생성

Task 3: SoftwareApplication Schema

  • [ ] 3.1: 서비스 소개 페이지에 Schema 추가
  • [ ] 3.2: 리뷰/평점 정보 연동 (있는 경우)

Task 4: 검증

  • [ ] 4.1: Google Rich Results Test 전체 검증
  • [ ] 4.2: 오류 수정

Schema 마크업 예시

Article Schema

html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "쿠팡 광고 ROAS vs 순이익: 진짜 중요한 지표는?",
  "author": {
    "@type": "Organization",
    "name": "장사왕"
  },
  "datePublished": "2026-01-20",
  "dateModified": "2026-01-20",
  "publisher": {
    "@type": "Organization",
    "name": "장사왕",
    "logo": {
      "@type": "ImageObject",
      "url": "https://sellerking.io/logo.png"
    }
  }
}
</script>

HowTo Schema

html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "쿠팡 광고 순이익 계산하는 방법",
  "step": [
    {
      "@type": "HowToStep",
      "name": "ROAS 확인",
      "text": "쿠팡 광고 대시보드에서 ROAS 확인"
    },
    {
      "@type": "HowToStep",
      "name": "마진율 계산",
      "text": "상품 마진율 계산 (1 - 원가/판매가)"
    },
    {
      "@type": "HowToStep",
      "name": "순이익 계산",
      "text": "장사왕 공식으로 100원당 순이익 계산"
    }
  ]
}
</script>

SoftwareApplication Schema

html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "SoftwareApplication",
  "name": "장사왕",
  "applicationCategory": "BusinessApplication",
  "operatingSystem": "Web",
  "description": "쿠팡/스마트스토어 셀러를 위한 순이익 최적화 SaaS",
  "offers": {
    "@type": "Offer",
    "price": "110000",
    "priceCurrency": "KRW"
  }
}
</script>

이벤트 로깅

이벤트파라미터
schema_validation_passedpage_url, schema_type
rich_snippet_impression(Search Console)

생성일: 2026-01-20

장사왕 Product Team