// @DataContract
export class AuditBase
{
// @DataMember(Order=1)
public createdDate: string;
// @DataMember(Order=2)
// @Required()
public createdBy: string;
// @DataMember(Order=3)
public modifiedDate: string;
// @DataMember(Order=4)
// @Required()
public modifiedBy: string;
// @DataMember(Order=5)
public deletedDate?: string;
// @DataMember(Order=6)
public deletedBy: string;
public constructor(init?: Partial<AuditBase>) { (Object as any).assign(this, init); }
}
export enum EmploymentType
{
FullTime = 'FullTime',
PartTime = 'PartTime',
Casual = 'Casual',
Contract = 'Contract',
}
export class Contact
{
public id: number;
// @Computed()
public displayName: string;
public profileUrl: string;
public firstName: string;
public lastName: string;
public salaryExpectation?: number;
public jobType: string;
public availabilityWeeks: number;
public preferredWorkType: EmploymentType;
public preferredLocation: string;
public email: string;
public phone: string;
public skills?: string[];
public about: string;
public applications: JobApplication[] = [];
public constructor(init?: Partial<Contact>) { (Object as any).assign(this, init); }
}
export class AppUser
{
public id: string;
public firstName?: string;
public lastName?: string;
public displayName?: string;
public profileUrl?: string;
public constructor(init?: Partial<AppUser>) { (Object as any).assign(this, init); }
}
export class JobApplicationComment extends AuditBase
{
public id: number;
// @References("typeof(MyApp.ServiceModel.AppUser)")
public appUserId: string;
public appUser: AppUser;
// @References("typeof(MyApp.ServiceModel.JobApplication)")
public jobApplicationId: number;
public comment: string;
public constructor(init?: Partial<JobApplicationComment>) { super(init); (Object as any).assign(this, init); }
}
export enum JobApplicationStatus
{
Applied = 'Applied',
PhoneScreening = 'PhoneScreening',
PhoneScreeningCompleted = 'PhoneScreeningCompleted',
Interview = 'Interview',
InterviewCompleted = 'InterviewCompleted',
Offer = 'Offer',
Disqualified = 'Disqualified',
}
export class JobApplicationAttachment
{
public id: number;
// @References("typeof(MyApp.ServiceModel.JobApplication)")
public jobApplicationId: number;
public fileName: string;
public filePath: string;
public contentType: string;
public contentLength: number;
public constructor(init?: Partial<JobApplicationAttachment>) { (Object as any).assign(this, init); }
}
export class JobApplicationEvent extends AuditBase
{
public id: number;
// @References("typeof(MyApp.ServiceModel.JobApplication)")
public jobApplicationId: number;
// @References("typeof(MyApp.ServiceModel.AppUser)")
public appUserId: string;
public appUser: AppUser;
public description: string;
public status?: JobApplicationStatus;
public eventDate: string;
public constructor(init?: Partial<JobApplicationEvent>) { super(init); (Object as any).assign(this, init); }
}
export class PhoneScreen extends AuditBase
{
public id: number;
// @References("typeof(MyApp.ServiceModel.AppUser)")
public appUserId: string;
public appUser: AppUser;
// @References("typeof(MyApp.ServiceModel.JobApplication)")
public jobApplicationId: number;
public applicationStatus?: JobApplicationStatus;
public notes: string;
public constructor(init?: Partial<PhoneScreen>) { super(init); (Object as any).assign(this, init); }
}
export class Interview extends AuditBase
{
public id: number;
public bookingTime: string;
// @References("typeof(MyApp.ServiceModel.JobApplication)")
public jobApplicationId: number;
// @References("typeof(MyApp.ServiceModel.AppUser)")
public appUserId: string;
public appUser: AppUser;
public applicationStatus?: JobApplicationStatus;
public notes: string;
public constructor(init?: Partial<Interview>) { super(init); (Object as any).assign(this, init); }
}
export class JobOffer extends AuditBase
{
public id: number;
public salaryOffer: number;
public currency: string;
// @References("typeof(MyApp.ServiceModel.JobApplication)")
public jobApplicationId: number;
// @References("typeof(MyApp.ServiceModel.AppUser)")
public appUserId: string;
public appUser: AppUser;
public notes: string;
public constructor(init?: Partial<JobOffer>) { super(init); (Object as any).assign(this, init); }
}
export class JobApplication
{
public id: number;
// @References("typeof(MyApp.ServiceModel.Job)")
public jobId: number;
// @References("typeof(MyApp.ServiceModel.Contact)")
public contactId: number;
public position: Job;
public applicant: Contact;
public comments: JobApplicationComment[] = [];
public appliedDate: string;
public applicationStatus: JobApplicationStatus;
public attachments: JobApplicationAttachment[] = [];
public events: JobApplicationEvent[] = [];
public phoneScreen: PhoneScreen;
public interview: Interview;
public jobOffer: JobOffer;
public constructor(init?: Partial<JobApplication>) { (Object as any).assign(this, init); }
}
export class Job extends AuditBase
{
public id: number;
public title: string;
public employmentType: EmploymentType;
public company: string;
public location: string;
public salaryRangeLower: number;
public salaryRangeUpper: number;
public description: string;
public applications: JobApplication[] = [];
public closing: string;
public constructor(init?: Partial<Job>) { super(init); (Object as any).assign(this, init); }
}
// @ValidateRequest(Validator="IsAuthenticated")
export class CreateJob implements ICreateDb<Job>
{
public title: string;
// @Validate(Validator="GreaterThan(0)")
public salaryRangeLower: number;
// @Validate(Validator="GreaterThan(0)")
public salaryRangeUpper: number;
public description: string;
public employmentType: EmploymentType;
public company: string;
public location: string;
public closing: string;
public constructor(init?: Partial<CreateJob>) { (Object as any).assign(this, init); }
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/CreateJob HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</CreateJob>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <Job xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel"> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications i:nil="true" /> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d11p1:string>String</d11p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications i:nil="true" /> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d8p1:string>String</d8p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications i:nil="true" /> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d11p1:string>String</d11p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications i:nil="true" /> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:string>String</d5p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications i:nil="true" /> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d11p1:string>String</d11p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications i:nil="true" /> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d8p1:string>String</d8p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications> <JobApplication> <Applicant> <About>String</About> <Applications i:nil="true" /> <AvailabilityWeeks>0</AvailabilityWeeks> <Email>String</Email> <FirstName>String</FirstName> <Id>0</Id> <JobType>String</JobType> <LastName>String</LastName> <Phone>String</Phone> <PreferredLocation>String</PreferredLocation> <PreferredWorkType>FullTime</PreferredWorkType> <ProfileUrl>String</ProfileUrl> <SalaryExpectation>0</SalaryExpectation> <Skills xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d11p1:string>String</d11p1:string> </Skills> </Applicant> <ApplicationStatus>Applied</ApplicationStatus> <AppliedDate>0001-01-01T00:00:00</AppliedDate> <Attachments> <JobApplicationAttachment> <ContentLength>0</ContentLength> <ContentType>String</ContentType> <FileName>String</FileName> <FilePath>String</FilePath> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationAttachment> </Attachments> <Comments> <JobApplicationComment> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Comment>String</Comment> <Id>0</Id> <JobApplicationId>0</JobApplicationId> </JobApplicationComment> </Comments> <ContactId>0</ContactId> <Events> <JobApplicationEvent> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Description>String</Description> <EventDate>0001-01-01T00:00:00</EventDate> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Status>Applied</Status> </JobApplicationEvent> </Events> <Id>0</Id> <Interview> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <BookingTime>0001-01-01T00:00:00</BookingTime> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </Interview> <JobId>0</JobId> <JobOffer> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <Currency>String</Currency> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> <SalaryOffer>0</SalaryOffer> </JobOffer> <PhoneScreen> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <AppUser> <DisplayName>String</DisplayName> <FirstName>String</FirstName> <Id>String</Id> <LastName>String</LastName> <ProfileUrl>String</ProfileUrl> </AppUser> <AppUserId>String</AppUserId> <ApplicationStatus>Applied</ApplicationStatus> <Id>0</Id> <JobApplicationId>0</JobApplicationId> <Notes>String</Notes> </PhoneScreen> <Position> <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate> <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy> <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate> <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy> <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate> <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy> <Applications i:nil="true" /> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Position> </JobApplication> </Applications> <Closing>0001-01-01T00:00:00</Closing> <Company>String</Company> <Description>String</Description> <EmploymentType>FullTime</EmploymentType> <Id>0</Id> <Location>String</Location> <SalaryRangeLower>0</SalaryRangeLower> <SalaryRangeUpper>0</SalaryRangeUpper> <Title>String</Title> </Job>