| # List of XSD types that can be defined as a type hint parameter.
xsd_types:
    int: "int"
    UID: "string"
    byte: "string"
    bool: "bool"
    date: "string"
    long: "int"
    Name: "string"
    IDREF: "string"
    token: "string"
    float: "float"
    short: "int"
    gYear: "string"
    QName: "string"
    IDREFS: "string"
    NCName: "string"
    string: "string"
    double: "string"
    anyURI: "string"
    gMonth: "string"
    boolean: "bool"
    decimal: "float"
    integer: "int"
    NMTOKEN: "string"
    NMTOKENS: "string"
    duration: "int"
    dateTime: "string"
    language: "string"
    timeStamp: "int"
    timestamp: "int"
    gMonthDay: "int"
    gYearMonth: "int"
    unsignedInt: "int"
    unsignedLong: "int"
    unsignedByte: "string"
    unsignedShort: "int"
    DayOfWeekType: "string"
    negativeInteger: "int"
    positiveInteger: "int"
    normalizedString: "string"
    nonNegativeInteger: "int"
    nonPositiveInteger: "int"
 |