Skip to content

Commit

Permalink
Enhanced SWRL vocabulary
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesalvo committed Oct 5, 2024
1 parent dd38fb5 commit ee6b986
Showing 1 changed file with 100 additions and 0 deletions.
100 changes: 100 additions & 0 deletions RDFSharp/Model/Vocabularies/SWRL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,106 @@ public static class SWRL
/// http://www.w3.org/2003/11/swrl#
/// </summary>
public static readonly string DEREFERENCE_URI = "http://www.w3.org/2003/11/swrl#";

/// <summary>
/// swrl:Imp
/// </summary>
public static readonly RDFResource IMP = new RDFResource(string.Concat(SWRL.BASE_URI,"Imp"));

/// <summary>
/// swrl:head
/// </summary>
public static readonly RDFResource HEAD = new RDFResource(string.Concat(SWRL.BASE_URI,"head"));

/// <summary>
/// swrl:body
/// </summary>
public static readonly RDFResource BODY = new RDFResource(string.Concat(SWRL.BASE_URI,"body"));

/// <summary>
/// swrl:Variable
/// </summary>
public static readonly RDFResource VARIABLE = new RDFResource(string.Concat(SWRL.BASE_URI,"Variable"));

/// <summary>
/// swrl:Atom
/// </summary>
public static readonly RDFResource ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"Atom"));

/// <summary>
/// swrl:Builtin
/// </summary>
public static readonly RDFResource BUILTIN_CLS = new RDFResource(string.Concat(SWRL.BASE_URI,"Builtin"));

/// <summary>
/// swrl:argument1
/// </summary>
public static readonly RDFResource ARGUMENT1 = new RDFResource(string.Concat(SWRL.BASE_URI,"argument1"));

/// <summary>
/// swrl:argument2
/// </summary>
public static readonly RDFResource ARGUMENT2 = new RDFResource(string.Concat(SWRL.BASE_URI,"argument2"));

/// <summary>
/// swrl:arguments
/// </summary>
public static readonly RDFResource ARGUMENTS = new RDFResource(string.Concat(SWRL.BASE_URI,"arguments"));

/// <summary>
/// swrl:classPredicate
/// </summary>
public static readonly RDFResource CLASS_PREDICATE = new RDFResource(string.Concat(SWRL.BASE_URI,"classPredicate"));

/// <summary>
/// swrl:propertyPredicate
/// </summary>
public static readonly RDFResource PROPERTY_PREDICATE = new RDFResource(string.Concat(SWRL.BASE_URI,"propertyPredicate"));

/// <summary>
/// swrl:dataRange
/// </summary>
public static readonly RDFResource DATARANGE = new RDFResource(string.Concat(SWRL.BASE_URI,"dataRange"));

/// <summary>
/// swrl:builtin
/// </summary>
public static readonly RDFResource BUILTIN_PROP = new RDFResource(string.Concat(SWRL.BASE_URI,"builtin"));

/// <summary>
/// swrl:ClassAtom
/// </summary>
public static readonly RDFResource CLASS_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"ClassAtom"));

/// <summary>
/// swrl:IndividualPropertyAtom
/// </summary>
public static readonly RDFResource INDIVIDUAL_PROPERTY_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"IndividualPropertyAtom"));

/// <summary>
/// swrl:DatavaluedPropertyAtom
/// </summary>
public static readonly RDFResource DATAVALUED_PROPERTY_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"DatavaluedPropertyAtom"));

/// <summary>
/// swrl:SameIndividualAtom
/// </summary>
public static readonly RDFResource SAME_INDIVIDUAL_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"SameIndividualAtom"));

/// <summary>
/// swrl:DifferentIndividualsAtom
/// </summary>
public static readonly RDFResource DIFFERENT_INDIVIDUALS_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"DifferentIndividualsAtom"));

/// <summary>
/// swrl:DataRangeAtom
/// </summary>
public static readonly RDFResource DATARANGE_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"DataRangeAtom"));

/// <summary>
/// swrl:BuiltinAtom
/// </summary>
public static readonly RDFResource BUILTIN_ATOM = new RDFResource(string.Concat(SWRL.BASE_URI,"BuiltinAtom"));
#endregion

#region Extended Properties
Expand Down

0 comments on commit ee6b986

Please sign in to comment.