구조화된 학습 동영상(LearningResource, VideoObject, Clip) 데이터

학습 동영상 리치 결과 예

Google 검색은 학생과 교사가 교육 동영상을 검색하고 시청하는 출발점입니다. 구조화된 데이터를 통해 동영상에서 다루는 교육 수준, 학력 및 기술과 같이 학습 정보를 명시적으로 제공하면 Google에서 동영상의 콘텐츠를 더욱 효과적으로 파악하고 학습자가 자신에게 적합한 콘텐츠를 찾을 수 있도록 한층 강화된 환경을 제공할 수 있습니다.

구조화된 동영상 학습 데이터는 교육 수준 및 동영상 유형(예: 개요 또는 솔루션 동영상) 등 학습 동영상에 관한 정보 칩을 사용하도록 설정할 수도 있습니다.

사용자가 동영상을 탭하기 전에 학습 동영상 아래에 정보 칩이 표시되는 방식 사용자가 동영상을 탭한 후 학습 동영상 위에 정보 칩이 표시되는 방식

기능 제공 여부

학습 동영상 리치 결과는 Google 검색이 지원되는 모든 지역에서 영어로 제공됩니다. 이 기능은 데스크톱 및 모바일에서 학술 및 학습 콘텐츠를 검색할 때만 사용 가능합니다.

단일 학습 동영상

다음은 단일 학습 동영상의 예입니다.


<html>
  <head>
    <title>Learning video markup example</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": ["VideoObject", "LearningResource"],
      "name": "An introduction to Genetics",
      "description": "Explanation of the basics of Genetics for beginners.",
      "learningResourceType": "Concept Overview",
      "educationalLevel": "High school (US)",
      "contentUrl": "https://www.example.com/video/123/file.mp4",
      "thumbnailUrl": [
        "https://example.com/photos/1x1/photo.jpg",
        "https://example.com/photos/4x3/photo.jpg",
        "https://example.com/photos/16x9/photo.jpg"
      ],
      "uploadDate": "2016-03-31T08:00:00+08:00"
    }
    </script>
  </head>
  <body>
  </body>
</html>

여러 개의 클립이 포함된 학습 동영상

다음은 3개의 클립으로 구성된 학습 동영상의 예입니다. 이 중 2개는 문제를 안내하는 클립이고, 1개는 개념을 간단하게 살펴보는 클립입니다.


<html>
  <head>
    <title>Learning video and clips markup example</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": ["VideoObject", "LearningResource"],
      "name": "An introduction to XYZ",
      "description": "Solving equations using exponent properties",
      "educationalLevel": "High school (US)",
      "educationalAlignment": {
        "@type": "AlignmentObject",
        "educationalFramework": "Common Core",
        "targetName": "HSA-SSE.B.3",
        "targetUrl": "https://www.corestandards.org/Math/Content/HSA/SSE/#CCSS.Math.Content.HSA.SSE.B.3"
      },
      "contentUrl": "https://www.example.com/video/123/file.mp4",
      "thumbnailUrl": [
        "https://example.com/photos/1x1/photo.jpg",
        "https://example.com/photos/4x3/photo.jpg",
        "https://example.com/photos/16x9/photo.jpg"
      ],
      "hasPart": [{
        "@type": ["Clip", "LearningResource"],
        "learningResourceType": "Concept Overview",
        "name": "Understanding exponents",
        "startOffset": 40,
        "endOffset": 120,
        "url": "https://www.example.com/example?t=501"
      },{
        "@type": ["Clip", "LearningResource"],
        "learningResourceType": "Problem Walkthrough",
        "name": "Example problem 1: suspended wires",
        "text": "Consider a weight suspended from two wires as shown in Figure. Find the tension in each wire.",
        "startOffset": 150,
        "endOffset": 225,
        "url": "https://www.example.com/example?t=30"
      },{
        "@type": ["Clip", "LearningResource"],
        "learningResourceType": "Problem Walkthrough",
        "name": "Example problem 2: exponents",
        "text": "Consider a weight suspended from five wires as shown in Figure. Find the tension in one wire.",
        "startOffset": 275,
        "endOffset": 500,
        "url": "https://www.example.com/example?t=201"
      }],
      "uploadDate": "2018-03-31T08:00:00+08:00"
    }
    </script>
  </head>
  <body>
  </body>
</html>

문제 둘러보기 동영상

이 예에서는 제대로 작동하는 문제 둘러보기 동영상을 만들기 위해 학습 동영상 마크업에 추가해야 하는 모든 속성을 확인할 수 있습니다.


<html>
  <head>
    <title>Problem Walkthrough Learning Video example</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": ["VideoObject", "LearningResource"],
      "name": "Mechanics problem for Grade 10",
      "description": "Video walks through solution for problems in mechanics.",
      "learningResourceType": "Problem Walkthrough",
      "text": "Three balls have a mass of 2kg, 4kg and 6kg each. Find the relative velocity after collision.",
      "contentUrl": "https://www.example.com/video/123/file.mp4",
      "thumbnailUrl": [
        "https://example.com/photos/1x1/photo.jpg",
        "https://example.com/photos/4x3/photo.jpg",
        "https://example.com/photos/16x9/photo.jpg"
      ],
      "uploadDate": "2016-03-31T08:00:00+08:00"
    }
    </script>
  </head>
  <body>
  </body>
</html>

여러 개의 문제 둘러보기 클립

다음은 여러 개의 문제 둘러보기 클립이 포함된 웹페이지의 예입니다. 이 예에서는 제대로 작동하는 문제 둘러보기 클립 마크업을 만들기 위해 동영상 및 클립 수준에서 학습 동영상 마크업에 추가해야 하는 모든 속성을 확인할 수 있습니다.


<html>
  <head>
    <title>Problem Walkthrough in clips in Learning Videos markup</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": ["VideoObject", "LearningResource"],
      "name": "An introduction to XYZ",
      "description": "Solving equations using exponent properties",
      "learningResourceType": "Problem Walkthrough",
      "contentUrl": "https://www.example.com/video/123/file.mp4",
      "text": "Three balls have a mass of 2kg, 4kg and 6kg each. Find the relative velocity after collision.",
      "thumbnailUrl": [
        "https://example.com/photos/1x1/photo.jpg",
        "https://example.com/photos/4x3/photo.jpg",
        "https://example.com/photos/16x9/photo.jpg"
      ],
      "hasPart": [{
        "@type": ["Clip", "LearningResource"],
        "learningResourceType": "Problem Walkthrough",
        "name": "Example problem 1: suspended wires",
        "text": "Consider a weight suspended from two wires. Find the tension in each wire.",
        "startOffset": 150,
        "endOffset": 225,
        "url": "https://www.example.com/example?t=150"
      },{
        "@type": ["Clip", "LearningResource"],
        "learningResourceType": "Problem Walkthrough",
        "name": "Example problem 2: exponents",
        "text": "Consider a weight suspended from five wires. Find the tension in one wire.",
        "startOffset": 275,
        "endOffset": 500,
        "url": "https://www.example.com/example?t=275"
      }],
      "uploadDate": "2018-03-31T08:00:00+08:00"
    }
    </script>
  </head>
  <body>
  </body>
