@prefix cc: <http://creativecommons.org/ns#> .
@prefix dc1: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

voaf:VocabularySpace a owl:Class ;
    rdfs:label "Vocabulary Space"@en,
        "Espace de vocabulaires"@fr ;
    rdfs:comment """A vocabulary space defines any relevant grouping of vocabularies e.g., designed for similar purposes or domains, or designed by the same publisher or the same project, etc.
          A vocabulary can belong to zero, one or more vocabulary spaces.Dublin Core properties isPartOf and hasPart are used to link a vocabulary to a vocabulary space."""@en,
        """Un Espace de vocabulaires définit un regroupement pertinent de vocabulaires, par exemple construits pour des domaines ou objectifs similaires, ou par le même déditeur ou le même projet, etc.
         Un Vocabulaire peut appartenir à zéro, un ou plusieurs Espace de vocabulaires. Les propriétés Dublin Core isPartOf et hasPart sont utilisées pour relier un Vocabulaire à un Espace de vocabulaires."""@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    vs:term_status "testing" .

voaf:classNumber a owl:DatatypeProperty ;
    rdfs:label "number of classes"@en,
        "nombre de classes"@fr ;
    dc1:description """PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>
		
		CONSTRUCT{
		?vocab voaf:classNumber ?nbClass
		}
		WHERE{
			SELECT (COUNT(distinct ?class) AS ?nbClass) ?vocab
			WHERE{
				{?class a rdfs:Class.}
				UNION{?class a owl:Class.}
				?class a ?type.
				FILTER(?type!=owl:DeprecatedClass)
				?class rdfs:isDefinedBy ?vocab.
				?vocab a voaf:Vocabulary.
			}GROUP BY ?vocab
		}""" ;
    rdfs:comment "The number of classes defined in the vocabulary namespace. Classes imported from other namespaces are not taken into account."@en,
        "Le nombre de classes définies dans l'espace de noms du Vocabulaire. Les classes importées d'autres vocabulaires ne sont pas comptabilisées."@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "stable" .

voaf:exampleDataset a owl:ObjectProperty ;
    rdfs:label "example dataset"@en,
        "exemple de jeu de données"@fr ;
    dc1:isReplacedBy voaf:dataset ;
    rdfs:comment "Deprecated since v1.1"@en,
        "Déprécié depuis la v1.1"@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    vs:term_status "deprecated" .

voaf:extends a owl:ObjectProperty ;
    rdfs:label "extends"@en,
        "étend"@fr ;
    dc1:description """PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>

		CONSTRUCT{
			?vocab1 voaf:extends ?vocab2
		}
		WHERE{
			{?elem1 owl:inverseOf ?elem2. FILTER(!isBlank(?elem2))}
			UNION{?elem1 rdfs:domain ?elem2. FILTER(!isBlank(?elem2))}
			UNION{?elem1 rdfs:range ?elem2. FILTER(!isBlank(?elem2))}
			UNION{?elem2 rdfs:domain ?elem1. FILTER(!isBlank(?elem1))}
			UNION{?elem2 rdfs:range ?elem1. FILTER(!isBlank(?elem1))}
			?elem1 rdfs:isDefinedBy ?vocab1.
			?vocab1 a voaf:Vocabulary.
			?elem2 rdfs:isDefinedBy ?vocab2.
			?vocab2 a voaf:Vocabulary.
			FILTER(?vocab1!=?vocab2)
		}""" ;
    rdfs:comment "Indicates that the subject vocabulary extends the expressivity of the object vocabulary by declaring subsumption relationships, using object vocabulary class as domain or range of a subject vocabulary property, defining local restrictions etc ..."@en,
        "Indique que le vocabulaire sujet étend l'expressivité du vocabulaire objet en déclarant des relations de subsomption avec ce dernier, ou en utilisant ses classes comme domaine ou co-domaine d'un propriété du vocabulaire sujet, ou en définissant des contraintes locales etc."@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf voaf:reliesOn ;
    vs:term_status "stable" .

