MyApp

<back to all web services

CreateJobApplication

Talent
# frozen_string_literal: true
# encoding: utf-8


require 'json'
require 'servicestack'


module EmploymentType
    FULL_TIME = 'FullTime'
    PART_TIME = 'PartTime'
    CASUAL = 'Casual'
    CONTRACT = 'Contract'
end

module JobApplicationStatus
    APPLIED = 'Applied'
    PHONE_SCREENING = 'PhoneScreening'
    PHONE_SCREENING_COMPLETED = 'PhoneScreeningCompleted'
    INTERVIEW = 'Interview'
    INTERVIEW_COMPLETED = 'InterviewCompleted'
    OFFER = 'Offer'
    DISQUALIFIED = 'Disqualified'
end

class Job < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @return [String]
    attr_accessor :title
    # @return [EmploymentType]
    attr_accessor :employment_type
    # @return [String]
    attr_accessor :company
    # @return [String]
    attr_accessor :location
    # @return [Integer]
    attr_accessor :salary_range_lower
    # @return [Integer]
    attr_accessor :salary_range_upper
    # @return [String]
    attr_accessor :description
    # @return [List]
    attr_accessor :applications
    # @return [DateTime]
    attr_accessor :closing

    def self.properties
        {
            id: { name: 'id' },
            title: { name: 'title' },
            employment_type: { name: 'employmentType' },
            company: { name: 'company' },
            location: { name: 'location' },
            salary_range_lower: { name: 'salaryRangeLower' },
            salary_range_upper: { name: 'salaryRangeUpper' },
            description: { name: 'description' },
            applications: { name: 'applications', type: [JobApplication] },
            closing: { name: 'closing', type: DateTime },
        }
    end

end

class Contact
    include ServiceStack::DTO

    # @return [Integer]
    attr_accessor :id
    # @Computed
    # @return [String]
    attr_accessor :display_name

    # @return [String]
    attr_accessor :profile_url
    # @return [String]
    attr_accessor :first_name
    # @return [String]
    attr_accessor :last_name
    # @return [Integer]
    attr_accessor :salary_expectation
    # @return [String]
    attr_accessor :job_type
    # @return [Integer]
    attr_accessor :availability_weeks
    # @return [EmploymentType]
    attr_accessor :preferred_work_type
    # @return [String]
    attr_accessor :preferred_location
    # @return [String]
    attr_accessor :email
    # @return [String]
    attr_accessor :phone
    # @return [List]
    attr_accessor :skills
    # @return [String]
    attr_accessor :about
    # @return [List]
    attr_accessor :applications

    def self.properties
        {
            id: { name: 'id' },
            display_name: { name: 'displayName' },
            profile_url: { name: 'profileUrl' },
            first_name: { name: 'firstName' },
            last_name: { name: 'lastName' },
            salary_expectation: { name: 'salaryExpectation' },
            job_type: { name: 'jobType' },
            availability_weeks: { name: 'availabilityWeeks' },
            preferred_work_type: { name: 'preferredWorkType' },
            preferred_location: { name: 'preferredLocation' },
            email: { name: 'email' },
            phone: { name: 'phone' },
            skills: { name: 'skills' },
            about: { name: 'about' },
            applications: { name: 'applications', type: [JobApplication] },
        }
    end

end

class AppUser
    include ServiceStack::DTO

    # @return [String]
    attr_accessor :id
    # @return [String]
    attr_accessor :first_name
    # @return [String]
    attr_accessor :last_name
    # @return [String]
    attr_accessor :display_name
    # @return [String]
    attr_accessor :profile_url

    def self.properties
        {
            id: { name: 'id' },
            first_name: { name: 'firstName' },
            last_name: { name: 'lastName' },
            display_name: { name: 'displayName' },
            profile_url: { name: 'profileUrl' },
        }
    end

end

class JobApplicationComment < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @References('AppUser')
    # @return [String]
    attr_accessor :app_user_id

    # @return [AppUser]
    attr_accessor :app_user
    # @References('JobApplication')
    # @return [Integer]
    attr_accessor :job_application_id

    # @return [String]
    attr_accessor :comment

    def self.properties
        {
            id: { name: 'id' },
            app_user_id: { name: 'appUserId' },
            app_user: { name: 'appUser', type: AppUser },
            job_application_id: { name: 'jobApplicationId' },
            comment: { name: 'comment' },
        }
    end

end

class JobApplicationAttachment
    include ServiceStack::DTO

    # @return [Integer]
    attr_accessor :id
    # @References('JobApplication')
    # @return [Integer]
    attr_accessor :job_application_id

    # @return [String]
    attr_accessor :file_name
    # @return [String]
    attr_accessor :file_path
    # @return [String]
    attr_accessor :content_type
    # @return [Integer]
    attr_accessor :content_length

    def self.properties
        {
            id: { name: 'id' },
            job_application_id: { name: 'jobApplicationId' },
            file_name: { name: 'fileName' },
            file_path: { name: 'filePath' },
            content_type: { name: 'contentType' },
            content_length: { name: 'contentLength' },
        }
    end

end

class JobApplicationEvent < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @References('JobApplication')
    # @return [Integer]
    attr_accessor :job_application_id

    # @References('AppUser')
    # @return [String]
    attr_accessor :app_user_id

    # @return [AppUser]
    attr_accessor :app_user
    # @return [String]
    attr_accessor :description
    # @return [JobApplicationStatus]
    attr_accessor :status
    # @return [DateTime]
    attr_accessor :event_date

    def self.properties
        {
            id: { name: 'id' },
            job_application_id: { name: 'jobApplicationId' },
            app_user_id: { name: 'appUserId' },
            app_user: { name: 'appUser', type: AppUser },
            description: { name: 'description' },
            status: { name: 'status' },
            event_date: { name: 'eventDate', type: DateTime },
        }
    end

