observable:MimePartType leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#MimePartType

Label

MimePartType

Description

A mime part type is a grouping of characteristics unique to a component of a multi-part email body.

Target Classes (1)

Shape Properties

Instances of observable:MimePartType can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:MimePartType
observable:body 0 1 xsd:string
observable:bodyRaw 0 1 observable:ObservableObject
observable:contentDisposition 0 1 xsd:string
observable:contentType 0 1 xsd:string

Implementation

@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:MimePartType a owl:Class,
        sh:NodeShape ;
    rdfs:label "MimePartType"@en ;
    rdfs:comment "A mime part type is a grouping of characteristics unique to a component of a multi-part email body."@en ;
    sh:property [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:bodyRaw ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:body ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:contentDisposition ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:contentType ] ;
    sh:targetClass observable:MimePartType .