Skip to content

Commit

Permalink
Merge pull request #3 from cwacekINV/remove-duplicate-hasNic
Browse files Browse the repository at this point in the history
Remove duplicate hasNIC property
  • Loading branch information
cwacekINV committed Apr 24, 2015
2 parents 656122f + 27d2bbf commit 9386d88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
3 changes: 2 additions & 1 deletion ontology/host.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
rdfs:comment "this host is bonded to a network interface. Hosts may have many network interfaces, and many hosts may utilize a NIC in some abstracted way, but only a single host can have direct (driver-level control) of the device."@en ;
rdfs:domain :Host ;
rdfs:label "has network interface"@en ;
rdfs:range nic:NIC .
rdfs:range nic:NIC ;
owl:inverseOf nic:onHost .

:hasProcessList
a owl:FunctionalProperty, owl:ObjectProperty ;
Expand Down
10 changes: 1 addition & 9 deletions ontology/nic.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,6 @@
rdfs:label "has MAC address"@en ;
rdfs:range :MAC .

:hasNIC
a owl:InverseFunctionalProperty, owl:ObjectProperty ;
rdfs:comment "this host has the following network interface available"@en ;
rdfs:domain host:Host ;
rdfs:label "has Network Interface"@en ;
rdfs:range :NIC ;
owl:inverseOf :onHost .

:hasOUI
a owl:FunctionalProperty, owl:ObjectProperty ;
rdfs:comment "the first portion of a MAC address is a unique sequence assigned to a particular manufacturer, to prevent MAC address collisions between network cards created by different companies."@en ;
Expand Down Expand Up @@ -162,7 +154,7 @@
rdfs:domain :NIC ;
rdfs:label "on Host"@en ;
rdfs:range host:Host ;
owl:inverseOf :hasNIC .
owl:inverseOf host:hasNIC .

:outBytes
a owl:DatatypeProperty, owl:FunctionalProperty ;
Expand Down

0 comments on commit 9386d88

Please sign in to comment.