未分类错误Json ld

未分类错误Json ld,json,author,Json,Author,我已经显示了作者描述,如上所述。结构化数据测试工具正在将其分类为未分类错误 我该怎么办?嗨!欢迎来到堆栈溢出!这看起来不像是对所问问题的回答。也许你把这个贴错了。 "author" : { "@type" : "Person" "name" : "Kunjal Chawhan" }, schemaData={{ "@context": "http://schema.org", "@type": "JobPosting", hiringOrganiza

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


我该怎么办?

嗨!欢迎来到堆栈溢出!这看起来不像是对所问问题的回答。也许你把这个贴错了。
"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)
  }}