mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
44 lines
901 B
TypeScript
44 lines
901 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,
|
|
size: null,
|
|
author: null,
|
|
type: '',
|
|
license: null,
|
|
copyrightHolder: null,
|
|
encoding: null,
|
|
compression: null,
|
|
contentType: null,
|
|
workExample: null,
|
|
contentUrls: [],
|
|
links: [
|
|
{
|
|
name: null,
|
|
type: null,
|
|
url: null
|
|
}
|
|
],
|
|
inLanguage: null,
|
|
tags: [],
|
|
price: null
|
|
},
|
|
curation: {
|
|
rating: null,
|
|
numVotes: null,
|
|
schema: null
|
|
},
|
|
additionalInformation: {
|
|
updateFrequency: null,
|
|
structuredMarkup: []
|
|
}
|
|
}
|
|
|
|
export default AssetModel
|