</html>

구조화된 데이터를 추가하는 방법

구조화된 데이터는 페이지 정보를 제공하고 페이지 콘텐츠를 분류하기 위한 표준화된 형식입니다. 구조화된 데이터를 처음 사용한다면 구조화된 데이터의 작동 방식을 자세히 알아보세요.

다음은 구조화된 데이터를 빌드, 테스트 및 출시하는 방법의 개요입니다. 웹페이지에 구조화된 데이터를 추가하는 방법에 관한 단계별 안내는 구조화된 데이터 Codelab을 참고하세요.

  1. 필수 속성을 추가합니다. 사용 중인 형식에 따라 페이지에 구조화된 데이터를 삽입하는 위치를 알아보세요.
  2. 가이드라인을 따릅니다.
  3. 리치 결과 테스트를 사용하여 코드의 유효성을 검사하고 심각한 오류를 해결하세요. 또한 도구에서 신고될 수 있는 심각하지 않은 문제는 구조화된 데이터의 품질을 개선하는 데 도움이 될 수 있으므로 해결하는 것이 좋습니다. 그러나 리치 결과를 사용하기 위한 필수사항은 아닙니다.
  4. 구조화된 데이터를 포함하는 일부 페이지를 배포하고 URL 검사 도구를 사용하여 Google에서 페이지를 표시하는 방법을 테스트합니다. Google이 페이지에 액세스할 수 있으며 robots.txt 파일, noindex 태그 또는 로그인 요구사항에 의해 차단되지 않는지 확인합니다. 페이지가 정상적으로 표시되면 Google에 URL을 재크롤링하도록 요청할 수 있습니다.
  5. Google에 향후 변경사항을 계속 알리려면 사이트맵을 제출하는 것이 좋습니다. 이는 Search Console Sitemap API를 사용하여 자동화할 수 있습니다.

가이드라인

페이지가 학습 동영상 리치 결과에 표시되려면 다음 가이드라인을 따라야 합니다.

기술 가이드라인

  • 학습 동영상 마크업 외에도 VideoObject의 필수 및 권장 속성을 추가해야 합니다.
  • 동영상은 구독 없이도 공개적으로 시청할 수 있어야 합니다.
  • 동영상의 총 재생 시간은 30초 이상이어야 합니다.
  • 학습 동영상 마크업은 사용자가 동영상을 시청할 수 있는 페이지에 추가되어야 합니다. 동영상을 시청할 수 없는 페이지로 사용자를 연결하는 것은 좋은 사용자 환경이 아닙니다.

구조화된 데이터 유형 정의

VideoObjectLearningResource의 전체 정의는 schema.org VideoObjectLearningResource에서 확인할 수 있습니다.

콘텐츠를 학습 동영상 리치 결과에 표시하려면 필수 속성이 있어야 합니다. 권장 속성을 통해 콘텐츠에 관한 정보를 추가하여 더 만족스러운 사용자 환경을 제공할 수 있습니다.

학습 동영상 [VideoObject, LearningResource]

학습 동영상 마크업은 동영상의 교육 콘텐츠를 더욱 많은 사용자에게 표시하기 위한 것입니다. 마크업에는 동영상에서 다룬 다양한 개념과 기술에 관한 정보가 포함될 수 있습니다.

학습 동영상에는 [VideoObject, LearningResource] 유형을 사용하세요. 학습 동영상에는 VideoObject의 필수 및 권장 속성 외에도 다음과 같은 속성을 추가해야 합니다.

필수 속성
educationalAlignment

AlignmentObject

콘텐츠와 관련된 공식적인 표준 코드, 수업, 시험입니다. 콘텐츠가 특정 기준이나 시험과 관련된 경우에만 이 속성을 사용하세요. 그렇지 않은 경우 educationalLevel 속성만 사용해야 합니다. educationalAlignment 속성을 포함하는 경우 해당하는 경우 다음 속성을 추가하세요.

여러 educationalAlignment 값을 제공할 수는 있지만, 모든 값이 학습 동영상 특성에 사용되지 않을 수도 있습니다. 여러 값을 제공하고 해당 기능에서 educationalAlignment 값 하나만 사용할 수 있는 경우에는 제공한 첫 번째 값이 사용됩니다.

예:


"educationalAlignment":
            {
              "@type": "AlignmentObject",
              "educationalFramework": "Common Core",
              "targetName": "CCSS.MATH.CONTENT.7.SP.B.4",
              "targetUrl": "https://www.corestandards.org/Math/Content/7/SP/B/4/"
            }

"educationalAlignment":
            {
              "@type": "AlignmentObject",
              "educationalFramework": "NCERT",
              "targetUrl": "https://ncert.nic.in/"
            }
educationalLevel

Text

동영상에서 대상으로 하는 교육 수준입니다. 대상 교육 수준을 국가별 값 또는 일반 값으로 설정합니다.

국가별 값:

국가별로 학술 체계가 마련되어 있습니다. 동영상에 해당하는 국가를 기준으로 지원되는 수준 값 중 하나로 educationalLevel를 설정하세요.

국가 지원되는 값
알제리
  • Lower Secondary School (DZ)
  • Grade 8 (DZ)
  • Grade 9 (DZ)
  • Upper Secondary School (DZ)
  • Grade 10 (DZ)
  • Grade 11 (DZ)
  • Grade 12 (DZ)
  • Higher Education (DZ)
아르헨티나
  • Secondary (AR)
  • 8th Grade (AR)
  • 9th Grade (AR)
  • 10th Grade (AR)
  • 11th Grade (AR)
  • 12th Grade (AR)
  • Higher Education (AR)
오스트레일리아
  • Secondary School (AU)
  • Year 8 (AU)
  • Year 9 (AU)
  • Year 10 (AU)
  • Senior Secondary School (AU)
  • Year 11 (AU)
  • Year 12 (AU)
  • University (AU)
오스트리아
  • Upper Secondary Level (AT)
  • 9th Grade (AT)
  • 10th Grade (AT)
  • 11th Grade (AT)
  • 12th Grade (AT)
  • Tertiary Level (AT)
아제르바이잔
  • General Secondary Education (AZ)
  • 8th Grade (AZ)
  • 9th Grade (AZ)
  • Full Secondary Education (AZ)
  • 10th Grade (AZ)
  • 11th Grade (AZ)
  • Higher Education (AZ)
바레인
  • Intermediate Stage (BH)
  • Grade 8 (BH)
  • Grade 9 (BH)
  • Secondary Stage (BH)
  • Grade 10 (BH)
  • Grade 11 (BH)
  • Grade 12 (BH)
  • Higher Education (BH)
방글라데시
  • Junior Secondary Education (BD)
  • Grade VIII (BD)
  • Secondary Education (BD)
  • Grade IX (BD)
  • Grade X (BD)
  • Higher Secondary Education (BD)
  • Grade XI (BD)
  • Grade XII (BD)
  • Tertiary Education (BD)
