@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix signify: <http://purl.org/signify/ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

<http://purl.org/signify/ns#>
    a owl:Ontology ;
    rdfs:comment " A RDF vocabulary for cryptographically signing content-addressed content using the Ed25519 algorithm."@en ;
    rdfs:label "RDF Signify" .

signify:Signature
    a rdfs:Class ;
    rdfs:comment "An Ed25519 signature"@en ;
    rdfs:label "Signature"@en .

signify:message
    a rdf:Property ;
    rdfs:domain signify:Signature ;
    rdfs:label "Signed Message"@en .

signify:publicKey
    a rdf:Property ;
    rdfs:comment "An associated Ed25519 public key"@en ;
    rdfs:label "Public Key"@en .

signify:secretKey
    a rdf:Property ;
    rdfs:comment "An associated Ed25519 secret key"@en ;
    rdfs:label "Secret Key"@en .

