From e987aee4d178f4ed097e033598ad61cbfaa72593 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Mon, 18 Sep 2023 09:46:47 -0400 Subject: [PATCH 1/5] import de BOT et integration des entites utiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit integration des entités de bot (squash) --- display-ontology.ttl | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/display-ontology.ttl b/display-ontology.ttl index b295b53..2d3bb47 100644 --- a/display-ontology.ttl +++ b/display-ontology.ttl @@ -10,6 +10,7 @@ @base . rdf:type owl:Ontology ; + owl:imports ; dcterms:creator "David Valentine" , "Emmanuel Chateau-Dutier" , "Lena Krause" , @@ -21,8 +22,8 @@ Scientific director: Emmanuel Chateau-Dutier. Project supported by the University of Montreal, the Canada Fund for Innovation and the Province of Quebec."""@en ; dcterms:license ; dcterms:modified "2023-08-28T09:22:00-04:00"^^xsd:dateTime ; - dcterms:title "L’ontologie Display"@fr , - "Display Ontology"@en ; + dcterms:title "Display Ontology"@en , + "L’ontologie Display"@fr ; rdfs:seeAlso , ; owl:versionInfo "0.0.0" . @@ -86,6 +87,13 @@ display:Base rdf:type owl:Class ; vs:term_status "unstable" . +### https://ouvroir.umontreal.ca/onto/display#BuildingElement +display:BuildingElement rdf:type owl:Class ; + owl:equivalentClass bot:Element ; + rdfs:subClassOf display:Support ; + vs:term_status "unstable" . + + ### https://ouvroir.umontreal.ca/onto/display#Display display:Display rdf:type owl:Class ; rdfs:comment "Aggregate of exhibits arranged for the presentation of works or artifacts in an exhibition space."@en , @@ -121,6 +129,14 @@ display:Exhibit rdf:type owl:Class ; vs:term_status "unstable" . +### https://ouvroir.umontreal.ca/onto/display#ExhibitionSpace +display:ExhibitionSpace rdf:type owl:Class ; + rdfs:subClassOf bot:Space ; + rdfs:comment "A part of the physical world or a virtual world whose 3D spatial extent is bounded actually or theoretically, and provides for exhibition functions within the zone it is contained in."@en ; + rdfs:label "espace expographique"@fr , + "exhibition space"@en . + + ### https://ouvroir.umontreal.ca/onto/display#InformativeExhibit display:InformativeExhibit rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; @@ -204,4 +220,12 @@ display:VisualArtifact rdf:type owl:Class ; vs:term_status "unstable" . +### https://w3id.org/bot-0.3.2#Element +bot:Element rdf:type owl:Class . + + +### https://w3id.org/bot-0.3.2#Space +bot:Space rdf:type owl:Class . + + ### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi From 66c1b925bd63d4b8a5e7f41cc1587150bb90eec6 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Mon, 18 Sep 2023 11:51:21 -0400 Subject: [PATCH 2/5] ajout de la prop display:containsExhibit ajout de def pour display:containsExhibit (squash) --- display-ontology.ttl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/display-ontology.ttl b/display-ontology.ttl index 2d3bb47..4d268d4 100644 --- a/display-ontology.ttl +++ b/display-ontology.ttl @@ -56,6 +56,24 @@ dcterms:title rdf:type owl:AnnotationProperty . vs:term_status rdf:type owl:AnnotationProperty . +################################################################# +# Object Properties +################################################################# + +### https://ouvroir.umontreal.ca/onto/display#containsExhibit +display:containsExhibit rdf:type owl:ObjectProperty ; + rdfs:domain display:ExhibitionSpace ; + rdfs:range display:Exhibit ; + rdfs:comment "Relation entre un espace expographique et un expôt contenu dans l'espace expographique."@fr . + + +### https://ouvroir.umontreal.ca/onto/display#includesExhibit +display:includesExhibit rdf:type owl:ObjectProperty ; + rdfs:domain display:Display ; + rdfs:range display:Exhibit ; + rdfs:comment "Realtion entre un display et un expôt agencé au sein du display."@fr . + + ################################################################# # Classes ################################################################# From 16bc6b949f282040713b663e3c74caf02968aa82 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Wed, 20 Sep 2023 17:32:16 -0400 Subject: [PATCH 3/5] ajout des relations topologiques provisoires --- display-ontology.ttl | 117 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 115 insertions(+), 2 deletions(-) diff --git a/display-ontology.ttl b/display-ontology.ttl index 4d268d4..cd16b7b 100644 --- a/display-ontology.ttl +++ b/display-ontology.ttl @@ -60,18 +60,131 @@ vs:term_status rdf:type owl:AnnotationProperty . # Object Properties ################################################################# +### https://ouvroir.umontreal.ca/onto/display#conceptualRelation +display:conceptualRelation rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:comment "Conceptual relation between exhibits (non topological). Not to be stated explicitly."@en ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#contains +display:contains rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + owl:inverseOf display:isContainedIn ; + rdfs:comment "The subject exhibit spatially contains the object exhibit inside a space volume. Example: An artifact is inside a showcase."@en ; + vs:term_status "unstable" . + + ### https://ouvroir.umontreal.ca/onto/display#containsExhibit display:containsExhibit rdf:type owl:ObjectProperty ; rdfs:domain display:ExhibitionSpace ; rdfs:range display:Exhibit ; - rdfs:comment "Relation entre un espace expographique et un expôt contenu dans l'espace expographique."@fr . + rdfs:comment "Relation entre un espace expographique et un expôt contenu dans l'espace expographique."@fr ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#covers +display:covers rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#inFrontOf +display:inFrontOf rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + rdf:type owl:SymmetricProperty ; + vs:term_status "unstable" . ### https://ouvroir.umontreal.ca/onto/display#includesExhibit display:includesExhibit rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:conceptualRelation ; rdfs:domain display:Display ; rdfs:range display:Exhibit ; - rdfs:comment "Realtion entre un display et un expôt agencé au sein du display."@fr . + rdfs:comment "Relation entre un display et un expôt agencé au sein du display : le display constitue un agencement qui inclut un ou plusieurs expôts."@fr ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#intersects +display:intersects rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isAbove +display:isAbove rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:isAdjacentTo ; + owl:propertyDisjointWith display:isBelow ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isAdjacentTo +display:isAdjacentTo rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isBehind +display:isBehind rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isBelow +display:isBelow rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:isAdjacentTo ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isComposedOf +display:isComposedOf rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:conceptualRelation ; + rdfs:domain display:Artwork ; + rdfs:range display:Exhibit ; + rdfs:comment "Relation between an artwork and an artifact: An artwork is made up of one or more artifacts."@en , + "Relation entre une œuvre et un artéfact : une oeuvre est composée de un ou plusieurs artéfacts."@fr ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isContainedIn +display:isContainedIn rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isLeftOf +display:isLeftOf rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:isAdjacentTo ; + owl:inverseOf display:isRightOf ; + owl:propertyDisjointWith display:isRightOf ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#isRightOf +display:isRightOf rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:isAdjacentTo ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#overlaps +display:overlaps rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#topologicalRelation +display:topologicalRelation rdf:type owl:ObjectProperty ; + rdfs:domain display:Exhibit ; + rdfs:range display:Exhibit ; + rdfs:comment "Topological relation within the exhibition space. Not to be stated explicitly."@en ; + vs:term_status "unstable" . + + +### https://ouvroir.umontreal.ca/onto/display#touches +display:touches rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf display:topologicalRelation ; + rdf:type owl:SymmetricProperty ; + vs:term_status "unstable" . ################################################################# From d6840efb8d2bd210d70e0b019da908b893427f2f Mon Sep 17 00:00:00 2001 From: David Valentine Date: Wed, 20 Sep 2023 17:35:57 -0400 Subject: [PATCH 4/5] diverses retouches des proprietes rdfs:comment --- display-ontology.ttl | 35 +++++++++-------------------------- 1 file changed, 9 insertions(+), 26 deletions(-) diff --git a/display-ontology.ttl b/display-ontology.ttl index cd16b7b..d58f58c 100644 --- a/display-ontology.ttl +++ b/display-ontology.ttl @@ -213,7 +213,7 @@ display:Artwork rdf:type owl:Class ; ### https://ouvroir.umontreal.ca/onto/display#Base display:Base rdf:type owl:Class ; rdfs:subClassOf display:Support ; - rdfs:comment "Socle, plateforme, base, etc."@fr ; + rdfs:comment "Objet sur lequel repose un expôt. Exemple : socle, plateforme, base, chevalet, etc."@fr ; rdfs:isDefinedBy ; vs:term_status "unstable" . @@ -228,7 +228,7 @@ display:BuildingElement rdf:type owl:Class ; ### https://ouvroir.umontreal.ca/onto/display#Display display:Display rdf:type owl:Class ; rdfs:comment "Aggregate of exhibits arranged for the presentation of works or artifacts in an exhibition space."@en , - "Ensemble ou agrégat d’expôts agencés pour la présentation d’œuvres ou d’artéfacts dans un espace d’exposition."@fr ; + "Ensemble ou agrégat d’expôts agencés pour la présentation d’œuvres ou d’artéfacts dans un espace expographique."@fr ; rdfs:isDefinedBy ; rdfs:label "display"@en , "display"@fr ; @@ -242,18 +242,10 @@ display:DistancingDevice rdf:type owl:Class ; vs:term_status "unstable" . -### https://ouvroir.umontreal.ca/onto/display#Easel -display:Easel rdf:type owl:Class ; - rdfs:subClassOf display:Support ; - rdfs:isDefinedBy ; - rdfs:label "chevalet"@fr , - "easel"@en ; - vs:term_status "unstable" . - - ### https://ouvroir.umontreal.ca/onto/display#Exhibit display:Exhibit rdf:type owl:Class ; - rdfs:comment "Objet exposé"@fr ; + rdfs:comment "Constituent of a display entity with a characteristic aesthetic or technical function, with form or position"@en , + "Objet exposé"@fr ; rdfs:isDefinedBy ; rdfs:label "exhibit"@en , "expôt"@fr ; @@ -306,10 +298,7 @@ display:SonicArtifact rdf:type owl:Class ; display:StructuralExhibit rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; rdfs:comment """Contrainte physique qui structure l’espace d’exposition. Détermine ou influence la relation spatiale entre l’expôt et l’origine du point de vue. -Exemple : poteau de délimitation, poteau de mise à distance, poteau de balisage, poteau de guidage, corde, barrière, barrière de corde -mazzanine -cadre (regarder un expôt à travers un cadre, un trou ou un objectif). -À discuter : portes et fenêtres incluses dans un display, ou autres éléments fixes de l’espace du bâtiment."""@fr ; +Exemple : poteau de délimitation, poteau de mise à distance, poteau de balisage, poteau de guidage, corde, barrière, barrière de corde; mazzanine; cadre (regarder un expôt à travers un cadre, un trou ou un objectif)."""@fr ; rdfs:isDefinedBy ; vs:term_status "unstable" . @@ -317,15 +306,7 @@ cadre (regarder un expôt à travers un cadre, un trou ou un objectif). ### https://ouvroir.umontreal.ca/onto/display#Support display:Support rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; - rdfs:comment """instanciable? Est-il nécessaire de créer une hiérarchie de classe? - -Par exemple, veut-on identifier de façon unique chaque \"base\" utilisé dans l’espace d’exposition, si ce support n’est qu’un type générique? - -Ou veut-on dire qu’un expôt est posé sur un support générique de type \"chevalet\" sans identifier chaque chevalet? Par exemple, une collection d’objets posés sur des chevalets. Dans ce cas, un système de typage avec vocabulaire contrôlé serait approprié (Exhibit hasSupportType Easel au lieu d’instancier chaque chevalet). - -Mais nous voudrons probablement identifier les meubles, les murs, les plafonds utilisés comme support. Tous les supports ne partageraient donc pas les mêmes propriétés, voire certains supports seraient des expôts et d’autres non (à discuter). - -La question est : besoin d’indentification? Si oui, instanciation. Sinon, typage avec vocabulaire contrôlé. Solution ontologique à discuter."""@fr ; + rdfs:comment "instanciable? Est-il nécessaire de créer une hiérarchie de classe? Par exemple, veut-on identifier de façon unique chaque \"base\" utilisé dans l’espace expographique, si ce support n’est qu’un type générique? Ou veut-on dire qu’un expôt est posé sur un support générique de type \"chevalet\" sans identifier chaque chevalet? Par exemple, une collection d’objets posés sur des chevalets. Dans ce cas, un système de typage avec vocabulaire contrôlé serait approprié (Exhibit hasSupportType Easel au lieu d’instancier chaque chevalet). Mais nous voudrons probablement identifier les meubles, les murs, les plafonds utilisés comme support. Tous les supports ne partageraient donc pas les mêmes propriétés, voire certains supports seraient des expôts et d’autres non (à discuter). La question est : besoin d’indentification? Si oui, instanciation. Sinon, typage avec vocabulaire contrôlé. Solution ontologique à discuter."@fr ; rdfs:isDefinedBy ; vs:term_status "unstable" . @@ -333,12 +314,14 @@ La question est : besoin d’indentification? Si oui, instanciation. Sinon, typ ### https://ouvroir.umontreal.ca/onto/display#Surface display:Surface rdf:type owl:Class ; rdfs:subClassOf display:Support ; - rdfs:comment """Terme \"surface\" à reconsidérer : on essaie de représenter murs, plafonds, planchers, cimaises utilisés comme surface d’exposition. + rdfs:comment "La notion de surface d’accrochage serait vraisemblablement prise en charge par bot:Element dont la sémantique est acteuellement intégrée par display:BuildingElement owl:equivalentClass bot:Element"@fr , + """Terme \"surface\" à reconsidérer : on essaie de représenter murs, plafonds, planchers, cimaises utilisés comme surface d’exposition. Surface plane, convexe, concave, accidentée. Surface mobile, cloison mobile (par contre immobile dans le cadre d’une exposition)."""@fr ; rdfs:isDefinedBy ; + owl:deprecated "true"^^xsd:boolean ; vs:term_status "unstable" . From b85b15b10b60109aa3f91fe404ed3be685295d79 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Wed, 20 Sep 2023 17:11:02 -0400 Subject: [PATCH 5/5] modification des metadonnees substring display: prefix (squash) mise a jour gitignore (squash) --- .gitignore | 6 ++++- display-ontology.ttl | 63 ++++++++++++++++++++++---------------------- 2 files changed, 37 insertions(+), 32 deletions(-) diff --git a/.gitignore b/.gitignore index e59d699..212879d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ -ontologies/ \ No newline at end of file +# catalogue d'ontologies utiles +ontologies/ + +# log de Protege +catalog-v001.xml \ No newline at end of file diff --git a/display-ontology.ttl b/display-ontology.ttl index d58f58c..2d503c7 100644 --- a/display-ontology.ttl +++ b/display-ontology.ttl @@ -1,5 +1,5 @@ -@prefix : . @prefix vs: . +@prefix bot: . @prefix owl: . @prefix rdf: . @prefix xml: . @@ -7,26 +7,27 @@ @prefix rdfs: . @prefix dcterms: . @prefix display: . -@base . - - rdf:type owl:Ontology ; - owl:imports ; - dcterms:creator "David Valentine" , - "Emmanuel Chateau-Dutier" , - "Lena Krause" , - "Zoë Renaudie" ; - dcterms:description """This computer ontology is intended to describe in an explicit and formal way the features of a collection display or an exhibition (identification of the exhibition, proximity and contiguity of the works, vis-à-vis, etc.). +@base . + +display: rdf:type owl:Ontology ; + owl:imports ; + dcterms:creator "David Valentine" , + "Emmanuel Chateau-Dutier" , + "Lena Krause" , + "Zoë Renaudie" ; + dcterms:description """This computer ontology is intended to describe in an explicit and formal way the features of a collection display or an exhibition (identification of the exhibition, proximity and contiguity of the works, vis-à-vis, etc.). This ontology is developed at the Ouvroir laboratory in the framework of the partnership New uses of collections in art museums. Project manager: Lena Krause. Scientific director: Emmanuel Chateau-Dutier. Project supported by the University of Montreal, the Canada Fund for Innovation and the Province of Quebec."""@en ; - dcterms:license ; - dcterms:modified "2023-08-28T09:22:00-04:00"^^xsd:dateTime ; - dcterms:title "Display Ontology"@en , - "L’ontologie Display"@fr ; - rdfs:seeAlso , - ; - owl:versionInfo "0.0.0" . + dcterms:license ; + dcterms:modified "2023-09-20T17:45:00-04:00"^^xsd:dateTime ; + dcterms:title "Display Ontology"@en , + "L’ontologie Display"@fr ; + rdfs:comment "On 09/19/2019 this ontology is a work in progress that is the result of the first reflections of the team, and that is not intended to be use at the moment." ; + rdfs:seeAlso , + ; + owl:versionInfo "0.0.0" . ################################################################# # Annotation properties @@ -194,7 +195,7 @@ display:touches rdf:type owl:ObjectProperty ; ### https://ouvroir.umontreal.ca/onto/display#Artifact display:Artifact rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "artifact"@en , "artéfact"@fr ; vs:term_status "unstable" . @@ -204,7 +205,7 @@ display:Artifact rdf:type owl:Class ; display:Artwork rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; rdfs:comment "À discuter : positionnement dans la hiérarchie (artéfact ou non?)."@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "artwork"@en , "œuvre d’art"@fr ; vs:term_status "unstable" . @@ -214,7 +215,7 @@ display:Artwork rdf:type owl:Class ; display:Base rdf:type owl:Class ; rdfs:subClassOf display:Support ; rdfs:comment "Objet sur lequel repose un expôt. Exemple : socle, plateforme, base, chevalet, etc."@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; vs:term_status "unstable" . @@ -229,7 +230,7 @@ display:BuildingElement rdf:type owl:Class ; display:Display rdf:type owl:Class ; rdfs:comment "Aggregate of exhibits arranged for the presentation of works or artifacts in an exhibition space."@en , "Ensemble ou agrégat d’expôts agencés pour la présentation d’œuvres ou d’artéfacts dans un espace expographique."@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "display"@en , "display"@fr ; vs:term_status "unstable" . @@ -238,7 +239,7 @@ display:Display rdf:type owl:Class ; ### https://ouvroir.umontreal.ca/onto/display#DistancingDevice display:DistancingDevice rdf:type owl:Class ; rdfs:subClassOf display:StructuralExhibit ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; vs:term_status "unstable" . @@ -246,7 +247,7 @@ display:DistancingDevice rdf:type owl:Class ; display:Exhibit rdf:type owl:Class ; rdfs:comment "Constituent of a display entity with a characteristic aesthetic or technical function, with form or position"@en , "Objet exposé"@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "exhibit"@en , "expôt"@fr ; vs:term_status "unstable" . @@ -264,7 +265,7 @@ display:ExhibitionSpace rdf:type owl:Class ; display:InformativeExhibit rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; rdfs:comment "Expôt fournissant de l’information. Exemple : cartel."@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; vs:term_status "unstable" . @@ -272,14 +273,14 @@ display:InformativeExhibit rdf:type owl:Class ; display:MountingDevice rdf:type owl:Class ; rdfs:comment """Classe ou propriété? La notion d’interface a été évoquée. La relation entre l’expôt et le support pourrait, par exemple, être définie par une propriété précisant la manière (suspendu, posé, accroché, en fonction d’un vocabulaire contrôlé) et une propriété précisant l’objet utilisé pour ce faire, si nécessaire (avec vocabulaire contrôlé puisqu’on ne voudra probablement pas avoir de l’info sur les instances du dispositif d’accrochage). Propiétés de la relation topologique (?), celle-ci envisagée comme entité, permettant de garder séparés les expôts et la topologie."""@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; vs:term_status "unstable" . ### https://ouvroir.umontreal.ca/onto/display#Showcase display:Showcase rdf:type owl:Class ; rdfs:subClassOf display:Support ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "showcase"@en , "vitrine"@fr ; vs:term_status "unstable" . @@ -288,7 +289,7 @@ display:Showcase rdf:type owl:Class ; ### https://ouvroir.umontreal.ca/onto/display#SonicArtifact display:SonicArtifact rdf:type owl:Class ; rdfs:subClassOf display:Artifact ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "artéfact sonore"@fr , "sonic artifact"@en ; vs:term_status "unstable" . @@ -299,7 +300,7 @@ display:StructuralExhibit rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; rdfs:comment """Contrainte physique qui structure l’espace d’exposition. Détermine ou influence la relation spatiale entre l’expôt et l’origine du point de vue. Exemple : poteau de délimitation, poteau de mise à distance, poteau de balisage, poteau de guidage, corde, barrière, barrière de corde; mazzanine; cadre (regarder un expôt à travers un cadre, un trou ou un objectif)."""@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; vs:term_status "unstable" . @@ -307,7 +308,7 @@ Exemple : poteau de délimitation, poteau de mise à distance, poteau de balisa display:Support rdf:type owl:Class ; rdfs:subClassOf display:Exhibit ; rdfs:comment "instanciable? Est-il nécessaire de créer une hiérarchie de classe? Par exemple, veut-on identifier de façon unique chaque \"base\" utilisé dans l’espace expographique, si ce support n’est qu’un type générique? Ou veut-on dire qu’un expôt est posé sur un support générique de type \"chevalet\" sans identifier chaque chevalet? Par exemple, une collection d’objets posés sur des chevalets. Dans ce cas, un système de typage avec vocabulaire contrôlé serait approprié (Exhibit hasSupportType Easel au lieu d’instancier chaque chevalet). Mais nous voudrons probablement identifier les meubles, les murs, les plafonds utilisés comme support. Tous les supports ne partageraient donc pas les mêmes propriétés, voire certains supports seraient des expôts et d’autres non (à discuter). La question est : besoin d’indentification? Si oui, instanciation. Sinon, typage avec vocabulaire contrôlé. Solution ontologique à discuter."@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; vs:term_status "unstable" . @@ -320,7 +321,7 @@ display:Surface rdf:type owl:Class ; Surface plane, convexe, concave, accidentée. Surface mobile, cloison mobile (par contre immobile dans le cadre d’une exposition)."""@fr ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; owl:deprecated "true"^^xsd:boolean ; vs:term_status "unstable" . @@ -328,7 +329,7 @@ Surface mobile, cloison mobile (par contre immobile dans le cadre d’une exposi ### https://ouvroir.umontreal.ca/onto/display#VisualArtifact display:VisualArtifact rdf:type owl:Class ; rdfs:subClassOf display:Artifact ; - rdfs:isDefinedBy ; + rdfs:isDefinedBy display: ; rdfs:label "artéfact visuel"@fr , "visual artifact"@en ; vs:term_status "unstable" .