벨라루스
  • Compulsory Basic Education (BY)
  • Grade 8 (BY)
  • Grade 9 (BY)
  • General Upper Secondary Education (BY)
  • Grade 10 (BY)
  • Grade 11 (BY)
  • Grade 12 (BY)
  • Higher Education (BY)
벨기에
  • Secondary Education (BE)
  • 2nd Secondary (BE)
  • 3rd Secondary (BE)
  • 4th Secondary (BE)
  • 5th Secondary (BE)
  • 6th Secondary (BE)
  • Higher Education (BE)
볼리비아
  • Lower Secondary Education (BO)
  • 8th Grade (BO)
  • Upper Secondary Education (BO)
  • 9th Grade (BO)
  • 10th Grade (BO)
  • 11th Grade (BO)
  • 12th Grade (BO)
  • Higher Education (BO)
보스니아 헤르체고비나
  • Primary Education (BA)
  • Grade 8 (BA)
  • Grade 9 (BA)
  • Secondary Education (BA)
  • Grade 10 (BA)
  • Grade 11 (BA)
  • Grade 12 (BA)
  • Grade 13 (BA)
  • Tertiary Education (BA)
브라질
  • Elementary School (BR)
  • 8th Grade (BR)
  • High School (BR)
  • 1st grade (High School) (BR)
  • 2nd grade (High School) (BR)
  • 3rd grade (High School) (BR)
  • Higher Education (BR)
불가리아
  • Secondary Education (BG)
  • 10th Grade (BG)
  • 11th Grade (BG)
  • 12th Grade (BG)
  • Higher Education (BG)
캐나다
  • Intermediate Education (CA)
  • Grade 8 (CA)
  • Grade 9 (CA)
  • Secondary Education (CA)
  • Grade 10 (CA)
  • Grade 11 (CA)
  • Grade 12 (CA)
  • Tertiary Education (CA)
칠레
  • Secondary Education (CL)
  • 9th Grade (CL)
  • 10th Grade (CL)
  • 11th Grade (CL)
  • 12th Grade (CL)
  • Higher Education (CL)
콜롬비아
  • Basic Secondary (CO)
  • 9th Grade (CO)
  • High School Education (CO)
  • 10th Grade (CO)
  • 11th Grade (CO)
  • Tertiary (CO)
코스타리카
  • Secondary Education (CR)
  • Eighth Grade (CR)
  • Ninth Grade (CR)
  • Tenth Grade (CR)
  • Eleventh Grade (CR)
  • Twelfth Grade (CR)
  • Higher Education (CR)
크로아티아
  • Secondary education (HR)
  • 10th Grade (HR)
  • 11th Grade (HR)
  • 12th Grade (HR)
  • Higher Education (HR)
키프로스
  • Secondary Education (CY)
  • Grade 9 (CY)
  • Grade 10 (CY)
  • Grade 11 (CY)
  • Grade 12 (CY)
  • Higher Education (CY)
체코
  • Upper Secondary Education (CZ)
  • Grade 10 (CZ)
  • Grade 11 (CZ)
  • Grade 12 (CZ)
  • Higher Education (CZ)
덴마크
  • Secondary Education (DK)
  • 8th Grade (DK)
  • 9th Grade (DK)
  • 10th Grade (DK)
  • Upper Secondary Education (DK)
  • 11th Grade (DK)
  • 12th Grade (DK)
  • Higher Education (DK)
도미니카 공화국
  • Primary School (DO)
  • Grade 8 (DO)
  • Secondary School (DO)
  • Grade 1 (Secondary School) (DO)
  • Grade 2 (Secondary School) (DO)
  • Grade 3 (Secondary School) (DO)
  • Grade 4 (Secondary School) (DO)
  • Higher Education (DO)
  • Doctorate (DO)
에콰도르
  • Secondary (EC)
  • Eighth Grade (EC)
  • Ninth Grade (EC)
  • Tenth Grade (EC)
  • Eleventh Grade (EC)
  • Twelfth Grade (EC)
  • Tertiary Education (EC)
이집트
  • Preparatory Stage (EG)
  • Grade 8 (EG)
  • Grade 9 (EG)
  • Secondary Education (EG)
  • Grade 10 (EG)
  • Grade 11 (EG)
  • Grade 12 (EG)
  • Higher Education (EG)
엘살바도르
  • 3rd Cycle (SV)
  • 7th Grade (SV)
  • 8th Grade (SV)
  • 9th Grade (SV)
  • Middle Education (SV)
  • 10th Grade (SV)
  • 11th Grade (SV)
  • Higher Education (SV)
잉글랜드
  • Key Stage 3 (GB-ENG)
  • Year 9 (GB-ENG)
  • Key Stage 4 (GB-ENG)
  • Year 10 (GB-ENG)
  • Year 11 (GB-ENG)
  • Key Stage 5 (GB-ENG)
  • Year 12 (GB-ENG)
  • Year 13 (GB-ENG)
  • Higher Education (GB-ENG)
에스토니아
  • Basic Education (EE)
  • 7th Grade (EE)
  • 8th Grade (EE)
  • 9th Grade (EE)
  • Secondary Education (EE)
  • 10th Grade (EE)
  • 11th Grade (EE)
  • 12th Grade (EE)
  • Higher Education (EE)
핀란드
  • Basic Education (FI)
  • 7th Grade (FI)
  • 8th Grade (FI)
  • 9th Grade (FI)
  • Upper Secondary Education (FI)
  • 10th Grade (FI)
  • 11th Grade (FI)
  • 12th Grade (FI)
  • Higher Education (FI)
프랑스
  • Lycée (FR)
  • Seconde (FR)
  • Première (FR)
  • Terminale (FR)
조지아
  • Basic Education (GE)
  • Grade 8 (GE)
  • Grade 9 (GE)
  • Secondary Education (GE)
  • Grade 10 (GE)
  • Grade 11 (GE)
  • Grade 12 (GE)
  • Tertiary Education (GE)
독일
  • Gymnasium (DE)
  • 11th Grade (Gymnasium) (DE)
  • 12th Grade (Gymnasium) (DE)
  • 13th Grade (Gymnasium) (DE)
  • University (DE)
가나
  • Junior Secodary School (GH)
  • Grade 8 (GH)
  • Grade 9 (GH)
  • Senior Secondary School (GH)
  • Grade 10 (GH)
  • Grade 11 (GH)
  • Grade 12 (GH)
  • Higher Education (GH)
그리스
  • Upper Secondary School (GR)
  • 1st Grade (Lyceum) (GR)
  • 2nd Grade (Lyceum) (GR)
  • 3rd Grade (Lyceum) (GR)
  • Tertiary Education (GR)
과테말라
  • Lower Secondary (GT)
  • Grade 7 (GT)
  • Grade 8 (GT)
  • Grade 9 (GT)
  • Upper Secondary (GT)
  • Grade 10 (GT)
  • Grade 11 (GT)
  • Grade 12 (GT)
  • Higher Education (GT)