voaf:generalizes a owl:ObjectProperty ;
    rdfs:label "generalizes"@en,
        "généralise"@fr ;
    dc1:description """PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
		PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>
		PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
		
		CONSTRUCT{
			?vocab1 voaf:generalizes ?vocab2
		}
		WHERE{
			{?elem1 skos:narrowMatch ?elem2. FILTER(!isBlank(?elem2))}
			UNION{?elem2 rdfs:subPropertyOf ?elem1.}
			UNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:first ?elem2.}
			UNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:first ?elem2.}
			UNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:first ?elem2.}
			UNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:rest ?union4. ?union4 rdf:first ?elem2.}
			UNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:rest ?union4. ?union4 rdf:rest ?union5. ?union5 rdf:first ?elem2.}
			FILTER(!isBlank(?elem2))
			?elem1 rdfs:isDefinedBy ?vocab1.
			?vocab1 a voaf:Vocabulary.
			?elem2 rdfs:isDefinedBy ?vocab2.
			?vocab2 a voaf:Vocabulary.
			FILTER(?vocab1!=?vocab2)
		}""" ;
    rdfs:comment "Indicates that the subject vocabulary generalizes by some superclasses or superproperties the object vocabulary."@en,
        "Indique que le vocabulaire sujet définit des super-classes ou super-propriétés du vocabulaire objet"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf voaf:reliesOn ;
    vs:term_status "stable" .

voaf:hasDisjunctionsWith a owl:ObjectProperty ;
    rdfs:label "has disjunctions with"@en,
        "a des disjonctions avec"@fr ;
    dc1:description """PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>
		
		CONSTRUCT{
			?vocab1 voaf:hasDisjunctionsWith ?vocab2
		}
		WHERE{
			?elem1 owl:disjointWith ?elem2. FILTER(!isBlank(?elem2))
			?elem1 rdfs:isDefinedBy ?vocab1.
			?vocab1 a voaf:Vocabulary.
			?elem2 rdfs:isDefinedBy ?vocab2.
			?vocab2 a voaf:Vocabulary.
			FILTER(?vocab1!=?vocab2)
		}""" ;
    rdfs:comment "Indicates that the subject vocabulary contains some declaration of disjoint classes with the object vocabulary."@en,
        "Indique que le vocabulaire sujet contient des déclarations de classes disjointes avec le vocabulaire objet"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf voaf:reliesOn ;
    vs:term_status "testing" .

voaf:hasEquivalencesWith a owl:ObjectProperty ;
    rdfs:label "has equivalences with"@en,
        "a des équivalences avec"@fr ;
    dc1:description """PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>
		PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
		
		CONSTRUCT{
			?vocab1 voaf:hasEquivalencesWith ?vocab2
		}
		WHERE{
			{?elem1 owl:equivalentProperty ?elem2.}
			UNION{?elem1 owl:sameAs ?elem2.}
			UNION{?elem1 owl:equivalentClass ?elem2.}
			UNION{?elem2 owl:equivalentProperty ?elem1.}
			UNION{?elem2 owl:equivalentClass ?elem1.}
			UNION{?elem1 skos:exactMatch ?elem2.}
			UNION{?elem2 skos:exactMatch ?elem1.}
			FILTER(!isBlank(?elem2))
			?elem1 rdfs:isDefinedBy ?vocab1.
			?vocab1 a voaf:Vocabulary.
			?elem2 rdfs:isDefinedBy ?vocab2.
			?vocab2 a voaf:Vocabulary.
			FILTER(?vocab1!=?vocab2)
		}""" ;
    rdfs:comment "Indicates that the subject vocabulary declares some equivalent classes or properties with the object vocabulary."@en,
        "Indique que le vocabulaire sujet déclare des équivalences de classes ou de propriétés avec le vocabulaire objet"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf voaf:reliesOn ;
    vs:term_status "testing" .

voaf:inDataset a owl:ObjectProperty ;
    rdfs:label "in dataset"@en,
        "dans le jeu de données"@fr ;
    rdfs:comment "dataset in which a vocabulary occurred"@en,
        "jeu de données dans lequel un vocabulaire apparait"@fr ;
    rdfs:domain voaf:DatasetOccurrences ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range void:Dataset ;
    vs:term_status "testing" .

