Skip to content
Snippets Groups Projects
Select Git revision
  • b95b84a26dfc1a2eb92d1148509b2783030b2bb6
  • main default protected
  • export
  • 28-conversion-tests
  • extraction
  • exploration
  • exploration-old
  • 2-encoding-fix
  • main-old
9 results

macao_schema.ttl

Blame
  • macao_schema.ttl 5.15 KiB
    # baseURI: http://www.semanticweb.org/eliott/ontologies/2024/4/macao/
    
    @prefix : <http://www.semanticweb.org/eliott/ontologies/2024/4/macao/> .
    @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 xml: <http://www.w3.org/XML/1998/namespace#> .
    @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
    
    <http://www.semanticweb.org/eliott/ontologies/2024/4/macao>
      rdf:type owl:Ontology ;
      rdfs:label "macao-schema"@fr ;
      owl:versionInfo 1.1 ;
    .
    :Activite
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoContenu ;
    .
    :Champ
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoContenu ;
    .
    :Cours
      rdf:type owl:Class ;
      rdfs:subClassOf :Activite ;
    .
    :Exercice
      rdf:type owl:Class ;
      rdfs:subClassOf :Activite ;
    .
    :ExerciceGD
      rdf:type owl:Class ;
      rdfs:subClassOf :Exercice ;
    .
    :ExerciceListe
      rdf:type owl:Class ;
      rdfs:subClassOf :Exercice ;
    .
    :ExerciceQC
      rdf:type owl:Class ;
      rdfs:subClassOf :Exercice ;
    .
    :ExerciceQC_QCM
      rdf:type owl:Class ;
      rdfs:subClassOf :ExerciceQC ;
    .
    :ExerciceQC_QCU
      rdf:type owl:Class ;
      rdfs:subClassOf :ExerciceQC ;
    .
    :ExerciceQM
      rdf:type owl:Class ;
      rdfs:subClassOf :Exercice ;
    .
    :ExerciceTAT
      rdf:type owl:Class ;
      rdfs:subClassOf :Exercice ;
    .
    :FlashObject
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoRessource ;
    .
    :Image
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoRessource ;
    .
    :MacaoContenu
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoObject ;
    .
    :MacaoObject
      rdf:type owl:Class ;
    .
    :MacaoRessource
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoObject ;
    .
    :MacaoRoot
      rdf:type owl:Class ;
    .
    :Module
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoContenu ;
    .
    :Reponse
      rdf:type owl:Class ;
      rdfs:subClassOf :MacaoContenu ;
    .
    :SimpleFlash
      rdf:type owl:Class ;
      rdfs:subClassOf :FlashObject ;
    .
    :SousPartie
      rdf:type owl:Class ;
      rdfs:subClassOf :Module ;
    .
    :aReponse
      rdf:type owl:ObjectProperty ;
      rdfs:range :Reponse ;
    .
    :aReponseCorrecte
      rdf:type owl:ObjectProperty ;
      rdfs:domain :Exercice ;
      rdfs:range :Reponse ;
    .
    :aReponseIncorrecte
      rdf:type owl:ObjectProperty ;
      rdfs:domain :Exercice ;
      rdfs:range :Reponse ;
    .
    :aSegment
      rdf:type owl:ObjectProperty ;
      rdfs:domain :ExerciceTAT ;
      rdfs:range :Segment ;
    .
    :cheminFichier
      rdf:type owl:DatatypeProperty ;
      rdfs:domain :MacaoRessource ;
      rdfs:range xsd:anyURI ;
    .
    :commentaireInfo
      rdf:type owl:DatatypeProperty ;
      rdfs:domain :Activite ;
    .
    :commentaireInfo_html
      rdf:type owl:DatatypeProperty ;
      rdfs:range rdf:XMLLiteral ;
    .
    :commentaireInfo_md
      rdf:type owl:DatatypeProperty ;
    .
    :commentaireInfo_md_manual_edition
      rdf:type owl:DatatypeProperty ;
    .
    :commentaireSucces
      rdf:type owl:DatatypeProperty ;
      rdfs:domain :Activite ;
    .
    :commentaireSucces_html
      rdf:type owl:DatatypeProperty ;
      rdfs:range rdf:XMLLiteral ;
    .
    :commentaireSucces_md
      rdf:type owl:DatatypeProperty ;
    .
    :commentaireSucces_md_manual_edition
      rdf:type owl:DatatypeProperty ;
    .
    :commentaireSugg
      rdf:type owl:DatatypeProperty ;
      rdfs:domain :Activite ;
    .
    :commentaireSugg_html
      rdf:type owl:DatatypeProperty ;
      rdfs:range rdf:XMLLiteral ;
    .
    :commentaireSugg_md
      rdf:type owl:DatatypeProperty ;
    .
    :commentaireSugg_md_manual_edition
      rdf:type owl:DatatypeProperty ;
    .
    :contenuDans
      rdf:type owl:ObjectProperty ;
      owl:inverseOf :contient ;
    .
    :contient
      rdf:type owl:ObjectProperty ;
      rdf:type owl:TransitiveProperty ;
      rdfs:domain :MacaoObject ;
      rdfs:range :MacaoObject ;
    .
    :contientActivite
      rdf:type owl:ObjectProperty ;
      rdfs:domain :SousPartie ;
      rdfs:range :Activite ;
      rdfs:subPropertyOf :contient ;
    .
    :contientModule
      rdf:type owl:ObjectProperty ;
      rdfs:domain :Module ;
      rdfs:range :Module ;
      rdfs:subPropertyOf :contient ;
    .
    :contientSousPartie
      rdf:type owl:ObjectProperty ;
      rdfs:domain :Module ;
      rdfs:range :SousPartie ;
      rdfs:subPropertyOf :contientModule ;
    .
    :correct
      rdf:type owl:DatatypeProperty ;
      rdfs:range xsd:boolean ;
    .
    :description
      rdf:type owl:DatatypeProperty ;
      rdfs:domain :Activite ;
      rdfs:domain :Reponse ;
    .
    :description_html
      rdf:type owl:DatatypeProperty ;
    .
    :description_md
      rdf:type owl:DatatypeProperty ;
    .
    :description_md_manual_edition
      rdf:type owl:DatatypeProperty ;
    .
    :html
      rdf:type owl:DatatypeProperty ;
      rdfs:range rdf:XMLLiteral ;
    .
    :html_md
      rdf:type owl:DatatypeProperty ;
    .
    :html_md_manual_edition
      rdf:type owl:DatatypeProperty ;
    .
    :id
      rdf:type owl:DatatypeProperty ;
      rdf:type owl:FunctionalProperty ;
      rdfs:domain :MacaoContenu ;
      rdfs:range xsd:positiveInteger ;
      rdfs:subPropertyOf owl:topDataProperty ;
    .
    :incluseDans
      rdf:type owl:ObjectProperty ;
      rdfs:domain :MacaoRessource ;
      rdfs:range :Activite ;
      owl:inverseOf :inclutRessource ;
    .
    :inclutRessource
      rdf:type owl:ObjectProperty ;
      rdfs:domain :Activite ;
      rdfs:range :MacaoRessource ;
    .
    :surveyjs_json
      rdf:type owl:DatatypeProperty ;
      rdfs:domain :Activite ;
      rdfs:domain :Reponse ;
    .
    :titre
      rdf:type owl:DatatypeProperty ;
      rdf:type owl:FunctionalProperty ;
      rdfs:domain :MacaoContenu ;
      rdfs:range rdf:PlainLiteral ;
    .
    [
      rdf:type owl:AllDisjointClasses ;
      owl:members (
          :ExerciceGD
          :ExerciceQC
          :ExerciceQM
          :ExerciceTAT
        ) ;
    ].