@tradle/models
Version:
models for tradle apps
47 lines (46 loc) • 814 B
JSON
{
"id": "tradle.SelfIntroduction",
"title": "Self introduction",
"type": "tradle.Model",
"properties": {
"identity": {
"type": "object",
"ref": "tradle.Identity",
"inlined": true
},
"target": {
"type": "object",
"ref": "tradle.Identity",
"description": "who are you introducing yourself to?",
"inlined": true
},
"name": {
"type": "string"
},
"message": {
"type": "string"
}
},
"viewCols": [
"message",
"identity",
"target"
],
"required": [
"identity"
],
"indexes": [
{
"hashKey": "_author",
"rangeKey": "_time"
},
{
"hashKey": "_t",
"rangeKey": "_time"
},
{
"hashKey": "identity._permalink",
"rangeKey": "target._permalink"
}
]
}