We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This query finds 36 props named "Terminal" or "Terminals":
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX owl: <http://www.w3.org/2002/07/owl#> select * { ?p a owl:ObjectProperty; rdfs:range ?range bind(replace(str(?p),".*\\.","") as ?suffix) filter(regex(?suffix,"Terminal","i")) } order by ?suffix
Which of these properties could be renamed to just "Terminal"?
First_Terminal, Second_Terminal
cim:ACDCConverter.DCTerminals
cim:ACDCConverterDCTerminal
cim:DCBaseTerminal
cim:OperationalLimitSet.Terminal
cim:ACDCTerminal
Note: there are 12 classes named "Terminal":
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX owl: <http://www.w3.org/2002/07/owl#> select * { ?c a owl:Class filter(strends(str(?c),"Terminal")) optional {?c rdfs:subClassOf ?parent} } order by ?parent
Their hierarchy is as follows:
The text was updated successfully, but these errors were encountered:
Sveino
No branches or pull requests
This query finds 36 props named "Terminal" or "Terminals":
Which of these properties could be renamed to just "Terminal"?
First_Terminal, Second_Terminal
are likely to appear together within the same hosting class.cim:ACDCConverter.DCTerminals
uses "DCTerminal" but the range iscim:ACDCConverterDCTerminal
cim:DCBaseTerminal
cim:OperationalLimitSet.Terminal
uses "Terminal" but the range iscim:ACDCTerminal
Note: there are 12 classes named "Terminal":
Their hierarchy is as follows:
The text was updated successfully, but these errors were encountered: