<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
  <edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
    <edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1"/>
  </edmx:Reference>
  <edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
    <edmx:Include Alias="Core" Namespace="Org.OData.Core.V1"/>
  </edmx:Reference>
  <edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
    <edmx:Include Alias="UI" Namespace="com.sap.vocabularies.UI.v1"/>
  </edmx:Reference>
  <edmx:DataServices>
    <Schema Namespace="AdminService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
      <EntityContainer Name="EntityContainer">
        <EntitySet Name="Customers" EntityType="AdminService.Customers">
          <NavigationPropertyBinding Path="payors" Target="CustomerPayors"/>
          <NavigationPropertyBinding Path="checklistItems" Target="ChecklistItems"/>
          <NavigationPropertyBinding Path="billingSubmissions" Target="BillingSubmissions"/>
          <NavigationPropertyBinding Path="paymentInfo" Target="PaymentInfos"/>
          <NavigationPropertyBinding Path="agreementVersions" Target="AgreementVersions"/>
          <NavigationPropertyBinding Path="careLevelHistory" Target="CareLevelHistory"/>
          <NavigationPropertyBinding Path="billingRateHistory" Target="BillingRateHistory"/>
        </EntitySet>
        <EntitySet Name="Payors" EntityType="AdminService.Payors"/>
        <EntitySet Name="CustomerPayors" EntityType="AdminService.CustomerPayors">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
          <NavigationPropertyBinding Path="payor" Target="Payors"/>
        </EntitySet>
        <EntitySet Name="BillingSubmissions" EntityType="AdminService.BillingSubmissions">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
        </EntitySet>
        <EntitySet Name="WebhookSettings" EntityType="AdminService.WebhookSettings"/>
        <EntitySet Name="WebhookLogs" EntityType="AdminService.WebhookLogs"/>
        <EntitySet Name="SalesforceMockRecords" EntityType="AdminService.SalesforceMockRecords"/>
        <EntitySet Name="ChecklistItems" EntityType="AdminService.ChecklistItems">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
        </EntitySet>
        <EntitySet Name="PaymentInfos" EntityType="AdminService.PaymentInfos">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
        </EntitySet>
        <EntitySet Name="AgreementVersions" EntityType="AdminService.AgreementVersions">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
        </EntitySet>
        <EntitySet Name="CareLevelHistory" EntityType="AdminService.CareLevelHistory">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
        </EntitySet>
        <EntitySet Name="BillingRateHistory" EntityType="AdminService.BillingRateHistory">
          <NavigationPropertyBinding Path="customer" Target="Customers"/>
        </EntitySet>
        <ActionImport Name="importFromSalesforce" Action="AdminService.importFromSalesforce"/>
        <ActionImport Name="syncCustomersToS4" Action="AdminService.syncCustomersToS4"/>
        <ActionImport Name="syncPayorsToS4" Action="AdminService.syncPayorsToS4"/>
        <ActionImport Name="sendBilling" Action="AdminService.sendBilling"/>
        <ActionImport Name="resendBilling" Action="AdminService.resendBilling"/>
        <ActionImport Name="resetDatabase" Action="AdminService.resetDatabase"/>
      </EntityContainer>
      <EntityType Name="Customers">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
        <Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
        <Property Name="firstName" Type="Edm.String" MaxLength="255" Nullable="false"/>
        <Property Name="lastName" Type="Edm.String" MaxLength="255" Nullable="false"/>
        <Property Name="email" Type="Edm.String" MaxLength="255" Nullable="false"/>
        <Property Name="phoneNumber" Type="Edm.String" MaxLength="50"/>
        <Property Name="moveInDate" Type="Edm.Date"/>
        <Property Name="careLevel" Type="Edm.String" MaxLength="100"/>
        <Property Name="lifecycleState" Type="Edm.String" MaxLength="20" DefaultValue="pre-admission"/>
        <Property Name="s4SyncFlag" Type="Edm.Boolean" DefaultValue="false"/>
        <Property Name="salesforceMockId" Type="Edm.Guid"/>
        <NavigationProperty Name="payors" Type="Collection(AdminService.CustomerPayors)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
        <NavigationProperty Name="checklistItems" Type="Collection(AdminService.ChecklistItems)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
        <NavigationProperty Name="billingSubmissions" Type="Collection(AdminService.BillingSubmissions)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
        <NavigationProperty Name="paymentInfo" Type="Collection(AdminService.PaymentInfos)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
        <NavigationProperty Name="agreementVersions" Type="Collection(AdminService.AgreementVersions)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
        <NavigationProperty Name="careLevelHistory" Type="Collection(AdminService.CareLevelHistory)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
        <NavigationProperty Name="billingRateHistory" Type="Collection(AdminService.BillingRateHistory)" Partner="customer">
          <OnDelete Action="Cascade"/>
        </NavigationProperty>
      </EntityType>
      <EntityType Name="Payors">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
        <Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
        <Property Name="name" Type="Edm.String" MaxLength="255" Nullable="false"/>
        <Property Name="type" Type="Edm.String" MaxLength="20" Nullable="false"/>
        <Property Name="contactInfo" Type="Edm.String" MaxLength="500"/>
        <Property Name="s4SyncFlag" Type="Edm.Boolean" DefaultValue="false"/>
      </EntityType>
      <EntityType Name="CustomerPayors">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
        <Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Nullable="false" Partner="payors">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid" Nullable="false"/>
        <NavigationProperty Name="payor" Type="AdminService.Payors" Nullable="false">
          <ReferentialConstraint Property="payor_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="payor_ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="splitPercentage" Type="Edm.Decimal" Precision="5" Scale="2" Nullable="false"/>
      </EntityType>
      <EntityType Name="BillingSubmissions">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Partner="billingSubmissions">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid"/>
        <Property Name="billingMonth" Type="Edm.String"/>
        <Property Name="dateSent" Type="Edm.DateTimeOffset"/>
        <Property Name="status" Type="Edm.String" MaxLength="20"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="WebhookSettings">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Int32" Nullable="false" DefaultValue="1"/>
        <Property Name="webhookUrl" Type="Edm.String"/>
        <Property Name="basicAuthUsername" Type="Edm.String"/>
        <Property Name="basicAuthPassword" Type="Edm.String"/>
        <Property Name="updatedAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="WebhookLogs">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="url" Type="Edm.String"/>
        <Property Name="operation" Type="Edm.String"/>
        <Property Name="requestBody" Type="Edm.String"/>
        <Property Name="responseStatus" Type="Edm.Int32"/>
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="errorMessage" Type="Edm.String" MaxLength="2000"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="SalesforceMockRecords">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="firstName" Type="Edm.String" MaxLength="255"/>
        <Property Name="lastName" Type="Edm.String" MaxLength="255"/>
        <Property Name="email" Type="Edm.String" MaxLength="255"/>
        <Property Name="phoneNumber" Type="Edm.String" MaxLength="50"/>
        <Property Name="moveInDate" Type="Edm.Date"/>
        <Property Name="careLevel" Type="Edm.String" MaxLength="100"/>
        <Property Name="lifecycleState" Type="Edm.String" MaxLength="20"/>
        <Property Name="imported" Type="Edm.Boolean" DefaultValue="false"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="ChecklistItems">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Partner="checklistItems">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid"/>
        <Property Name="itemKey" Type="Edm.String" MaxLength="100"/>
        <Property Name="label" Type="Edm.String" MaxLength="200"/>
        <Property Name="completed" Type="Edm.Boolean" DefaultValue="false"/>
        <Property Name="data" Type="Edm.String"/>
        <Property Name="completedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="updatedAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="PaymentInfos">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="createdBy" Type="Edm.String" MaxLength="255"/>
        <Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="modifiedBy" Type="Edm.String" MaxLength="255"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Partner="paymentInfo">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid"/>
        <Property Name="accountHolderName" Type="Edm.String" MaxLength="100" Nullable="false"/>
        <Property Name="routingNumberEncrypted" Type="Edm.String" MaxLength="500"/>
        <Property Name="accountNumberEncrypted" Type="Edm.String" MaxLength="500"/>
        <Property Name="accountNumberLast4" Type="Edm.String" MaxLength="4"/>
        <Property Name="accountType" Type="Edm.String" MaxLength="10"/>
      </EntityType>
      <EntityType Name="AgreementVersions">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Partner="agreementVersions">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid"/>
        <Property Name="versionNumber" Type="Edm.Int32"/>
        <Property Name="agreementData" Type="Edm.String"/>
        <Property Name="effectiveDate" Type="Edm.Date"/>
        <Property Name="changedBy" Type="Edm.Guid"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="CareLevelHistory">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Partner="careLevelHistory">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid"/>
        <Property Name="previousCareLevel" Type="Edm.String" MaxLength="100"/>
        <Property Name="newCareLevel" Type="Edm.String" MaxLength="100"/>
        <Property Name="effectiveDate" Type="Edm.Date"/>
        <Property Name="changedBy" Type="Edm.Guid"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <EntityType Name="BillingRateHistory">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <NavigationProperty Name="customer" Type="AdminService.Customers" Partner="billingRateHistory">
          <ReferentialConstraint Property="customer_ID" ReferencedProperty="ID"/>
        </NavigationProperty>
        <Property Name="customer_ID" Type="Edm.Guid"/>
        <Property Name="previousRate" Type="Edm.Decimal" Precision="10" Scale="2"/>
        <Property Name="newRate" Type="Edm.Decimal" Precision="10" Scale="2"/>
        <Property Name="effectiveDate" Type="Edm.Date"/>
        <Property Name="changedBy" Type="Edm.Guid"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <Action Name="importFromSalesforce" IsBound="false">
        <Parameter Name="ids" Type="Collection(Edm.Guid)" Nullable="false"/>
      </Action>
      <Action Name="syncCustomersToS4" IsBound="false"/>
      <Action Name="syncPayorsToS4" IsBound="false"/>
      <Action Name="sendBilling" IsBound="false">
        <Parameter Name="customerId" Type="Edm.Guid"/>
        <Parameter Name="billingMonth" Type="Edm.String"/>
      </Action>
      <Action Name="resendBilling" IsBound="false">
        <Parameter Name="submissionId" Type="Edm.Guid"/>
      </Action>
      <Action Name="resetDatabase" IsBound="false"/>
      <Annotations Target="AdminService.Customers/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.Customers/createdAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Created On"/>
      </Annotations>
      <Annotations Target="AdminService.Customers/createdBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Created By"/>
      </Annotations>
      <Annotations Target="AdminService.Customers/modifiedAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Changed On"/>
      </Annotations>
      <Annotations Target="AdminService.Customers/modifiedBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Changed By"/>
      </Annotations>
      <Annotations Target="AdminService.Payors/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.Payors/createdAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Created On"/>
      </Annotations>
      <Annotations Target="AdminService.Payors/createdBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Created By"/>
      </Annotations>
      <Annotations Target="AdminService.Payors/modifiedAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Changed On"/>
      </Annotations>
      <Annotations Target="AdminService.Payors/modifiedBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Changed By"/>
      </Annotations>
      <Annotations Target="AdminService.CustomerPayors/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.CustomerPayors/createdAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Created On"/>
      </Annotations>
      <Annotations Target="AdminService.CustomerPayors/createdBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Created By"/>
      </Annotations>
      <Annotations Target="AdminService.CustomerPayors/modifiedAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Changed On"/>
      </Annotations>
      <Annotations Target="AdminService.CustomerPayors/modifiedBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Changed By"/>
      </Annotations>
      <Annotations Target="AdminService.BillingSubmissions/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.BillingSubmissions/createdAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.WebhookSettings/updatedAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.WebhookLogs/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.WebhookLogs/createdAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.SalesforceMockRecords/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.SalesforceMockRecords/createdAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.ChecklistItems/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.ChecklistItems/updatedAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.PaymentInfos/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.PaymentInfos/createdAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Created On"/>
      </Annotations>
      <Annotations Target="AdminService.PaymentInfos/createdBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Immutable" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Created By"/>
      </Annotations>
      <Annotations Target="AdminService.PaymentInfos/modifiedAt">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Common.Label" String="Changed On"/>
      </Annotations>
      <Annotations Target="AdminService.PaymentInfos/modifiedBy">
        <Annotation Term="UI.HiddenFilter" Bool="true"/>
        <Annotation Term="Core.Computed" Bool="true"/>
        <Annotation Term="Core.Description" String="User's unique ID"/>
        <Annotation Term="Common.Label" String="Changed By"/>
      </Annotations>
      <Annotations Target="AdminService.AgreementVersions/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.AgreementVersions/createdAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.CareLevelHistory/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.CareLevelHistory/createdAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.BillingRateHistory/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="AdminService.BillingRateHistory/createdAt">
        <Annotation Term="Core.Computed" Bool="true"/>
      </Annotations>
    </Schema>
  </edmx:DataServices>
</edmx:Edmx>