@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xmp: <http://ns.adobe.com/xap/1.0/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.w3.org/2002/07/owl#> .

[ rdf:type owl:Ontology
 ] .

#################################################################
#    Annotation properties
#################################################################

###  http://ns.adobe.com/xap/1.0/CreateDate
xmp:CreateDate rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/creator
dc:creator rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/description
dc:description rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/format
dc:format rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/rights
dc:rights rdf:type owl:AnnotationProperty .


###  http://purl.org/dc/elements/1.1/title
dc:title rdf:type owl:AnnotationProperty .


###  http://www.w3.org/1999/02/22-rdf-syntax-ns#_1
rdf:_1 rdf:type owl:AnnotationProperty .


#################################################################
#    Classes
#################################################################

###  http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt
rdf:Alt rdf:type owl:Class .


###  http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
rdf:Seq rdf:type owl:Class .


#################################################################
#    Annotations
#################################################################

<https://kshell.com/sgs/example_uri_0001/> dc:description [ rdf:type rdf:Alt ;
                                                            rdf:_1 "VRML visualization"@en
                                                          ] ;
                                           xmp:CreateDate "2021-2-10" ;
                                           dc:rights "" ;
                                           dc:creator [ rdf:type rdf:Seq ;
                                                        rdf:_1 "vmarchetti@kshell.com"
                                                      ] ;
                                           dc:title [ rdf:type rdf:Alt ;
                                                      rdf:_1 "l-bracket_20120725.134815"@en
                                                    ] ;
                                           dc:format "model/x3d-vrml" .


###  Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi
