mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
35 lines
702 B
TypeScript
35 lines
702 B
TypeScript
const AssetModel = {
|
|
assetId: null,
|
|
publisherId: null,
|
|
|
|
// OEP-08 Attributes
|
|
// https://github.com/oceanprotocol/OEPs/tree/master/8
|
|
base: {
|
|
name: null,
|
|
description: null,
|
|
dateCreated: null,
|
|
author: null,
|
|
type: '',
|
|
license: null,
|
|
copyrightHolder: null,
|
|
workExample: null,
|
|
files: [],
|
|
categories: [],
|
|
links: [],
|
|
inLanguage: null,
|
|
tags: [],
|
|
price: null
|
|
},
|
|
curation: {
|
|
rating: null,
|
|
numVotes: null,
|
|
schema: null
|
|
},
|
|
additionalInformation: {
|
|
updateFrequency: null,
|
|
structuredMarkup: []
|
|
}
|
|
}
|
|
|
|
export default AssetModel
|