https://unifiedcyberontology.org/ontology/uco/observable#WindowsRegistryKeyFacet
          A Windows registry key facet is a grouping of characteristics unique to a particular key within a Windows registry (A hierarchical database that stores low-level settings for the Microsoft Windows operating system and for applications that opt to use the registry). [based on https://en.wikipedia.org/wiki/Windows_Registry]
Instances of observable:WindowsRegistryKeyFacet can have the following properties:
PROPERTY  | 
                    MIN COUNT  | 
                    MAX COUNT  | 
                    TYPE  | 
                |
|---|---|---|---|---|
| observable:WindowsRegistryKeyFacet | ||||
| observable:creator | 0 | 1 |      
                        
                        
                          
                            observable:ObservableObject
                           
                           | 
                    
                  |
| observable:key | 1 | 1 |      
                        
                          
                            xsd:string
                           
                             | 
                    
                  |
| observable:modifiedTime | 0 | 1 |      
                        
                          
                            xsd:dateTime
                           
                             | 
                    
                  |
| observable:numberOfSubkeys | 0 | 1 |      
                        
                          
                            xsd:integer
                           
                             | 
                    
                  |
| observable:registryValues | 0 | * |      
                        
                        
                          
                            observable:WindowsRegistryValue
                           
                           | 
                    
                  |
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:WindowsRegistryKeyFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "WindowsRegistryKeyFacet"@en ;
    rdfs:comment "A Windows registry key facet is a grouping of characteristics unique to a particular key within a Windows registry (A hierarchical database that stores low-level settings for the Microsoft Windows operating system and for applications that opt to use the registry). [based on https://en.wikipedia.org/wiki/Windows_Registry]"@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:creator ],
        [ sh:class observable:WindowsRegistryValue ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:registryValues ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:modifiedTime ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:numberOfSubkeys ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:key ] ;
    sh:targetClass observable:WindowsRegistryKeyFacet .