nfdi4plants/isa-ro-crate-profile

Person ORCID field?

Closed this issue · 4 comments

Currently we have no field in Person (and here) to represent ORCID.

I suggest using identifier, but there might be more appropriate fields.

I think @HLWeil's suggestion in #16 could also be applied here.

for the workflow ro crate we use identifier for the ORCID, e.g.

{
      "@id": "https://orcid.org/0000-0001-8875-7304",
      "@type": "Person",
      "name": "Thomas Roetzer-Pejrimovsky",
      "identifier": "https://orcid.org/0000-0001-8875-7304"
    }

Yes, that's a good option. It fits with Lukas' suggestion on PubMedIDs or DOIs. Since identifier allows for PropertyValue objects, we can use them to specify that it is an identifier of type ORCID:

{
  "@id": "https://orcid.org/0000-0001-8875-7304",
  "@type": "Person",
  "name": "Thomas Roetzer-Pejrimovsky",
  "identifier": {
    "propertyID": "ORCID",
    "value": "0000-0001-8875-7304"
  }
}

To me, it doesn't really matter which option w choose.

Fixed by PR #19