@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix datatype: <http://qudt.org/vocab/datatype/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dtype: <http://www.linkedmodel.org/schema/dtype#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .

datatype:SIGNED-LONG-INTEGER
  a qudt:SignedLongIntegerType ;
  dcterms:description """
  <p>A <em>Signed Long Integer</em> is a 32 bit signed integer in 2's complement form.  
  It has a minimum value of -2,147,483,648 and a maximum value of 2,147,483,647 (inclusive). 
  For integral values, this data type is generally the default choice unless there is a reason (like the above) to choose something else. 
  This data type will most likely be large enough for the numbers a program will use.
  If a wider range of values is needed use long instead.
  </p>"""^^rdf:HTML ;
  dtype:literal "SI32" ;
  prov:wasInfluencedBy <http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html> ;
  prov:wasInfluencedBy "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI ;
  prov:wasInfluencedBy <http://docs.python.org/2/library/stdtypes.html> ;
  prov:wasInfluencedBy "http://docs.python.org/2/library/stdtypes.html"^^xsd:anyURI ;
  prov:wasInfluencedBy <http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx> ;
  prov:wasInfluencedBy "http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx"^^xsd:anyURI ;
  qudt:abbreviation "SI32" ;
  qudt:ansiSQLName "INTEGER" ;
  qudt:bits 32 ;
  qudt:bytes 4 ;
  qudt:cName "int" ;
  qudt:id "T002-04" ;
  qudt:javaName "int" ;
  qudt:jsName "int" ;
  qudt:matlabName "int32" ;
  qudt:maxInclusive "2^{31}-1" ;
  qudt:microsoftSQLServerName "integer" ;
  qudt:minInclusive "-2^{31}" ;
  qudt:mySQLName "INT" ;
  qudt:odbcName "SQL_INTEGER" ;
  qudt:oleDBName "DBTYPE_I4" ;
  qudt:oracleSQLName "NUMBER(10)" ;
  qudt:protocolBuffersName "int32" ;
  qudt:rdfsDatatype xsd:int ;
  qudt:signedness datatype:Signed ;
  rdfs:isDefinedBy <http://qudt.org/3.2.1/vocab/datatype> ;
  rdfs:label "Signed Long Integer" .
