10 questions
2
votes
1
answer
1k
views
mkdocs rendering of Mermaid markdown is very small
I am using mkdocs to render a markdown encoding of a mermaid Entity Relationship Diagram. The resulting figure looks like this
I want to, in any way, make the ER Diagram larger.
I have tried ...
2
votes
1
answer
63
views
How to create an iri as object in linkml
I want to create: https://w3id.org/linkml/examples/personinfo/44
instead of: personinfo:mynr "44"^^xsd:anyURI .
see also: What is the difference between "myURI.com"^^xsd:anyURI and ...
0
votes
1
answer
99
views
How to express computed properties in linkml and get the result when instantiating?
I created a linkml model named PersonModel:
id: PersonModel
name: Person Model
prefixes:
- prefix: person
uri: http://example.org/person/
default_prefix: person
types:
...
1
vote
1
answer
241
views
How to validate data files with linkml model
I wrote a linkml model as follows:
#PersonMode.yaml:
id: person
name: Person
slots:
- id: name
name: name
required: true
type: string
- id: gender
name: gender
required: true
type: ...
1
vote
0
answers
78
views
Can Neo4j data be exported or converted to linkML format data?
Is it possible to export or convert neo4j data to linkML format, and if so, can this process be reversible?
2
votes
1
answer
257
views
Why is a valid URI not valid in LinkML?
I get ValueError: https://ceur-ws.org/Vol-2931/ICBO_2019_paper_20.pdf : is not a valid URI when trying to set an URI typed value using the generated python code from the linkml yaml file at https://...
1
vote
0
answers
77
views
LinkML schemata for DOI registration?
At https://www.crossref.org/xml-samples/ there are some examples for XML and Json Files that if i understand right are needed to register DOIs for certain items.
I'd love to know whether there is ...
0
votes
2
answers
207
views
How do i fix "default prefix is not defined" errors in LinkML?
As contributor to https://github.com/WolfgangFahl/pyMetaModel i am running into a problem when trying out the generated linkML yaml files with different LinkML generators
While the linkML and mermaid ...
1
vote
1
answer
183
views
How are fully qualified names for slots defined in LinkML?
linkML's slot concept will allow to share slot names between classes as IMHO is typical for the ontological approach to modeling. In most of my SiDIF based models i am using object oriented approaches ...
2
votes
2
answers
357
views
How do i add a class to a SchemaDefinition in LinkML?
The diagrams in https://linkml.io/linkml-model/docs/SchemaDefinition/
and https://linkml.io/linkml-model/docs/ClassDefinition/ show no operations.
Since i didn't find an add operation i am accessing ...