<?xml version="1.0" encoding="UTF-8"?>
<!-- 
EXAMPLE

This is a simple extension that can be used with HR-XML's IndicativeData specification.

The purpose is to add U.S. payroll tax withholding details of the type collected using IRS Form W-4.  

The extensions below assume that the other Form W-4 data elements are mapped to corresponding components within the HR-XML IndicativeData schema. Depending on implementation requirements, the additional W-4 elements could be defined here. 

 In this example, the extensions are completely self-contained within the schema. Optionally, definitions could be imported and reused. For example, the udt:AmountType and udt:CodeType components.

-->
<IndicativeData xmlns="http://ns.hr-xml.org/2007-04-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ns.hr-xml.org/2007-04-15
 IndicativeData.xsd http://www.notarealcompany.com/ns/v1 w-4-ExtensionExample.xsd" xmlns:ext="http://www.notarealcompany.com/ns/v1">
	<Employer>
		<OrganizationId>
			<IdValue>12345</IdValue>
		</OrganizationId>
	</Employer>
	<Employee>
		<PersonInfo>
			<PersonLegalId>
				<IdValue name="SSN">555-11-1111</IdValue>
			</PersonLegalId>
			<PersonName>
				<GivenName>Jane</GivenName>
				<MiddleName>E</MiddleName>
				<FamilyName>Newhire</FamilyName>
			</PersonName>
			<DateOfBirth>1961-04-05</DateOfBirth>
			<GenderCode>2</GenderCode>
			<MaritalStatus>
				<StandardValue>Married</StandardValue>
			</MaritalStatus>
			<ContactInfo>
				<Location>home</Location>
				<WhenAvailable>evenings</WhenAvailable>
				<Telephone>
					<FormattedNumber>1 212 555 1212</FormattedNumber>
				</Telephone>
				<InternetEmailAddress>jane@home_domain.com</InternetEmailAddress>
				<PostalAddress>
					<CountryCode>US</CountryCode>
					<PostalCode>11217</PostalCode>
					<Region>NY</Region>
					<Municipality>Brooklyn</Municipality>
					<DeliveryAddress>
						<AddressLine>5003 Progress Street</AddressLine>
					</DeliveryAddress>
				</PostalAddress>
			</ContactInfo>
		</PersonInfo>
		<EmployeeInfo>
			<EmployeeId>
				<IdValue>1212-4321-99</IdValue>
			</EmployeeId>
			<ContactInfo>
                 <Use>business</Use>
				<WhenAvailable>day</WhenAvailable>
				<Telephone>
					<FormattedNumber>1 212 555 5555</FormattedNumber>
				</Telephone>
				<Mobile>
					<FormattedNumber>1 212 555 2424</FormattedNumber>
				</Mobile>
				<InternetEmailAddress>jnewhire@widgetGlobal.com</InternetEmailAddress>
				<PostalAddress>
					<CountryCode>US</CountryCode>
					<PostalCode>10021</PostalCode>
					<Region>NY</Region>
					<Municipality>New York</Municipality>
					<DeliveryAddress>
						<AddressLine>830 44th Street</AddressLine>
						<AddressLine>Suite 100</AddressLine>
					</DeliveryAddress>
				</PostalAddress>
			</ContactInfo>
			<RemunerationBasis>Hourly</RemunerationBasis>
			<FLSAStatus>non-exempt</FLSAStatus>
			<EmploymentLevel>PartTime</EmploymentLevel>
			<ResourceRelationship>Employee</ResourceRelationship>
			<LaborBargainingUnitStatus>NonMember</LaborBargainingUnitStatus>
		</EmployeeInfo>
		<EmploymentInfo>
			<IsEmployed>true</IsEmployed>
			<Employment>
				<HireInfo>
					<HireDate>2004-10-05</HireDate>
				</HireInfo>
			</Employment>
		</EmploymentInfo>
		<OrganizationInfo>
			<OrganizationalUnit>
				<OrganizationalUnitId idOwner="employer">
					<IdValue name="Store No">11111</IdValue>
				</OrganizationalUnitId>
			</OrganizationalUnit>
		</OrganizationInfo>
		<RemunerationInfo>
			<RemunerationDetail>
				<PayRate currencyCode="USD">8.50</PayRate>
				<PayRateFrequency>
					<StandardValue>Hourly</StandardValue>
				</PayRateFrequency>
				<RemunerationType>
					<StandardValue>BasePay</StandardValue>
				</RemunerationType>
			</RemunerationDetail>
		</RemunerationInfo>
		<UserArea>
			<ext:USWithholdingDetails>
				<ext:TotalAllowancesNumber>4</ext:TotalAllowancesNumber>
				<ext:AdditionalWithholdingAmount currencyID="US">15</ext:AdditionalWithholdingAmount>
				<ext:ExemptIndicator>false</ext:ExemptIndicator>
				<ext:SignatureDate>2008-01-24</ext:SignatureDate>
				<ext:OfficeCode schemeID="Store No">11111</ext:OfficeCode>
			</ext:USWithholdingDetails>
		</UserArea>
	</Employee>
</IndicativeData>