voaf:metadataVoc a owl:ObjectProperty ;
    rdfs:label "metadata vocabulary"@en,
        "vocabulaire de métadonnées"@fr ;
    dc1:description """PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>

		CONSTRUCT{
			?vocab1 voaf:metadataVoc ?vocab2
		}
		WHERE{
			?elem1 ?elem2 ?o.
			?elem1 rdfs:isDefinedBy ?vocab1.
			?vocab1 a voaf:Vocabulary.
			?elem2 rdfs:isDefinedBy ?vocab2.
			?vocab2 a voaf:Vocabulary.
			FILTER(?vocab1!=?vocab2)
		}""" ;
    rdfs:comment "Indicates that the subject vocabulary uses the object vocabulary in metadata at global vocabulary level or at element level"@en,
        "Indique que le vocabulaire sujet utilise le vocabulaire objet pour décrire ses métadonnées, au niveau global du vocabulaire ou au niveau des éléments"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf voaf:reliesOn ;
    vs:term_status "stable" .

voaf:occurrences a owl:ObjectProperty ;
    rdfs:label "occurrences"@en,
        "occurrences"@fr ;
    rdfs:comment "Number of occurrences of a vocabulary in a dataset"@en,
        "nombre d'occurrences d'un vocabulaire dans un dataset"@fr ;
    rdfs:domain voaf:DatasetOccurrences ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "testing" .

voaf:occurrencesInDatasets a owl:DatatypeProperty ;
    rdfs:label "occurrences in datasets"@en,
        "occurences dans des datasets"@fr ;
    rdfs:comment "Number of datasets using a resource."@en,
        "Nombre de jeux de données utilisant une ressource."@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "testing" .

voaf:occurrencesInVocabularies a owl:DatatypeProperty ;
    rdfs:label "occurrences in vocabularies"@en,
        "occurences dans des vocabulaires"@fr ;
    rdfs:comment "Number of vocabularies using a resource"@en,
        "Nombre de vocabulaires utilisant une ressource."@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "testing" .

voaf:propertyNumber a owl:DatatypeProperty ;
    rdfs:label "number of properties"@en,
        "nombre de propriétés"@fr ;
    dc1:description """PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
		PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX owl:<http://www.w3.org/2002/07/owl#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>
		
		CONSTRUCT{
		?vocab voaf:propertyNumber ?nbProp
		}
		WHERE{
			SELECT (COUNT(distinct ?prop) AS ?nbProp) ?vocab
			WHERE{
				{?prop a rdf:Property.}
				UNION{?prop a owl:ObjectProperty.}
				UNION{?prop a owl:DatatypeProperty.}
				UNION{?prop a owl:AnnotationProperty.}
				UNION{?prop a owl:FunctionalProperty.}
				UNION{?prop a owl:OntologyProperty.}
				UNION{?prop a owl:AsymmetricProperty.}
				UNION{?prop a owl:InverseFunctionalProperty.}
				UNION{?prop a owl:IrreflexiveProperty.}
				UNION{?prop a owl:ReflexiveProperty.}
				UNION{?prop a owl:SymmetricProperty.}
				UNION{?prop a owl:TransitiveProperty.}
				?prop a ?type.
				FILTER(?type!=owl:DeprecatedProperty)
				?prop rdfs:isDefinedBy ?vocab.
				?vocab a voaf:Vocabulary.
			}GROUP BY ?vocab
		}""" ;
    rdfs:comment "The number of properties defined in the vocabulary namespace. Properties imported from other namespaces are not taken into account."@en,
        "Le nombre de propriétés définies dans l'espace de noms du Vocabulaire. Les propriétés importées d'autres vocabulaires ne sont pas comptabilisées."@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "stable" .

voaf:reusedByDatasets a owl:DatatypeProperty ;
    rdfs:label "reused by datasets"@en,
        "réutilisé par des jeux de données"@fr ;
    rdfs:comment "Distinct number of datasets reusing a resource."@en,
        "Nombre distinct de jeux de données reutilisant une resource."@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "testing" .

voaf:reusedByVocabularies a owl:DatatypeProperty ;
    rdfs:label "reused by vocabularies"@en,
        "réutilisé par des vocabulaires"@fr ;
    rdfs:comment "Distinct number of vocabularies reusing a resource."@en,
        "Nombre distinct de vocabulaires reutilisant une resource."@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range xsd:integer ;
    vs:term_status "testing" .

voaf:similar a owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "similar"@en,
        "similaire"@fr ;
    rdfs:comment "Used to assert that two vocabularies are similar in scope and objectives, independently of the fact that they otherwise refer to each other."@en,
        "Indique que deux vocabulaires sont similaires dans leur domaine et/ou leurs objectifs, sans être nécessairement reliés par des références."@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    vs:term_status "testing" .

