observable:PDFFileFacet leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/PDFFileFacet

Label

PDFFileFacet

Description

A PDF file facet is a grouping of characteristics unique to a PDF (Portable Document Format) file.

Target Classes (1)

Shape Properties

Instances of observable:PDFFileFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:PDFFileFacet
observable:documentInformationDictionary 1 types:ControlledDictionary
observable:isOptimized 1 xsd:boolean
observable:pdfCreationDate 1 xsd:dateTime
observable:pdfId0 xsd:string
observable:pdfId1 1 xsd:string
observable:pdfModDate 1 xsd:dateTime
observable:version 1 xsd:string

Implementation

@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/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 types: <https://ontology.unifiedcyberontology.org/uco/types/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:PDFFileFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "PDFFileFacet"@en ;
    rdfs:comment "A PDF file facet is a grouping of characteristics unique to a PDF (Portable Document Format) file."@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:class types:ControlledDictionary ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:documentInformationDictionary ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:isOptimized ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pdfCreationDate ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pdfModDate ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pdfId1 ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:version ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pdfId0 ] ;
    sh:targetClass observable:PDFFileFacet .