Re: A structured data C.V. for @type:Person ?

I think a CV is a presentation rather than a credential. A CV is a selection of experiences, for a given purpose. Each item in that presentation is something that you’re choosing to mention (maybe not all your past experiences are relevant in a given CV), that is provable, attested by somebody, etc. So I would work on defining a single occupation primarily, and also on a single study item and other kinds of information one might want to include in a CV.

Regards.

From: Hugo Scott <hugo@hugoscott.com>
Date: Monday, June 24, 2019 at 06:09
To: "schema.org Mailing List" <public-schemaorg@w3.org>
Subject: A structured data C.V. for @type:Person ?
Resent from: <public-schemaorg@w3.org>
Resent date: Monday, June 24, 2019 at 06:05

Hi all,

I am working on markup for people who are working for a financial company and on each of their profile pages I would like to put up a sort of structured data CV like the pseudo-code below - for reasons of proving expertise and authority - but the jobs a person has had seems rather tricky to format and there doesn't seem to be any way of simply listing a person's qualifications - have I missed something ??

{
  "@context": "http://schema.org/",
  "@type": "Person",
  "name": "Albert Einstein",
  "hasOccupation":
  [
    {
      @type:Role,
      job1 name,
      sameas link to occupation if available,
      employer
      {
        @type:corporation,
        company name,
        company sameAs site url or wikipedia link,
      },
      start date,
      end date
    },
    {
      @type:Role,
      job2 name,
      sameas link to occupation if available,
      employer
      {
        @type:corporation,
        company name,
        company sameAs site url or wikipedia link,
      },
      start date,
      end date
    }
  ],
  "hasQualification":
  [
    {
      @type:Qualification,
      name,
      sameas link to site page of qualification if available,
      yearObtained,
      obtainedFrom
      {
        @type:educationalOrganization,
        sameAs link to school/college if available,
      }
    },
    {
      @type:Qualification,
      name,
      sameas link to site page of qualification if available,
      yearObtained,
      obtainedFrom
      {
        @type:educationalOrganization,
        sameAs link to school/college if available,
      }
    }
  ]
}
-- Also, if you put the following JSON-LD example from the https://schema.org/Role page into the structured data testing tool it returns 4 errors - 2 of which state that "A value for the estimatedSalary field is required" for Occupation, and this is obviously not acceptible if using this attribute for a person's past jobs! Could it be made optional ?


{
  "@context": "http://schema.org/",
  "@type": "Person",
  "name": "Albert Einstein",
  "hasOccupation": [
    {
      "@type": "Role",
      "hasOccupation":
      {
        "@type": "Occupation",
        "name": "Job 1",
        "occupationalCategory": "23-2099.00"
      },
      "startDate": "1901",
      "endDate": "1906"
    },
    {
      "@type": "Occupation",
      "name": "Professor of Physics",
      "educationRequirements": "PhD in Physics"
    }
  ]
}


Thanks for any feedback you can give,



Hugo Scott
Sustainable SEO
Audits SEO technique
Optimsation SEO Wordpress
https://hugoscott.com<https://hugoscott.com/>
(+33) 06 51 19 09 41

[Image removed by sender.]<https://www.linkedin.com/in/hugo-scott-474019153/> LinkedIn<https://www.linkedin.com/in/hugo-scott-474019153/> - [Image removed by sender.] <https://www.malt.fr/profile/hugoscott>  Malt
<https://www.malt.fr/profile/hugoscott>

________________________________

AVISO DE CONFIDENCIALIDAD.
Este correo y la información contenida o adjunta al mismo es privada y confidencial y va dirigida exclusivamente a su destinatario. everis informa a quien pueda haber recibido este correo por error que contiene información confidencial cuyo uso, copia, reproducción o distribución está expresamente prohibida. Si no es Vd. el destinatario del mismo y recibe este correo por error, le rogamos lo ponga en conocimiento del emisor y proceda a su eliminación sin copiarlo, imprimirlo o utilizarlo de ningún modo.

CONFIDENTIALITY WARNING.
This message and the information contained in or attached to it are private and confidential and intended exclusively for the addressee. everis informs to whom it may receive it in error that it contains privileged information and its use, copy, reproduction or distribution is prohibited. If you are not an intended recipient of this E-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute any portion of this E-mail.

________________________________

CONFIDENTIALITY WARNING.
This message and the information contained in or attached to it are private and confidential and intended exclusively for the addressee. everis informs to whom it may receive it in error that it contains privileged information and its use, copy, reproduction or distribution is prohibited. If you are not an intended recipient of this E-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute any portion of this E-mail.

Received on Monday, 24 June 2019 13:39:19 UTC