<?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:DataServices>
    <Schema Namespace="OnboardService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
      <Annotation Term="Core.Links">
        <Collection>
          <Record>
            <PropertyValue Property="rel" String="author"/>
            <PropertyValue Property="href" String="https://cap.cloud.sap"/>
          </Record>
        </Collection>
      </Annotation>
      <EntityContainer Name="EntityContainer">
        <ActionImport Name="generateUser" Action="OnboardService.generateUser"/>
        <ActionImport Name="claimUser" Action="OnboardService.claimUser"/>
        <ActionImport Name="generatePin" Action="OnboardService.generatePin"/>
        <ActionImport Name="fetchCreds" Action="OnboardService.fetchCreds"/>
      </EntityContainer>
      <ComplexType Name="Creds">
        <Property Name="id" Type="Edm.Guid"/>
        <Property Name="pwd" Type="Edm.String"/>
        <Property Name="user" Type="Edm.String"/>
      </ComplexType>
      <Action Name="generateUser" IsBound="false">
        <ReturnType Type="OnboardService.Creds"/>
      </Action>
      <Action Name="claimUser" IsBound="false">
        <Parameter Name="id" Type="Edm.Guid"/>
        <Parameter Name="pwd" Type="Edm.String"/>
        <Parameter Name="name" Type="Edm.String"/>
        <ReturnType Type="Edm.String"/>
      </Action>
      <Action Name="generatePin" IsBound="false">
        <Parameter Name="id" Type="Edm.Guid"/>
        <Parameter Name="pwd" Type="Edm.String"/>
        <ReturnType Type="Edm.String"/>
      </Action>
      <Action Name="fetchCreds" IsBound="false">
        <Parameter Name="pin" Type="Edm.String"/>
        <Parameter Name="name" Type="Edm.String"/>
        <ReturnType Type="OnboardService.Creds"/>
      </Action>
    </Schema>
  </edmx:DataServices>
</edmx:Edmx>