voaf:specializes a owl:ObjectProperty ;
    rdfs:label "specializes"@en,
        "spécialise"@fr ;
    dc1:description """PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
		PREFIX voaf:<http://purl.org/vocommons/voaf#>
		PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
		
		CONSTRUCT{
			?vocab1 voaf:specializes ?vocab2
		}
		WHERE{
			{?elem1 rdfs:subPropertyOf ?elem2. FILTER(!isBlank(?elem2))}
			UNION{?elem1 rdfs:subClassOf ?elem2. FILTER(!isBlank(?elem2))}
			UNION{?elem1 skos:broadMatch ?elem2. FILTER(!isBlank(?elem2))}
			?elem1 rdfs:isDefinedBy ?vocab1.
			?vocab1 a voaf:Vocabulary.
			?elem2 rdfs:isDefinedBy ?vocab2.
			?vocab2 a voaf:Vocabulary.
			FILTER(?vocab1!=?vocab2)
		}""" ;
    rdfs:comment "Indicates that the subject vocabulary defines some subclasses or subproperties of the object vocabulary, or local restrictions on those."@en,
        "Indique que le vocabulaire sujet définit des sous-classes ou sous-propriétés du vocabulaire objet"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf voaf:reliesOn ;
    vs:term_status "stable" .

voaf:toDoList a owl:ObjectProperty ;
    rdfs:label "to-do list"@en,
        "liste des choses à faire"@fr ;
    rdfs:comment "Describes future tasks planned by a resource curator. This property is primarily intended to be used for vocabularies or datasets, but the domain is left open, it can be used for any resource. Use iCalendar Vtodo class and its properties to further describe the task calendar, priorities etc."@en,
        "Liste des tâches prévues par le gestionnaire d'une ressource. Cette propriété est destinée à l'usage des gestionnaires de vocabulaires ou de jeu de données mais son doamine est ouvert, elle peut être utilisée pour n'importe quelle ressource. Utiliser la classe ical:Vtodo pour une description fine des tâches : calendrier, priorités etc"@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range <http://www.w3.org/2002/12/cal/ical#Vtodo> ;
    vs:term_status "stable" .

voaf:usageInDataset a owl:ObjectProperty ;
    rdfs:label "usage in dataset"@en,
        "utilisation dans un jeu de données"@fr ;
    rdfs:comment "usage statistics in a dataset"@en,
        "statistiques d'utilisation dans un jeu de données"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:DatasetOccurrences ;
    vs:term_status "testing" .

<http://data.semanticweb.org/person/lise-rozat> a foaf:Person .

<http://dbpedia.org/resource/Open_Knowledge_Foundation> a foaf:Organization .

voaf:dataset a owl:ObjectProperty ;
    rdfs:label "dataset"@en,
        "jeu de données"@fr ;
    dc1:isReplacedBy voaf:DatasetOccurrences ;
    rdfs:comment "Deprecated since v2.4"@en,
        "Déprécié depuis la v2.4"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range void:Dataset ;
    owl:inverseOf void:vocabulary ;
    vs:term_status "deprecated" .

<http://purl.org/vocommons/voaf/v1.0> a frbr:Expression ;
    dc1:date "2011-03-11" ;
    frbr:embodiment <http://purl.org/vocommons/voaf/v1.0/voaf_v1.0.rdf> ;
    rdfs:comment "First published version"@en,
        "Première publication"@fr ;
    owl:versionInfo "1.0" .

<http://purl.org/vocommons/voaf/v1.0/index.html> a frbr:Manifestation .

<http://purl.org/vocommons/voaf/v1.0/voaf_v1.0.rdf> a frbr:Manifestation ;
    frbr:alternate <http://purl.org/vocommons/voaf/v1.0/index.html> .

<http://purl.org/vocommons/voaf/v1.1> a frbr:Expression ;
    dc1:date "2011-11-16" ;
    frbr:embodiment <http://purl.org/vocommons/voaf/v1.1/voaf_v1.1.rdf> ;
    rdfs:comment "Depreciation of voaf:exampleDataset, replaced by voaf:dataset"@en,
        "Dépréciation de voaf:exampleDataset, remplacé par voaf:dataset"@fr ;
    owl:versionInfo "1.1" .

