HTML-заголовок и мета-описание против Schema.org заголовок и описание - PullRequest
0 голосов
/ 14 ноября 2018

Должен ли текст, введенный как description (свойство Schema.org) быть задан как meta - description HTML-страницы?

Рассмотреть следующее содержимое:

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "JobPosting",
  "baseSalary": "100000",
  "jobBenefits": "Medical, Life, Dental",
  "datePosted": "2011-10-31",
  "description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
  "educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
  "employmentType": "Full-time",
  "experienceRequirements": "Minumum 3 years experience as a software engineer",
  "incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
  "industry": "Computer Software",
  "jobLocation": {
    "@type": "Place",
    "address": {
      "@type": "PostalAddress",
      "addressLocality": "Kirkland",
      "addressRegion": "WA"
    }
  },
  "occupationalCategory": "15-1132.00 Software Developers, Application",
  "qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
  "responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
  "salaryCurrency": "USD",
  "skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
  "specialCommitments": "VeteranCommit",
  "title": "Software Engineer",
  "workHours": "40 hours per week"
}
</script>

Если текст, введенный в качестве содержимого свойства description ("ABC Company Inc. ищет штатного инженера-программиста среднего уровня для разработки собственных инструментов."), Следует указать в качестве значенияmeta - description тег в разделе head HTML-страницы, как показано ниже:

<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">

Точно так же, как и при настройке содержимого свойства Schema.org titleк элементу title (в разделе head) HTML-страницы, показанной ниже:

<title>Software Engineer</title>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...