observable:PDFFileFacet leaf node


URI

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

Label

PDFFileFacet

Description

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

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of observable:PDFFileFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:PDFFileFacet
observable:documentInformationDictionary 0 1 types:ControlledDictionary
observable:isOptimized 0 1 xsd:boolean
observable:pdfId0 0 * xsd:string
observable:pdfId1 0 1 xsd:string
observable:version 0 1 xsd:string

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@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 types: <https://unifiedcyberontology.org/ontology/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:BlankNodeOrIRI ;
            sh:path observable:documentInformationDictionary ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:isOptimized ],
        [ 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 .