end

class PhoneScreen < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @References('AppUser')
    # @return [String]
    attr_accessor :app_user_id

    # @return [AppUser]
    attr_accessor :app_user
    # @References('JobApplication')
    # @return [Integer]
    attr_accessor :job_application_id

    # @return [JobApplicationStatus]
    attr_accessor :application_status
    # @return [String]
    attr_accessor :notes

    def self.properties
        {
            id: { name: 'id' },
            app_user_id: { name: 'appUserId' },
            app_user: { name: 'appUser', type: AppUser },
            job_application_id: { name: 'jobApplicationId' },
            application_status: { name: 'applicationStatus' },
            notes: { name: 'notes' },
        }
    end

end

class Interview < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @return [DateTime]
    attr_accessor :booking_time
    # @References('JobApplication')
    # @return [Integer]
    attr_accessor :job_application_id

    # @References('AppUser')
    # @return [String]
    attr_accessor :app_user_id

    # @return [AppUser]
    attr_accessor :app_user
    # @return [JobApplicationStatus]
    attr_accessor :application_status
    # @return [String]
    attr_accessor :notes

    def self.properties
        {
            id: { name: 'id' },
            booking_time: { name: 'bookingTime', type: DateTime },
            job_application_id: { name: 'jobApplicationId' },
            app_user_id: { name: 'appUserId' },
            app_user: { name: 'appUser', type: AppUser },
            application_status: { name: 'applicationStatus' },
            notes: { name: 'notes' },
        }
    end

end

class JobOffer < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @return [Integer]
    attr_accessor :salary_offer
    # @return [String]
    attr_accessor :currency
    # @References('JobApplication')
    # @return [Integer]
    attr_accessor :job_application_id

    # @References('AppUser')
    # @return [String]
    attr_accessor :app_user_id

    # @return [AppUser]
    attr_accessor :app_user
    # @return [String]
    attr_accessor :notes

    def self.properties
        {
            id: { name: 'id' },
            salary_offer: { name: 'salaryOffer' },
            currency: { name: 'currency' },
            job_application_id: { name: 'jobApplicationId' },
            app_user_id: { name: 'appUserId' },
            app_user: { name: 'appUser', type: AppUser },
            notes: { name: 'notes' },
        }
    end

end

class JobApplication
    include ServiceStack::DTO

    # @return [Integer]
    attr_accessor :id
    # @References('Job')
    # @return [Integer]
    attr_accessor :job_id

    # @References('Contact')
    # @return [Integer]
    attr_accessor :contact_id

    # @return [Job]
    attr_accessor :position
    # @return [Contact]
    attr_accessor :applicant
    # @return [List]
    attr_accessor :comments
    # @return [DateTime]
    attr_accessor :applied_date
    # @return [JobApplicationStatus]
    attr_accessor :application_status
    # @return [List]
    attr_accessor :attachments
    # @return [List]
    attr_accessor :events
    # @return [PhoneScreen]
    attr_accessor :phone_screen
    # @return [Interview]
    attr_accessor :interview
    # @return [JobOffer]
    attr_accessor :job_offer

    def self.properties
        {
            id: { name: 'id' },
            job_id: { name: 'jobId' },
            contact_id: { name: 'contactId' },
            position: { name: 'position', type: Job },
            applicant: { name: 'applicant', type: Contact },
            comments: { name: 'comments', type: [JobApplicationComment] },
            applied_date: { name: 'appliedDate', type: DateTime },
            application_status: { name: 'applicationStatus' },
            attachments: { name: 'attachments', type: [JobApplicationAttachment] },
            events: { name: 'events', type: [JobApplicationEvent] },
            phone_screen: { name: 'phoneScreen', type: PhoneScreen },
            interview: { name: 'interview', type: Interview },
            job_offer: { name: 'jobOffer', type: JobOffer },
        }
    end

end

class CreateJobApplication
    include ServiceStack::DTO

    # @Validate(Validator: "GreaterThan(0)")
    # @return [Integer]
    attr_accessor :job_id

    # @Validate(Validator: "GreaterThan(0)")
    # @return [Integer]
    attr_accessor :contact_id

    # @return [DateTime]
    attr_accessor :applied_date
    # @return [JobApplicationStatus]
    attr_accessor :application_status
    # @return [List]
    attr_accessor :attachments

    def self.properties
        {
            job_id: { name: 'jobId' },
            contact_id: { name: 'contactId' },
            applied_date: { name: 'appliedDate', type: DateTime },
            application_status: { name: 'applicationStatus' },
            attachments: { name: 'attachments', type: [JobApplicationAttachment] },
        }
    end

    def response_type() = JobApplication
    def get_type_name() = 'CreateJobApplication'
end

Ruby CreateJobApplication DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/CreateJobApplication HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CreateJobApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <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>
  <ContactId>0</ContactId>
  <JobId>0</JobId>
</CreateJobApplication>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<JobApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <Applicant>
    <About>String</About>
    <Applications>
      <JobApplication>
        <Applicant>
          <About>String</About>
          <Applications>
            <JobApplication>
              <Applicant>
                <About>String</About>
                <Applications>
                  <JobApplication>
                    <Applicant i:nil="true" />
                    <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:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1: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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1: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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1: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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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>
    <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:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>String</d3p1: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>
                  <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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1: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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1: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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1: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:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1: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 i:nil="true" />
                  </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>
  </Position>
</JobApplication>