Skip to content
Snippets Groups Projects
Select Git revision
  • 10f01d6b47c45d0787df69c7d6cb82a963987987
  • main default protected
  • 24-everything-from-git
  • 45-create-new-poc-deployment-with-docker
  • 44-add-a-cli-tool
  • improve-deployment
  • 31-backend
  • bash-script-bug-fix
  • upgrades_submodules
  • 24-dependencies-build-nested-watch
  • 24-dependencies-build-using-workspaces
  • 24-dependencies-build
  • wip-all-local
  • 10-annotot
  • 3-annotation-plugin-showing-up
15 results

README.md

Blame
  • To learn more about this project, read the wiki.
    ontology-parameters.ttl 2.98 KiB
    # baseURI: https://unsel.tetras-libre.fr/tenet/frame/parameters
    # prefix: fprm
    
    @prefix fprm: <https://unsel.tetras-libre.fr/tenet/frame/parameters#> .
    @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 xsd: <http://www.w3.org/2001/XMLSchema#> .
    
    <https://unsel.tetras-libre.fr/tenet/frame/parameters>
      rdf:type owl:Ontology ;
    .
    fprm:Frame_Parameters
      rdf:type owl:Class ;
      rdfs:comment "Parameters related to frame ontologies used in transduction queries." ;
      rdfs:label "Frame Parameters" ;
    .
    fprm:System_Entity
      rdf:type owl:Class ;
      rdfs:comment "Parameters related to Entity (System Ontology)." ;
      rdfs:label "Entity" ;
      rdfs:subClassOf fprm:System_Ontology ;
    .
    fprm:System_Feature
      rdf:type owl:Class ;
      rdfs:comment "Feature of entity" ;
      rdfs:label "feature" ;
      rdfs:subClassOf fprm:System_Ontology ;
    .
    fprm:System_Ontology
      rdf:type owl:Class ;
      rdfs:comment "Parameters related to System Ontology." ;
      rdfs:label "systemOntology" ;
      rdfs:subClassOf fprm:Frame_Parameters ;
      fprm:frameURI "https://unsel.tetras-libre.fr/tenet/frame/system-ontology#" ;
    .
    fprm:System_Property
      rdf:type owl:Class ;
      rdfs:comment "Parameters related to Property (System Ontology)." ;
      rdfs:label "property" ;
      rdfs:subClassOf fprm:System_Ontology ;
    .
    fprm:class
      rdf:type rdf:Property ;
      rdfs:domain fprm:Frame_Parameters ;
      rdfs:label "concept" ;
      rdfs:range xsd:string ;
      rdfs:subPropertyOf fprm:frameParamProperty ;
    .
    fprm:frameParamProperty
      rdf:type rdf:Property ;
      rdfs:label "Frame Parameter Property" ;
    .
    fprm:frameURI
      rdf:type rdf:Property ;
      rdfs:domain fprm:Frame_Parameters ;
      rdfs:label "URI" ;
      rdfs:range xsd:string ;
      rdfs:subPropertyOf fprm:frameParamProperty ;
    .
    fprm:restriction
      rdf:type rdf:Property ;
      rdfs:domain fprm:Frame_Parameters ;
      rdfs:label "restriction" ;
      rdfs:range xsd:string ;
      rdfs:subPropertyOf fprm:frameParamProperty ;
    .
    fprm:system_agent
      rdf:type fprm:System_Entity ;
      rdfs:label "agent" ;
      fprm:class "agent" ;
      fprm:restriction "icl>administrator" ;
      fprm:restriction "icl>person" ;
    .
    fprm:system_composant
      rdf:type fprm:System_Entity ;
      rdfs:label "composant" ;
      fprm:class "composant" ;
      fprm:restriction "icl>device" ;
      fprm:restriction "icl>electronic_device" ;
      fprm:restriction "icl>instrumentality" ;
      fprm:restriction "icl>position" ;
    .
    fprm:system_event
      rdf:type fprm:System_Property ;
      rdfs:label "systemEvent" ;
      fprm:restriction "icl>do" ;
    .
    fprm:system_message
      rdf:type fprm:System_Entity ;
      rdfs:label "message" ;
      fprm:class "message" ;
      fprm:restriction "icl>assignment" ;
      fprm:restriction "icl>communication" ;
    .
    fprm:system_place
      rdf:type fprm:System_Feature ;
      rdfs:label "place" ;
      fprm:class "place" ;
      fprm:restriction "icl>air_base_installation" ;
      fprm:restriction "icl>place" ;
    .
    fprm:system_state
      rdf:type fprm:System_Property ;
      rdfs:label "systemState" ;
      fprm:restriction "icl>property" ;
    .