1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
market/src/models/Asset.ts

26 lines
529 B
TypeScript

import { MetadataMarket } from '../@types/MetaData'
const AssetModel: MetadataMarket = {
// OEP-8 Attributes
// https://github.com/oceanprotocol/OEPs/tree/master/8
main: {
type: 'dataset',
name: undefined,
dateCreated: undefined,
author: undefined,
license: undefined,
files: []
},
additionalInformation: {
description: undefined,
copyrightHolder: undefined,
tags: undefined,
links: undefined,
// custom items
termsAndConditions: false
}
}
export default AssetModel