OData(V4) Metadata Utilities
npm install @odata/metadata


This library implements the EDM and EDMX classes from the OData CSDL V4.
- Edm and Edmx classes
- will provide Validation logic - based on specs (-on the way)
- will Download and parse metadata from $metadata document or uri endpoint
```
$ npm install -S @odata/metadata
then just
`js
import { Edm } from '@odata/metadata'
let entityType = new edm.EntityType({
name: "Orders",
property: [{ name:"OrderID", type: Edm.Integer }]
})
entityType.properties.push(new Edm.Property(...))
``