Visualization Model Diagram
flowchart LR
Visualization --> |"description"| description[Literal \n xsd:string]
Visualization --> |"hasAuthors"| authorList[List \n Resource]
subgraph Author List
authorList --> |"hasListElement"| Author
subgraph Author
subgraph Literal Author
literalAuthor[Literal \n xsd:string]
end
subgraph Resource Author
resourceAuthor[Author \n Resource] --> |"website"| resourceAuthorWebsite[Literal \n xsd:anyURI]
resourceAuthor --> |"HAS_ORCID"| orcid[Literal \n xsd:string]
resourceAuthor --> |"googleScholarID"| googleScholarID[Literal \n xsd:string]
resourceAuthor --> |"researchGateID"| researchGateID[Literal \n xsd:string]
resourceAuthor --> |"linkedInID"| linkedInID[Literal \n xsd:string]
resourceAuthor --> |"P76020 \n wikidata id"| wikidataId[Literal \n xsd:string]
resourceAuthor --> |"P58083 \n web of science id"| webOfScienceId[Literal \n xsd:string]
subgraph Identifiers
orcid
googleScholarID
researchGateID
linkedInID
wikidataId
webOfScienceId
end
end
end
end