-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change rdfs:Literal
to rdf:PlainLiteral
#405
Comments
In the glossary of ePO 4.0.0 there are only |
https://github.com/search?q=org%3AOP-TED+rdfs%3ALiteral&type=code shows 30 occurrences of
Commits that make such a change:
@AchillesDougalis , you trust that Glossary too much! Please reopen.
|
@VladimirAlexiev, indeed, we do have some occurrences of We do want to have a proper clean-up of the entire model2owl configuration files in the ePO repository in a future release and it will be tracked in a separate discussion: #588 (from which we will create an appropriate github issue once we get started). So thank you for this feedback, I will make sure to add it in our discussion. Regarding the other issue (#447) it was converted into a discussion, but in my opinion we should also close that since it became a discussion about a different repository (https://github.com/OP-TED/ted-rdf-mapping) and an appropriate issue to track it was created: OP-TED/ted-rdf-mapping#407. |
That's not true, there are numerous semantic files with this defect. Here are the number of occurrences:
There are also numerous occurrences in EA.html files, i.e. directly in the UML models (cc @costezki). I'm happy if this will be addressed in OP-TED/ted-rdf-mapping#407 |
@VladimirAlexiev, the files mentioned above are not part of the ePO repository and:
Thank you for catching this :) Both of those projects would benefit from having general "clean-up repository" tickets as we have in ePO, so I will make sure to sync with them on this topic. |
Thanks for the clarification! For the record, here are the occurrences of
|
You use
rdfs:Literal
for string fields. However, that datatype is overly wide. You won't be happy about a company name having values like:"2022-11-06"^^xsd:date
"POINT(10 20)"^^geo:wktLiteral
"<html><title>foo bar</title></html>"^^rdf:XMLLiteral
Please use
rdf:PlainLiteral
instead, which in effect is a union ofxsd:string
andrdf:langString
.See the spec: https://www.w3.org/TR/rdf-plain-literal/
The text was updated successfully, but these errors were encountered: