StartOfFiscalYear

/FundsXML4/Funds/Fund/FundStaticData/StartOfFiscalYear

Diagram

StartOfFiscalYear First day of fiscal year (day/month) Day xs:positiveInteger [1] Month xs:positiveInteger [1]

Documentation

First day of fiscal year (day/month)

Properties

Type
DayMonthType
Cardinality
0..1
Namespace
xs = "http://www.w3.org/2001/XMLSchema"
altova = "http://www.altova.com/xml-schema-extensions"
ds = "http://www.w3.org/2000/09/xmldsig#"
Level
4
Sample Data

Child Elements & Attributes

Name (XPath) Type Documentation Sample Data
xs:positiveInteger

Day between 1 and 31

12
xs:positiveInteger

Month between 1 and 12

2

Element Definition

<xs:element xmlns:altova="http://www.altova.com/xml-schema-extensions"
            xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
            xmlns:xs="http://www.w3.org/2001/XMLSchema"
            minOccurs="0"
            name="StartOfFiscalYear"
            type="DayMonthType">
   <xs:annotation>
      <xs:documentation>First day of fiscal year (day/month)</xs:documentation>
   </xs:annotation>
</xs:element>

Referenced Type Definition (DayMonthType)

<xs:complexType xmlns:altova="http://www.altova.com/xml-schema-extensions"
                xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
                xmlns:xs="http://www.w3.org/2001/XMLSchema"
                name="DayMonthType">
   <xs:sequence>
      <xs:element name="Day">
         <xs:annotation>
            <xs:documentation>Day between 1 and 31</xs:documentation>
         </xs:annotation>
         <xs:simpleType>
            <xs:restriction base="xs:positiveInteger">
               <xs:minInclusive value="1"/>
               <xs:maxInclusive value="31"/>
            </xs:restriction>
         </xs:simpleType>
      </xs:element>
      <xs:element name="Month">
         <xs:annotation>
            <xs:documentation>Month between 1 and 12</xs:documentation>
         </xs:annotation>
         <xs:simpleType>
            <xs:restriction base="xs:positiveInteger">
               <xs:minInclusive value="1"/>
               <xs:maxInclusive value="12"/>
            </xs:restriction>
         </xs:simpleType>
      </xs:element>
   </xs:sequence>
</xs:complexType>