온두라스
  • Lower Secondary Education (HN)
  • 8th Grade (HN)
  • 9th Grade (HN)
  • Upper Secondary Education (HN)
  • 10th Grade (HN)
  • 11th Grade (HN)
  • 12th Grade (HN)
  • Tertiary Education (HN)
홍콩
  • Junior Secondary (HK)
  • Secondary 2 (HK)
  • Secondary 3 (HK)
  • Senior Secondary (HK)
  • Secondary 4 (HK)
  • Secondary 5 (HK)
  • Secondary 6 (HK)
  • University (HK)
헝가리
  • Upper Secondary Education (HU)
  • 11th Grade (HU)
  • 12th Grade (HU)
  • 13th Grade (HU)
  • Higher Education (HU)
아이슬란드
  • Primary Education (IS)
  • Grade 8 (IS)
  • Grade 9 (IS)
  • Grade 10 (IS)
  • Upper Secondary Education (IS)
  • 11th Grade (IS)
  • 12th Grade (IS)
  • 13th Grade (IS)
  • Higher Education (IS)
인도
  • Middle Stage (IN)
  • Class 8 (IN)
  • Secondary School (IN)
  • Class 9 (IN)
  • Class 10 (IN)
  • Senior Secondary School (IN)
  • Class 11 (IN)
  • Class 12 (IN)
  • Undergraduate college (IN)
  • Post-graduate college (IN)
인도네시아
  • Middle School (ID)
  • 8th Grade (ID)
  • 9th Grade (ID)
  • High School (ID)
  • 10th Grade (ID)
  • 11th Grade (ID)
  • 12th Grade (ID)
  • Tertiary Education (ID)
이라크
  • Intermediate Education (IQ)
  • Eighth Grade (IQ)
  • Ninth Grade (IQ)
  • Preparatory Education (IQ)
  • Tenth Grade (IQ)
  • Eleventh Grade (IQ)
  • Twelfth Grade (IQ)
  • Higher Education (IQ)
아일랜드
  • Senior Cycle (IE)
  • Transition Year (IE)
  • Fifth Year (IE)
  • Sixth Year (IE)
  • University (IE)
이스라엘
  • Intermediate School (IL)
  • Grade 8 (IL)
  • Grade 9 (IL)
  • Secondary School (IL)
  • Grade 10 (IL)
  • Grade 11 (IL)
  • Grade 12 (IL)
  • University (IL)
  • Doctorate (IL)
이탈리아
  • Upper Secondary Education (IT)
  • 2nd upper (IT)
  • 3rd upper (IT)
  • 4th upper (IT)
  • 5th upper (IT)
  • Higher Education (IT)
자메이카
  • Secondary Education (JM)
  • Grade 8 (JM)
  • Grade 9 (JM)
  • Grade 10 (JM)
  • Grade 11 (JM)
  • Grade 12 (JM)
  • Tertiary Education (JM)
일본
  • Lower Secondary School (JP)
  • Grade 2 (lower secondary) (JP)
  • Grade 3 (lower secondary) (JP)
  • Upper Secondary School (JP)
  • Grade 1 (upper secondary) (JP)
  • Grade 2 (upper secondary) (JP)
  • Grade 3 (upper secondary) (JP)
  • Higher Education (JP)
요르단
  • Basic Education (JO)
  • Grade 8 (JO)
  • Grade 9 (JO)
  • Grade 10 (JO)
  • Secondary Education (JO)
  • Grade 11 (JO)
  • Grade 12 (JO)
  • Higher Education (JO)
  • Doctorate (JO)
카자흐스탄
  • Lower Secondary School (KZ)
  • Grade 7 (KZ)
  • Grade 8 (KZ)
  • Grade 9 (KZ)
  • Upper Secondary School (KZ)
  • Grade 10 (KZ)
  • Grade 11 (KZ)
  • Tertiary Institutions (KZ)
케냐
  • Upper Primary (KE)
  • Standard 8 (KE)
  • High School (KE)
  • Standard 9 (KE)
  • Standard 10 (KE)
  • Standard 11 (KE)
  • Standard 12 (KE)
  • Higher Education (KE)
쿠웨이트
  • Intermediate Education (KW)
  • Grade 8 (KW)
  • Grade 9 (KW)
  • Secondary Education (KW)
  • Grade 10 (KW)
  • Grade 11 (KW)
  • Grade 12 (KW)
  • Higher Education (KW)
라트비아
  • Primary Education (LV)
  • Grade 7 (LV)
  • Grade 8 (LV)
  • Senior Secondary Education (LV)
  • Grade 10 (LV)
  • Grade 11 (LV)
  • Grade 12 (LV)
  • Higher Education (LV)
레바논
  • Intermediate Level (LB)
  • Grade 8 (LB)
  • Grade 9 (LB)
  • Secondary Education (LB)
  • Grade 10 (LB)
  • Grade 11 (LB)
  • Grade 12 (LB)
  • Tertiary Education (LB)
리비아
  • Primary Education (LY)
  • Grade 8 (LY)
  • Grade 9 (LY)
  • Secondary Education (LY)
  • Grade 10 (LY)
  • Grade 11 (LY)
  • Grade 12 (LY)
  • Tertiary Education (LY)
리히텐슈타인
  • Middle School (LI)
  • 7th Grade (LI)
  • 8th Grade (LI)
  • 9th Grade (LI)
  • High School (LI)
  • 10th Grade (LI)
  • 11th Grade (LI)
  • 12th Grade (LI)
  • Tertiary Education (LI)
리투아니아
  • Lower Secondary Education (LT)
  • Grade 8 (LT)
  • Grade 9 (LT)
  • Grade 10 (LT)
  • Upper Secondary Education (LT)
  • Grade 11 (LT)
  • Grade 12 (LT)
  • Higher Education (LT)
룩셈부르크
  • Upper Secondary Education (LU)
  • 3 G (LU)
  • 2 G (LU)
  • 1 G (LU)
  • Higher Education (LU)
말레이시아
  • Secondary (MY)
  • Form 2 (MY)
  • Form 3 (MY)
  • Form 4 (MY)
  • Form 5 (MY)
  • Pre-university (MY)
  • Lower Form 6 (MY)
  • Upper Form 6 (MY)
  • Post-secondary Education (MY)
몰타
  • Secondary Education (MT)
  • Grade 9 (MT)
  • Grade 10 (MT)
  • Grade 11 (MT)
  • Post-Secondary Education (MT)
  • Tertiary Education (MT)
  • Postgraduate Education (MT)
멕시코
  • Lower Secondary Education (MX)
  • Grade 8 (MX)
  • Grade 9 (MX)
  • Upper Secondary Education (MX)
  • Grade 10 (MX)
  • Grade 11 (MX)
  • Grade 12 (MX)
  • Tertiary Education (MX)
몬테네그로
  • Primary Education (ME)
  • Grade 8 (ME)
  • Grade 9 (ME)
  • Secondary Education (ME)
  • Grade 10 (ME)
  • Grade 11 (ME)
  • Grade 12 (ME)
  • Grade 13 (ME)
  • Higher Education (ME)
