# Copyright 2018 École des Mines de Saint-Étienne.
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
#      http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing,
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

@prefix az: <http://zimmer.aprilfoolsreview.com/antoine#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix max: <http://maxime-lefrancois.info/me#> .
@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 lindt: <https://w3id.org/lindt/voc#> .

@base <https://w3id.org/lindt/v1/> .

<custom_datatypes#length>  a  lindt:Datatype , rdfs:Datatype;
    rdfs:subClassOf  rdfs:Literal;  # This line is useless
    rdfs:label  "length"@en, "longueur"@fr;
    lindt:implements lindt:compare , lindt:exportLiteral , lindt:getIri , lindt:getNormalForm , lindt:getRecognisedDatatypes , lindt:importLiteral , lindt:isEqual , lindt:isWellFormed , lindt:recognisesDatatype ;
    rdfs:seeAlso  <custom_datatypes.html>, <custom_datatypes.js> ;
    rdfs:isDefinedBy  <>;
    rdfs:comment  """A datatype to express length according to the International System of Units or the imperial units. Possible lexical forms of this datatype are: "42 km", "6.66 Gm", "8e17 mi", "0.98 inches"."""@en .

<custom_datatypes.html>  a  foaf:Document;
    dc:creator  max:;
    dc:modified  "2016-04-22T10h42:42+02:00"^^xsd:dateTimeStamp .

<custom_datatypes.ttl>  a  foaf:Document;
    dc:creator  max:, az:me;
    dc:modified  "2015-04-24T15h42:42+02:00"^^xsd:dateTimeStamp .

<custom_datatypes.js>  a  foaf:Document;
    dc:creator  max:, az:me;
    dc:modified  "2015-04-24T15h42:42+02:00"^^xsd:dateTimeStamp .