<http://purl.org/vocommons/voaf/v1.1/index.html> a frbr:Manifestation .

<http://purl.org/vocommons/voaf/v1.1/voaf_v1.1.rdf> a frbr:Manifestation ;
    frbr:alternate <http://purl.org/vocommons/voaf/v1.1/index.html> .

<http://purl.org/vocommons/voaf/v2.0> a frbr:Expression ;
    dc1:creator <http://data.semanticweb.org/person/bernard-vatant> ;
    dc1:date "2012-07-03" ;
    frbr:embodiment <http://purl.org/vocommons/voaf/v2.0/voaf_v2.0.rdf> ;
    rdfs:comment "Namespace moved to purl. Introduction of versions using FRBR. voaf:Vocabulary rdfs:subClassOf  frbr:Work. Added labels and comments in French"@en,
        "Namespace migré sous purl. Introduction des versions avec FRBR. voaf:Vocabulary rdfs:subClassOf  frbr:Work. Ajout des traductions françaises"@fr ;
    owl:versionInfo "2.0" .

<http://purl.org/vocommons/voaf/v2.0/index.html> a frbr:Manifestation .

<http://purl.org/vocommons/voaf/v2.0/voaf_v2.0.rdf> a frbr:Manifestation ;
    frbr:alternate <http://purl.org/vocommons/voaf/v2.0/index.html> .

<http://purl.org/vocommons/voaf/v2.1> a frbr:Expression ;
    dc1:creator <http://data.semanticweb.org/person/pierre-yves-vandenbussche> ;
    dc1:date "2012-10-15" ;
    frbr:embodiment <http://purl.org/vocommons/voaf/v2.1/voaf_v2.1.rdf> ;
    rdfs:comment "Added desrciption of queries used to infer a particular VOAF relation between two vocabularies"@en,
        "Ajout des requêtes pour générer des relations VOAF entre deux vocabulaires"@fr ;
    owl:versionInfo "2.1" .

<http://purl.org/vocommons/voaf/v2.1/index.html> a frbr:Manifestation .

<http://purl.org/vocommons/voaf/v2.1/voaf_v2.1.rdf> a frbr:Manifestation ;
    frbr:alternate <http://purl.org/vocommons/voaf/v2.1/index.html> .

<http://purl.org/vocommons/voaf/v2.2> a frbr:Expression ;
    dc1:creator <http://data.semanticweb.org/person/pierre-yves-vandenbussche> ;
    dc1:date "2013-04-24" ;
    frbr:embodiment <http://purl.org/vocommons/voaf/v2.2/voaf_v2.2.rdf> ;
    rdfs:comment "Added properties to represent metrics of vocabulary elements usage in LOV and LOD"@en,
        "Ajout de propriétés pour représenter les métriques d'usage d'éléments de vocabulaire dans le LOV et le LOD"@fr ;
    owl:versionInfo "2.2" .

<http://purl.org/vocommons/voaf/v2.2/index.html> a frbr:Manifestation .

<http://purl.org/vocommons/voaf/v2.2/voaf_v2.2.rdf> a frbr:Manifestation ;
    frbr:alternate <http://purl.org/vocommons/voaf/v2.2/index.html> .

<http://purl.org/vocommons/voaf/v2.3> a frbr:Expression ;
    dc1:creator <http://data.semanticweb.org/person/pierre-yves-vandenbussche> ;
    dc1:date "2013-05-24" ;
    frbr:embodiment <http://purl.org/vocommons/voaf/v2.3/voaf_v2.3.rdf> ;
    rdfs:comment "Refined the voaf:dataset to a more complex element with occurrences information and added extra properties to represent metrics of vocabulary elements usage in LOV and LOD"@en,
        "Remplacement de voaf:dataset par un objet permettant d'attacher la notion d'occurrenceet ajout supplémentaire de propriétés pour représenter les métriques d'usage d'éléments de vocabulaire dans le LOV et le LOD"@fr ;
    owl:versionInfo "2.3" .

<http://purl.org/vocommons/voaf/v2.3/index.html> a frbr:Manifestation .

<http://purl.org/vocommons/voaf/v2.3/voaf_v2.3.rdf> a frbr:Manifestation ;
    frbr:alternate <http://purl.org/vocommons/voaf/v2.3/index.html> .

