<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="1.0"
xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
<edmx:DataServices m:DataServiceVersion="3.0" m:MaxDataServiceVersion="3.0"
xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<Schema Namespace="ODataDemo"
xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
<EntityType Name="tickers_spy">
<Key>
<PropertyRef Name="offset"/>
</Key>
<Property Name="offset" Type="Edm.Int64" Nullable="true"/>
<Property Name="op" Type="Edm.Int32" Nullable="false"/>
<Property Name="system_time" Type="Edm.DateTime" Nullable="false"/>
<Property Name="event_time" Type="Edm.DateTime" Nullable="true"/>
<Property Name="from_symbol" Type="Edm.String" Nullable="false" FixedLength="false" Unicode="true"/>
<Property Name="to_symbol" Type="Edm.String" Nullable="false" FixedLength="false" Unicode="true"/>
<Property Name="open" Type="Edm.Double" Nullable="true"/>
<Property Name="high" Type="Edm.Double" Nullable="true"/>
<Property Name="low" Type="Edm.Double" Nullable="true"/>
<Property Name="close" Type="Edm.Double" Nullable="true"/>
<Property Name="volume" Type="Edm.Double" Nullable="true"/>
</EntityType>
<EntityType Name="covid19_canada">
<Key>
<PropertyRef Name="offset"/>
</Key>
<Property Name="offset" Type="Edm.Int64" Nullable="false"/>
<Property Name="op" Type="Edm.Int32" Nullable="false"/>
<Property Name="system_time" Type="Edm.DateTime" Nullable="false"/>
<Property Name="reported_date" Type="Edm.DateTime" Nullable="false"/>
<Property Name="province" Type="Edm.String" Nullable="false" FixedLength="false" Unicode="true"/>
<Property Name="total_daily" Type="Edm.Int64" Nullable="false"/>
</EntityType>
<EntityContainer Name="DemoService" m:IsDefaultEntityContainer="true">
<EntitySet Name="tickers_spy" EntityType="ODataDemo.tickers_spy"/>
<EntitySet Name="covid19_canada" EntityType="ODataDemo.covid19_canada"/>
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>