Giter VIP home page Giter VIP logo

Comments (1)

ljgarcia avatar ljgarcia commented on July 21, 2024

As a developer, I need a way to distinguish current and former members, even if an alumnus is still part of ZB MED. To cover this case we need to follow these steps:

  • Modify the metadata for all current members to include their role as follows:
{ 
  "@context": "https://schema.org",

  "@type": "Person",
  "@id": "https://orcid.org/0000-0003-3986-0510",
  "familyName": "Castro", 
  "givenName": "Leyla Jael",
  "memberOf": [
    {
      "@type": "OrganizationRole",
      "roleName": "Semantic Technologies - team leader",
      "memberOf": {
        "@type": "Organization",
        "@id": "https://ror.org/0259fwx54"
       }
    }
  ]  
}
  • For the particular case of Benjamin Wolff, it would look as
{ 
  "@context": "https://schema.org",

  "@type": "Person",
  "@id": "https://orcid.org/0000-0001-9345-8958",
  "familyName": "Wolff", 
  "givenName": "Benjamin",
  "memberOf": [
    {
        "@type": "Organization",
        "@id": "https://ror.org/0259fwx54"
    }
  ]  
}
  • Modify the filter so the current member are those who have an OrganizationalRole with a roleName starting with "Semantic Technologies"
  • For the current members we will have a nested object Person-memberOf-(OrganizationRole-memberOf-Organization). With the current code, only the first nested element would be rendered, that is correct and no further nested level need to be processed, i.e., we will only see a row for memberOf as follows

Image

  • Be aware that OrganizationalRole has no @id so no "Visit this OrganizationalRole" link should be displayed (and it would be the same anytime no @id is available)

from zbmed-semtec.github.io.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.