모로코
  • Lower Secondary (MA)
  • Grade 8 (MA)
  • Grade 9 (MA)
  • Upper Secondary (MA)
  • Grade 10 (MA)
  • Grade 11 (MA)
  • Grade 12 (MA)
  • Tertiary (MA)
네팔
  • Secondary (NP)
  • Year 9 (NP)
  • Year 10 (NP)
  • Senior Higher Secondary (NP)
  • Year 11 (NP)
  • Year 12 (NP)
네덜란드
  • Secondary Education (NL)
  • 5th Year (HAVO) (NL)
  • Higher Education (NL)
뉴질랜드
  • Year 9-13 Secondary School (NZ)
  • Year 9 (NZ)
  • Year 10 (NZ)
  • Year 11 (NZ)
  • Year 12 (NZ)
  • Year 13 (NZ)
  • University (NZ)
  • Doctorate (NZ)
니카라과
  • Lower Secondary Education (NI)
  • Grade 8 (NI)
  • Grade 9 (NI)
  • Higher Secondary Education (NI)
  • Grade 10 (NI)
  • Grade 11 (NI)
  • Tertiary Education (NI)
나이지리아
  • Junior Secondary Education (NG)
  • Grade 8 (NG)
  • Grade 9 (NG)
  • Senior Secondary Education (NG)
  • Grade 10 (NG)
  • Grade 11 (NG)
  • Grade 12 (NG)
  • University (NG)
  • Doctorate (NG)
북마케도니아
  • Primary Education (MK)
  • Grade 7 (MK)
  • Grade 8 (MK)
  • Secondary Education (MK)
  • Grade 9 (MK)
  • Grade 10 (MK)
  • Grade 11 (MK)
  • Grade 12 (MK)
  • Higher Education (MK)
북아일랜드
  • Key Stage 3 (GB-NIR)
  • Year 10 (GB-NIR)
  • Key Stage 4 (GB-NIR)
  • Year 11 (GB-NIR)
  • Year 12 (GB-NIR)
  • Key Stage 5 (GB-NIR)
  • Higher Education (GB-NIR)
노르웨이
  • Lower Secondary School (NO)
  • 8th Grade (NO)
  • 9th Grade (NO)
  • 10th Grade (NO)
  • Upper Secondary School (NO)
  • VG1 (NO)
  • VG2 (NO)
  • VG3 (NO)
  • Higher Education (NO)
오만
  • Basic Education (OM)
  • Grade 8 (OM)
  • Grade 9 (OM)
  • Grade 10 (OM)
  • Secondary Education (OM)
  • Grade 11 (OM)
  • Grade 12 (OM)
  • Higher Education (OM)
  • Doctorate (OM)
파키스탄
  • Middle School (PK)
  • Class 8 (PK)
  • High School (PK)
  • Class 9 (PK)
  • Class 10 (PK)
  • Higher Secondary School (PK)
  • Class 11 (PK)
  • Class 12 (PK)
  • University (PK)
파나마
  • First Step of Secondary Level (PA)
  • Grade Eight (PA)
  • Grade Nine (PA)
  • Second Step of Secondary Level (PA)
  • Grade Ten (PA)
  • Grade Eleven (PA)
  • Grade Twelve (PA)
  • Higher Education (PA)
파푸아뉴기니
  • Middle (PG)
  • Grade 7 (PG)
  • Grade 8 (PG)
  • Grade 9 (PG)
  • Grade 10 (PG)
  • Secondary (PG)
  • Grade 11 (PG)
  • Grade 12 (PG)
  • Tertiary (PG)
파라과이
  • Primary Education (PY)
  • 8th Grade (PY)
  • 9th Grade (PY)
  • Upper Secondary Education (PY)
  • 10th Grade (PY)
  • 11th Grade (PY)
  • 12th Grade (PY)
  • Tertiary Education (PY)
페루
  • Secondary School (PE)
  • 9th Grade (PE)
  • 10th Grade (PE)
  • 11th Grade (PE)
  • Higher Education (PE)
필리핀
  • Junior High School (PH)
  • Grade 8 (PH)
  • Grade 9 (PH)
  • Grade 10 (PH)
  • Senior High School (PH)
  • Grade 11 (PH)
  • Grade 12 (PH)
  • Tertiary Education (PH)
폴란드
  • Upper Secondary Education (PL)
  • Grade 2 (high school) (PL)
  • Grade 3 (high school) (PL)
  • Grade 4 (high school) (PL)
  • Higher Education (PL)
포르투갈
  • Basic Education (PT)
  • 8th Year (PT)
  • 9th Year (PT)
  • Secondary Education (PT)
  • 10th Year (PT)
  • 11th Year (PT)
  • 12th Year (PT)
  • Tertiary Education (PT)
푸에르토리코
  • Junior High School (PR)
  • Eighth Grade (PR)
  • Ninth Grade (PR)
  • High School (PR)
  • Tenth Grade (PR)
  • Eleventh Grade (PR)
  • Twelfth Grade (PR)
  • Higher Education (PR)
카타르
  • Preparatory Education (QA)
  • Grade 8 (QA)
  • Grade 9 (QA)
  • Secondary Education (QA)
  • Grade 10 (QA)
  • Grade 11 (QA)
  • Grade 12 (QA)
  • University (QA)
  • Doctorate (QA)
루마니아
  • Secondary School (RO)
  • Class X (RO)
  • Class XI (RO)
  • Class XII (RO)
  • Higher Education (RO)
러시아
  • Basic General Education (RU)
  • Eighth Grade (RU)
  • Ninth Grade (RU)
  • Secondary General Education (RU)
  • Tenth Grade (RU)
  • Eleventh Grade (RU)
  • Postsecondary and Tertiary Education (RU)
사우디아라비아
  • Intermediate Education (SA)
  • Grade 8 (SA)
  • Grade 9 (SA)
  • Secondary Education (SA)
  • Grade 10 (SA)
  • Grade 11 (SA)
  • Grade 12 (SA)
  • Tertiary Education (SA)
스코틀랜드
  • Secondary School (GB-SCT)
  • Second Year (S2) (GB-SCT)
  • Third Year (S3) (GB-SCT)
  • Fourth Year (S4) (GB-SCT)
  • Fifth Year (S5) (GB-SCT)
  • Higher Education (GB-SCT)
  • Doctorate (GB-SCT)
세네갈
  • Lower Secondary Education (SN)
  • Grade 8 (SN)
  • Grade 9 (SN)
  • Grade 10 (SN)
  • Upper Secondary Education (SN)
  • Grade 11 (SN)
  • Grade 12 (SN)
  • Grade 13 (SN)
  • Tertiary Education (SN)
세르비아
  • Secondary-High School (RS)
  • Year 2 (RS)
  • Year 3 (RS)
  • Year 4 (RS)
  • Higher Education (RS)
싱가포르
  • Secondary Education (SG)
  • Secondary 1 (SG)
  • Secondary 2 (SG)
  • Secondary 3 (SG)
  • Secondary 4 (SG)
  • Secondary 5 (SG)
  • Post-secondary Education (SG)
