繁体   English   中英

未分类的错误Json-ld

[英]Uncategorized error Json-ld

"author" : {
    "@type" : "Person"
    "name" : "Kunjal Chawhan"
  },

我已经显示了如上所述的作者描述。 结构化数据测试工具将其归类为未分类的错误。

我该怎么办?

schemaData={{
    "@context": "http://schema.org",
    "@type": "JobPosting",
    hiringOrganization: "Client of Maven Workforce",
    title: _get(data, "title", null),
    baseSalary: "40000",
    datePosted: new Date(data && data.cTime)
      .toLocaleDateString()
      .replace(/\//g, "-"),
    validThrough: new Date(data && data.cTime + 2592000000 * 3)
      .toLocaleDateString()
      .replace(/\//g, "-"),
    description: _get(data, "desc", null),
    educationRequirements: _get(data, "edus[0].level", null),
    employmentType: _get(data, "jobType", null),
    experienceRequirements:
      _get(data, "exp.min", null) +
      " to " +
      _get(data, "exp.max", null) +
      " years",
    industry: "Recruitment / Staffing",
    jobLocation: {
      "@type": "Place",
      address: {
        "@type": "PostalAddress",
        addressLocality:
          _get(data, "loc.country", null) +
          " " +
          _get(data, "loc.city", null),
        streetAddress: _get(data, "loc.street", null),
        postalCode: _get(data, "loc.zipcode", null),
        addressRegion: "IN"
      }
    },
    responsibilities: " 1. Screening resume",
    salaryCurrency: _get(data, "salary.currency", null),
    skills: newSkills && newSkills,
    workHours: _get(data, "workDays", null)
  }}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM