Skip to content

Commit

Permalink
Added 2 missing terms to OWL vocabulary
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesalvo committed Feb 24, 2024
1 parent 0f71bc4 commit 5f97079
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions RDFSharp/Model/Vocabularies/OWL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,16 @@ public static class OWL
/// </summary>
public static readonly RDFResource ON_DATARANGE = new RDFResource(string.Concat(OWL.BASE_URI,"onDataRange"));

/// <summary>
/// owl:onDatatype [OWL2]
/// </summary>
public static readonly RDFResource ON_DATATYPE = new RDFResource(string.Concat(OWL.BASE_URI,"onDatatype"));

/// <summary>
/// owl:withRestrictions [OWL2]
/// </summary>
public static readonly RDFResource WITH_RESTRICTIONS = new RDFResource(string.Concat(OWL.BASE_URI,"withRestrictions"));

/// <summary>
/// owl:propertyDisjointWith [OWL2]
/// </summary>
Expand Down

0 comments on commit 5f97079

Please sign in to comment.