슬로바키아
  • High School (SK)
  • 2nd Grade (High School) (SK)
  • 3rd Grade (High School) (SK)
  • 4th Grade (High School) (SK)
  • Post-Secondary Education (SK)
슬로베니아
  • Upper Secondary Education (SI)
  • Grade 11 (SI)
  • Grade 12 (SI)
  • Grade 13 (SI)
  • Tertiary Education (SI)
남아프리카 공화국
  • Senior Phase (ZA)
  • Grade 8 (ZA)
  • Grade 9 (ZA)
  • Further Education and Training (ZA)
  • Grade 10 (ZA)
  • Grade 11 (ZA)
  • Grade 12 (ZA)
  • Higher Education and Training (ZA)
대한민국
  • Middle School (KR)
  • 3rd Grade (KR)
  • High School (KR)
  • 1st Grade (KR)
  • 2nd Grade (KR)
  • 3rd Grade (KR)
  • Higher Education (KR)
스페인
  • Lower Secondary Education (ES)
  • Grade 9 (ES)
  • Grade 10 (ES)
  • Upper Secondary Education (ES)
  • Grade 11 (ES)
  • Grade 12 (ES)
  • Tertiary education (ES)
스리랑카
  • Junior Secondary (LK)
  • Grade 9 (LK)
  • Senior Secondary (LK)
  • Grade 10 (LK)
  • Grade 11 (LK)
  • Collegiate (LK)
  • Grade 12 (LK)
  • Grade 13 (LK)
  • Tertiary Education (LK)
스웨덴
  • Comprehensive School (SE)
  • 7th Grade (SE)
  • 8th Grade (SE)
  • 9th Grade (SE)
  • Upper Secondary Education (SE)
  • 1st Grade (SE)
  • 2nd Grade (SE)
  • 3rd Grade (SE)
  • University (SE)
스위스
  • Lower Secondary Level (CH)
  • Grade 8 (CH)
  • Grade 9 (CH)
  • Upper Secondary Level (CH)
  • Grade-1 (CH)
  • Grade-2 (CH)
  • Grade-3 (CH)
  • Tertiary Level (CH)
타이완
  • Junior High School (TW)
  • 8th Grade (TW)
  • 9th Grade (TW)
  • Senior High School (TW)
  • 10th Grade (TW)
  • 11th Grade (TW)
  • 12th Grade (TW)
  • Tertiary Education (TW)
탄자니아
  • Primary Education (TZ)
  • Grade 7 (TZ)
  • Lower Secondary (TZ)
  • Grade 8 (TZ)
  • Grade 9 (TZ)
  • Grade 10 (TZ)
  • Grade 11 (TZ)
  • Grade 12 (TZ)
  • Upper Secondary (TZ)
  • University (TZ)
  • Doctorate (TZ)
태국
  • Lower Secondary (TH)
  • Eighth Grade (TH)
  • Ninth Grade (TH)
  • Upper Secondary (TH)
  • Tenth Grade (TH)
  • Eleventh Grade (TH)
  • Twelfth Grade (TH)
  • Higher Education (TH)
튀니지
  • Basic Education (TN)
  • Eighth Grade (TN)
  • Ninth Grade (TN)
  • Secondary Education (TN)
  • Tenth Grade (TN)
  • Eleventh Grade (TN)
  • Twelfth Grade (TN)
  • Tertiary Education (TN)
튀르키예
  • Primary Education (TR)
  • 8th Grade (TR)
  • High School (TR)
  • 9th Grade (TR)
  • 10th Grade (TR)
  • 11th Grade (TR)
  • 12th Grade (TR)
  • Higher Education (TR)
우간다
  • Lower Secondary Education (UG)
  • Eighth Grade (UG)
  • Ninth Grade (UG)
  • Tenth Grade (UG)
  • Eleventh Grade (UG)
  • Upper Secondary Education (UG)
  • Twelfth Grade (UG)
  • Thirteenth Grade (UG)
  • Post-Secondary Education (UG)
우크라이나
  • Secondary Base School (UA)
  • 8th Grade (UA)
  • 9th Grade (UA)
  • Secondary Last School (UA)
  • 10th Grade (UA)
  • 11th Grade (UA)
  • 12th Grade (UA)
  • Higher Education (UA)
아랍에미리트 연합
  • Intermediate Level (AE)
  • Grade 8 (AE)
  • Secondary Level (AE)
  • Grade 9 (AE)
  • Grade 10 (AE)
  • Grade 11 (AE)
  • Grade 12 (AE)
  • Higher Education (AE)
미국
  • Middle School (US)
  • Eighth Grade (US)
  • High School (US)
  • Ninth Grade (US)
  • Tenth Grade (US)
  • Eleventh Grade (US)
  • Twelfth Grade (US)
  • College (US)
  • Graduate School (US)
베네수엘라
  • Middle Education (VE)
  • Grade 9 (VE)
  • Diversified Education (VE)
  • Grade 10 (VE)
  • Grade 11 (VE)
  • Grade 12 (VE)
  • Higher Education School (VE)
베트남
  • Upper Secondary Education (VN)
  • Tenth Grade (VN)
  • Eleventh Grade (VN)
  • Twelfth Grade (VN)
  • Higher Education (VN)
웨일즈
  • Key Stage 4 (GB-WLS)
  • Year 10 (GB-WLS)
  • Year 11 (GB-WLS)
  • Key Stage 5 (GB-WLS)
  • Year 12 (GB-WLS)
  • Year 13 (GB-WLS)
  • Higher Education (GB-WLS)
예멘
  • Basic Education (YE)
  • Grade 8 (YE)
  • Grade 9 (YE)
  • Secondary Education (YE)
  • Grade 10 (YE)
  • Grade 11 (YE)
  • Grade 12 (YE)
  • University Education (YE)
짐바브웨
  • Secondary Education (ZW)
  • Grade 8 (ZW)
  • Grade 9 (ZW)
  • Grade 10 (ZW)
  • Grade 11 (ZW)
  • Grade 12 (ZW)
  • Grade 13 (ZW)
  • Tertiary Education (ZW)

예:


"educationalLevel": "10th Grade (AR)"

일반 값:

다음의 일반 값 중 하나만 educationalLevel로 지정할 수 있습니다.

  • Beginner: 콘텐츠를 이해하는 데 사전 지식이 필요하지 않습니다.
  • Intermediate: 콘텐츠를 이해하는 데 약간의 지식이 필요할 수 있습니다.
  • Advanced: 이 콘텐츠는 주제에 관한 사전 지식을 갖추고 있는 고급 학습자를 대상으로 합니다.

"educationalLevel": "Beginner"
learningResourceType

Text

