35 lines
759 B
JSON
35 lines
759 B
JSON
{
|
|
"name": "ImageCollectionSize",
|
|
"base": "PersistedModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "hedera.imageCollectionSize"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"width": {
|
|
"type": "Number",
|
|
"required": true
|
|
},
|
|
"height": {
|
|
"type": "Number",
|
|
"required": true
|
|
},
|
|
"crop": {
|
|
"type": "Boolean",
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"collection": {
|
|
"type": "belongsTo",
|
|
"model": "ImageCollection",
|
|
"foreignKey": "collectionFk"
|
|
}
|
|
}
|
|
} |