<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
  <!ENTITY sswap 'http://sswapmeet.sswap.info/sswap/'>
  <!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
  <!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'>
  <!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
  <!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>]>
<rdf:RDF
    xmlns:rdf="&rdf;"
    xmlns:sswap="&sswap;"
    xmlns:owl="&owl;"
    xmlns:xsd="&xsd;"
    xmlns:rdfs="&rdfs;">
    <owl:Ontology rdf:about="&sswap;owlOntology">
        <owl:imports rdf:resource="&sswap;owlOntology"/>
    </owl:Ontology>
    <owl:Class rdf:about="&sswap;SSWAP"/>
    <owl:Class rdf:about="&sswap;Object"/>
    <owl:Class rdf:about="&sswap;Subject">
        <rdfs:subClassOf rdf:resource="&sswap;SSWAP"/>
        <rdfs:label rdf:datatype="&xsd;string">Subject</rdfs:label>
        <owl:equivalentClass>
            <owl:Class>
                <owl:intersectionOf rdf:parseType="Collection">
                    <owl:Restriction>
                        <owl:onProperty>
                            <owl:ObjectProperty rdf:about="&sswap;mapsTo"/>
                        </owl:onProperty>
                        <owl:someValuesFrom rdf:resource="&sswap;Object"/>
                    </owl:Restriction>
                    <owl:Restriction>
                        <owl:allValuesFrom rdf:resource="&sswap;Object"/>
                        <owl:onProperty rdf:resource="&sswap;mapsTo"/>
                    </owl:Restriction>
                </owl:intersectionOf>
            </owl:Class>
        </owl:equivalentClass>
        <rdfs:comment rdf:datatype="&xsd;string">A sswap:Subject is the subject of a mapping; it is the data consumed by (input to) the service.

In the concept of a service mapping an input to an output, the sswap:Subject corresponds to the input. The property sswap:mapsTo explicitly demarcates the mapping (or transformation) from this input to its output. One can also use sswap:mapsTo to describe inverse mappings where the stated relationship is from a sswap:Object to a sswap:Subject.

        Required predicates: sswap:mapsTo;

        Optional predicates: (none).</rdfs:comment>
    </owl:Class>
</rdf:RDF>