동영상에서 달성하고자 하는 목적에 따른 동영상 콘텐츠 유형입니다. 이 속성은 동영상 수준(동영상에 콘텐츠 유형이 하나만 있는 경우) 또는 클립 수준(동영상에 콘텐츠 유형이 두 개 이상인 경우)에서 사용할 수 있습니다. 아래 목록에서 허용되는 값의 예를 확인할 수 있습니다. 동영상이 위에 설명된 어떠한 값과도 맞지 않는 경우 새로운 값을 만들 수 있습니다. Search Console에서는 새로운 값을 지원하는 방안을 고려하고 있습니다. 값이 아래 명시된 값으로 설정되지 않은 경우 학습 유형 정보가 어떠한 검색결과 기능에서도 사용되지 않을 수 있습니다.

    • Concept overview: 주제 또는 개념을 설명하는 동영상입니다.
    • Problem walkthrough: 수학 또는 과학 단어 문제와 같은 학습 문제를 풀기 위한 방법이나 단계를 보여주는 동영상입니다.
    • Real life example: 개념이 실제로 어떻게 적용되거나 사용되는지 보여주는 동영상입니다.
    • Activity: 예시, 즉흥 게임, 개념 지도, 동료 리뷰, 강제 토론 등 학습 활동을 시연하거나 적용하는 모습을 보여주는 동영상입니다.
    • Experiment: 실험을 보여주는 동영상입니다.
    • Lecture: 수업, 강의, 웹 세미나를 보여주는 동영상입니다.
    • How-to: 어떤 일을 하는 방법 또는 일련의 단계를 알려주는 동영상입니다. 단계별 STEM 문제 풀이를 제공하는 동영상의 경우 Problem walkthrough 유형을 사용하세요.
    • Tips: 도움말 및 유용한 정보를 공유하는 동영상입니다.
    
    "learningResourceType": "Problem walkthrough"
권장 속성
educationalAlignment.educationalFramework

Text

콘텐츠와 관련된 공식적인 표준입니다.


"educationalFramework": "Common Core"
educationalAlignment.targetName

Text

표준 코드 또는 노드(예: CCSS.MATH.CONTENT.7.SP.B.4, AP physics A, CCSS.MATH)입니다.


"targetName": "CCSS.MATH.CONTENT.7.SP.B.4"
educationalAlignment.targetUrl

Url

표준을 설명하는 URL입니다.


"targetUrl": "https://www.corestandards.org/Math/Content/8/EE/A/2/"
hasPart

Clip

동영상의 클립 목록입니다. 각 클립은 특정 주제나 문제에 초점을 맞춰야 합니다.

교육용 Clip 객체의 필수 속성과 권장 속성 목록은 별도의 표에 나열되어 있습니다.

다음은 문제 둘러보기 클립의 예입니다.


{
  "@type": ["Clip","LearningResource"],
  "learningResourceType": "Problem Walkthrough",
  "name": "Example 1",
  "text": "Consider a weight suspended from five wires as shown in Figure. Find the tension in one wire.",
  "startOffset": 201,
  "url": "https://www.example.com/example?t=201"
}

다음은 어떤 개념을 간단히 살펴보는 클립의 예입니다.


{
  "@type": ["Clip","LearningResource"],
  "learningResourceType": "Concept Overview",
  "name": "ABC Law",
  "startOffset": 501,
  "url": "https://www.example.com/example?t=501"
}
text

Text

동영상에서 풀이가 제공되는 문제의 텍스트입니다. 이 속성에는 문제 제목뿐 아니라 전체 문제가 포함되어야 합니다.

동영상에서 2개 이상의 문제 풀이가 제공되는 경우 Clip 수준에서 동일한 속성을 사용할 수 있습니다.


"text": "Consider a weight suspended from two wires as shown in Figure. Find the tension in each wire."

학습 클립[Clip, LearningResource]

학습 클립을 학습 동영상의 hasPart 속성으로 지정할 수 있습니다. 다음은 클립에 권장되는 속성 목록입니다.

[Clip, LearningResource] 유형을 사용해 학습 클립을 태그합니다. 학습 클립에는 Clip의 필수 및 권장 속성 외에도 다음과 같은 속성을 추가해야 합니다.

권장 속성
learningResourceType

Text

클립에서 달성하고자 하는 목적에 따른 클립 콘텐츠 유형입니다. 클립에서 문제의 단계별 해답을 다루는 경우 값을 "Problem walkthrough"로 설정할 수 있습니다. 클립에서 개념에 관한 설명을 제공한다면 값을 "Concept overview"로 설정할 수 있습니다.

아래 목록에서 허용되는 값의 예를 확인할 수 있습니다. 클립이 위에 설명된 어떠한 값과도 맞지 않는 경우 새로운 값을 만들 수 있습니다. Search Console에서는 새로운 값을 지원하는 방안을 고려하고 있습니다. 값이 아래 명시된 값으로 설정되지 않은 경우 이 정보가 어떠한 검색결과 기능에서도 사용되지 않을 수 있습니다.

사용 가능한 값은 다음과 같습니다.

  • Concept overview: 주제 또는 개념을 설명하는 클립입니다.
  • Problem walkthrough: 수학 또는 과학 단어 문제와 같은 학습 문제를 풀기 위한 방법이나 단계를 보여주는 클립입니다.
  • Real life application: 개념이 실제로 어떻게 적용되거나 사용되는지 보여주는 클립입니다.
  • Activity: 예시, 즉흥 게임, 개념 지도, 동료 리뷰, 강제 토론 등 학습 활동을 시연하거나 적용하는 모습을 보여주는 클립입니다.
  • Science experiment: 과학 실험을 보여주는 클립입니다.
  • Lecture: 수업, 강의, 웹 세미나를 보여주는 클립입니다.
  • How-to: 어떤 일을 하는 방법 또는 일련의 단계를 알려주는 클립입니다. 단계별 STEM 문제 풀이를 제공하는 클립의 경우 Problem walkthrough 유형을 사용하세요.
  • Tips: 도움말 및 유용한 정보를 공유하는 클립입니다.

"learningResourceType": "Problem walkthrough"

문제 둘러보기 동영상 [VideoObject, LearningResource]

문제 둘러보기 동영상은 학습 동영상의 하위 유형으로, 문제에 대한 단계별 풀이를 제공합니다.

문제 둘러보기 동영상에는 [VideoObject, LearningResource] 유형을 사용하세요. 문제 둘러보기 동영상에는 VideoObject의 필수 속성 및 권장 속성 외에도 다음과 같은 속성을 추가해야 합니다.

필수 속성
learningResourceType

Text

동영상에서 달성하고자 하는 목적에 따른 동영상 콘텐츠 유형입니다. 문제 둘러보기 동영상의 경우 '문제 둘러보기'로 설정해야 합니다.


"learningResourceType": "Problem walkthrough"
권장 속성
hasPart

Clip

동영상의 클립 목록입니다. 각 클립은 특정 문제에 초점을 맞춰야 합니다.

교육용 Clip 객체의 필수 속성과 권장 속성 목록은 별도의 표에 나열되어 있습니다.

다음은 문제 둘러보기가 있는 클립의 예입니다.


[
  {
    "@type": ["Clip","LearningResource"],
    "learningResourceType": "Problem Walkthrough",
    "name": "Example 1",
    "text": "Consider a weight suspended from five wires as shown in Figure. Find the tension in one wire.",
    "startOffset": 201,
    "url": "https://www.example.com/example?t=201"
  },
  {
    "@type": ["Clip","LearningResource"],
    "learningResourceType": "Problem Walkthrough",
    "name": "Example 2",
    "text": "Consider two weights suspended from five wires as shown in Figure. Find the tension in all wires.",
    "startOffset": 501,
    "url": "https://www.example.com/example?t=501"
  }
]
text