<http://data.semanticweb.org/person/bernard-vatant> a foaf:Person .

voaf:usedBy a owl:ObjectProperty ;
    rdfs:label "used by"@en,
        "utilisé par"@fr ;
    rdfs:comment "Indicates that the subject vocabulary is used by the object vocabulary"@en,
        "Indique que le vocabulaire sujet est utilisé par le vocabulaire objet"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    owl:inverseOf voaf:reliesOn ;
    vs:term_status "stable" .

<http://data.semanticweb.org/person/pierre-yves-vandenbussche> a foaf:Person .

voaf:DatasetOccurrences a owl:Class ;
    rdfs:label "Dataset occurrences"@en,
        "Occurrences dans un jeu de données"@fr ;
    rdfs:comment "Class used to store the number of occurences of a vocabulary in a particular dataset"@en,
        "Classe utilisée pour stocker l'information d'occurences d'un vocabulaire dans un jeu de données"@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    vs:term_status "testing" .

voaf:reliesOn a owl:ObjectProperty ;
    rdfs:label "relies on"@en,
        "réutilise"@fr ;
    rdfs:comment "Indicates that the subject vocabulary uses or extends some class or property of the object vocabulary"@en,
        "Indique que le vocabulaire sujet utilise ou étend au moins une classe ou propriété du vocabulaire objet"@fr ;
    rdfs:domain voaf:Vocabulary ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:range voaf:Vocabulary ;
    rdfs:subPropertyOf dc1:references,
        void:vocabulary ;
    vs:term_status "stable" .

voaf:Vocabulary a owl:Class ;
    rdfs:label "Vocabulary"@en,
        "Vocabulaire"@fr ;
    rdfs:comment "A vocabulary used in the linked data cloud. An instance of voaf:Vocabulary relies on or is used by at least another instance of voaf:Vocabulary"@en,
        "Un vocabulaire utilisé ou utilisable dans le Web des données. Une instance de voaf:Vocabulary s'appuie at/ou est utilisée par au moins une autre instance of voaf:Vocabulary"@fr ;
    rdfs:isDefinedBy <http://purl.org/vocommons/voaf> ;
    rdfs:subClassOf frbr:Work,
        void:Dataset ;
    owl:unionOf ( [ a owl:Restriction ;
                owl:minCardinality "1" ;
                owl:onProperty voaf:reliesOn ] [ a owl:Restriction ;
                owl:minCardinality "1" ;
                owl:onProperty voaf:usedBy ] ),
        ( [ a owl:Restriction ;
                owl:minCardinality "1" ;
                owl:onProperty voaf:reliesOn ] [ a owl:Restriction ;
                owl:minCardinality "1" ;
                owl:onProperty voaf:usedBy ] ) ;
    vs:term_status "stable" .

<http://purl.org/vocommons/voaf> a voaf:Vocabulary,
        owl:Ontology ;
    cc:license <http://creativecommons.org/licenses/by/3.0/> ;
    dc1:contributor <http://data.semanticweb.org/person/lise-rozat>,
        <http://data.semanticweb.org/person/pierre-yves-vandenbussche> ;
    dc1:creator <http://data.semanticweb.org/person/bernard-vatant> ;
    dc1:description "A vocabulary to describe linked data vocabularies and their relations."@en,
        "Un vocabulaire de description des vocabulaires RDF et de leurs relations mutuelles"@fr ;
    dc1:issued "2011-03-11"^^xsd:date ;
    dc1:modified "2013-05-24"^^xsd:date ;
    dc1:publisher <http://dbpedia.org/resource/Open_Knowledge_Foundation> ;
    dc1:title "Vocabulary of a Friend"@en,
        "Vocabulaire d'un ami"@fr ;
    frbr:realization <http://purl.org/vocommons/voaf/v1.0>,
        <http://purl.org/vocommons/voaf/v1.1>,
        <http://purl.org/vocommons/voaf/v2.0>,
        <http://purl.org/vocommons/voaf/v2.1>,
        <http://purl.org/vocommons/voaf/v2.2>,
        <http://purl.org/vocommons/voaf/v2.3> ;
    vann:preferredNamespacePrefix "voaf" ;
    vann:preferredNamespaceUri "http://purl.org/vocommons/voaf#" ;
    voaf:exampleDataset <http://lov.okfn.org/dataset/lov/lov.rdf> .

