observable:requestMethod leaf node


URI

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

Label

requestMethod

Description

Specifies the HTTP method portion of the HTTP request line, as a lowercase string.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) observable:requestMethod 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 xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:requestMethod a owl:DatatypeProperty ;
    rdfs:label "requestMethod"@en ;
    rdfs:comment """Specifies the HTTP method portion of the HTTP request line, as a lowercase string.
          """@en ;
    rdfs:range xsd:string .