Text

동영상에서 풀이가 제공되는 문제의 텍스트입니다.

동영상에서 2개 이상의 문제 풀이가 제공되는 경우 Clip 수준에서 동일한 속성을 사용할 수 있습니다.


"text": "Consider a weight suspended from two wires as shown in Figure. Find the tension in each wire."

문제 둘러보기 클립[Clip, LearningResource]

문제 둘러보기 클립을 학습 동영상의 hasPart 속성으로 지정할 수 있습니다. 문제 둘러보기 클립은 문제에 대한 단계별 솔루션이 포함된 학습 클립의 하위 유형입니다. 다음은 문제 둘러보기 클립의 필수 속성 목록입니다.

학습 클립에는 [Clip, LearningResource] 유형을 사용하세요. 문제 둘러보기 클립에는 Clip의 필수 속성 및 권장 속성과 함께 다음과 같은 속성을 추가해야 합니다.

필수 속성
learningResourceType

Text

클립에서 문제의 단계별 해답을 다루는 경우 값을 "Problem walkthrough"로 설정해야 합니다.


"learningResourceType": "Problem walkthrough"
권장 속성
text

Text

클립에서 풀이가 제공되는 문제의 텍스트입니다.


"text": "Consider a weight suspended from two wires as shown in Figure. Find the tension in each wire."

Search Console로 리치 결과 모니터링하기

Search Console은 Google 검색에서의 페이지 실적을 모니터링하는 데 도움이 되는 도구입니다. Search Console에 가입해야만 페이지가 Google 검색결과에 포함되는 것은 아니지만, 가입하면 Google에서 사이트를 인식하는 방식을 이해하고 개선하는 데 도움이 될 수 있습니다. 다음과 같은 경우 Search Console을 확인하는 것이 좋습니다.

  1. 구조화된 데이터를 처음 배포한 후
  2. 새 템플릿을 출시하거나 코드를 업데이트한 후
  3. 주기적으로 트래픽 분석

구조화된 데이터를 처음 배포한 후

Google에서 페이지의 색인을 생성하고 나면 관련 리치 결과 상태 보고서를 사용하여 문제를 확인합니다. 유효한 항목 수가 증가하고 잘못된 항목 수는 증가하지 않는 것이 가장 좋습니다. 구조화된 데이터에 문제가 있는 경우 다음과 같이 해결하세요.

  1. 잘못된 항목을 수정하세요.
  2. 실제 URL을 검사하여 문제가 지속되는지 확인합니다.
  3. 상태 보고서를 사용하여 유효성 검사를 요청합니다.

새 템플릿을 출시하거나 코드를 업데이트한 후

웹사이트를 대폭 변경한 후 구조화된 데이터의 잘못된 항목이 증가하는지 모니터링하세요.
  • 잘못된 항목이 증가했다면 새로 출시한 템플릿이 제대로 작동하지 않거나 사이트가 기존의 템플릿과 좋지 않은 방식으로 상호작용하게 된 것일 수 있습니다.
  • 유효한 항목이 감소했다면(잘못된 항목 증가와 일치하지 않음) 페이지에 구조화된 데이터를 더 이상 삽입하지 않는 것일 수 있습니다. URL 검사 도구를 사용하여 문제를 일으키는 원인을 알아보세요.

주기적으로 트래픽 분석

실적 보고서를 사용하여 Google 검색 트래픽을 분석합니다. 데이터를 통해 페이지가 Google 검색의 리치 결과로 표시되는 빈도, 사용자가 검색결과를 클릭하는 빈도, 검색결과에 표시되는 평균 게재순위를 확인할 수 있습니다. Search Console API를 사용하여 이러한 결과를 자동으로 가져오는 방법도 있습니다.

문제 해결

구조화된 데이터를 구현하거나 디버깅하는 데 문제가 있다면 다음 리소스를 참고하세요.

  • 콘텐츠 관리 시스템(CMS)을 사용하거나 다른 사람이 내 사이트를 관리한다면 도움을 요청하세요. 문제를 자세히 설명하는 모든 Search Console 메시지를 CMS나 관리자에게 전달해야 합니다.
  • Google은 구조화된 데이터를 사용하는 기능이라고 해서 검색결과에 표시된다고 보장하지 않습니다. Google에서 콘텐츠를 리치 결과로 표시할 수 없는 일반적인 이유 목록은 구조화된 데이터 일반 가이드라인을 참고하세요.
  • 구조화된 데이터에 오류가 있을 수 있습니다. 구조화된 데이터의 오류 목록을 확인하세요.
  • 페이지에 구조화된 데이터 직접 조치를 취하는 경우 페이지에 있는 구조화된 데이터는 무시됩니다. 하지만 페이지는 계속 Google 검색결과에 표시될 수 있습니다. 구조화된 데이터 문제를 해결하려면 직접 조치 보고서를 사용하세요.
  • 가이드라인을 다시 검토하여 콘텐츠가 가이드라인을 준수하지 않는지 확인합니다. 스팸성 콘텐츠 또는 스팸성 마크업의 사용으로 인해 문제가 발생할 수 있습니다. 하지만 해당 문제가 구문 문제가 아닐 수도 있고, 이 경우 리치 결과 테스트에서는 이 문제를 식별할 수 없습니다.
  • 누락된 리치 결과/총 리치 결과 수 감소 문제를 해결하세요.
  • 다시 크롤링이 이루어지고 색인이 생성될 때까지 기다리세요. 페이지가 게시된 후 Google에서 페이지를 찾고 크롤링하기까지 며칠 정도 걸릴 수 있습니다. 크롤링 및 색인 생성에 관한 일반적인 질문은 Google 검색 크롤링 및 색인 생성 FAQ를 참고하세요.
  • Google 검색 센터 포럼에 질문을 올려보세요.

콘텐츠가 구조화된 데이터와 일치하지 않음

문제를 일으킨 원인: 페이지에 구조화된 데이터와 일치하지 않는 콘텐츠가 있습니다. 예를 들어 페이지의 동영상 제목이 name 속성에 등록된 값과 일치하지 않습니다. 또는 클릭을 유도하는 제목과 설명 같은 스팸성 콘텐츠가 있거나 마크업이 실제 동영상을 나타내지 않습니다. 다음의 Search Console 메시지가 표시될 수 있습니다. '구조화된 데이터 정책 위반 - 페이지의 콘텐츠가 페이지의 구조화된 데이터와 다른 것으로 확인되었습니다.'

문제 해결

  1. 구조화된 데이터가 페이지의 실제 콘텐츠와 일치하는지 확인합니다.
  2. URL 검사 도구를 사용하여 렌더링된 페이지에 콘텐츠가 표시되는지 확인합니다. 렌더링된 페이지는 Google이 보는 페이지입니다.
  3. 문제를 해결한 후에는 사이트 재검토 요청을 제출합니다.