The following operations are supported. For a formal definition, please review the Service Description.

Web Service Links

Namespace Children of ::wsdb::types::datetime::gMonth

Namespace Code for ::wsdb::types::datetime::gMonth

namespace eval ::wsdb::types::datetime::gMonth {
    variable base xsd::string
    variable pattern {\A(?:([0][1-9]|[1][0-2]))(Z|(([\+\-]{1}))?((?:(14)(?::)(00))|(?:([0][0-9]|[1][0-3])(?::)([0-5][0-9]))))?\Z}
    variable validate ::wsdb::types::datetime::gMonth::validate

}

Procedures in ::wsdb::types::datetime::gMonth


proc ::wsdb::types::datetime::gMonth::validate {
    value
} {
        variable base
        variable pattern
        if {[::wsdb::types::${base}::validate $value] && [regexp $pattern $value]} {
            return 1
        } else {
            return 0
     }}