KonradHoeffner / rickview

quick RDF viewer
MIT License
27 stars 3 forks source link

OWL datatype restriction custom view #79

Open KonradHoeffner opened 2 months ago

KonradHoeffner commented 2 months ago

What new feature do you want?

Part of #29.

For example:

    [
        a owl:Restriction;
        owl:onProperty :has_value;
        owl:someValuesFrom [
          a rdfs:Datatype;
          owl:onDatatype xsd:decimal;
          owl:withRestrictions ([ xsd:minInclusive 18 ] [ xsd:maxExclusive 34 ])
        ]
    ]

Should be shown as [18,34).

KonradHoeffner commented 2 months ago

Maybe we should implement lists first.