Skip to content

Instantly share code, notes, and snippets.

@brinxmat
Created August 26, 2018 11:06
Show Gist options
  • Save brinxmat/df3a4e7a194a0fb04042b8163c22098b to your computer and use it in GitHub Desktop.
Save brinxmat/df3a4e7a194a0fb04042b8163c22098b to your computer and use it in GitHub Desktop.
@prefix : <http://greenall.no/bfhd> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# Catalogue card hole dimension and placement
:holeDimension a rdfs:Property
rdfs:range xsd:nonNegativeInteger ;
rdfs:domain rdfs:Class . # Apparently, anything can have a hole
:holePlacement a rdfs:Class .
:holeXPosition a rdfs:Property ;
rdfs:domain :HolePlacement ;
rdfs:range xsd:nonNegativeInteger .
:holeYPosition a rdfs:Property ;
rdfs:domain :HolePlacement ;
rdfs:range xsd:nonNegativeInteger .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment