observable:isSecure leaf node


URI

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

Label

isSecure

Description

Is the cookie secure? If the cookie is secure it cannot be delivered over an unencrypted session such as http.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) observable:isSecure xsd:boolean

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 xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:isSecure a owl:DatatypeProperty ;
    rdfs:label "isSecure"@en ;
    rdfs:comment "Is the cookie secure? If the cookie is secure it cannot be delivered over an unencrypted session such as http."@en ;
    rdfs:range xsd:boolean .