Footprints Data Model |
Table |
Table Name | Calendar Stamp |
Table Definition | Calendar Item has a set of Calendar Stamp objects. A Calendar stamp can be associated to a single Calendar Item . A stamp associates a related set of properties/attributes/methods to an Calendar Item. This is different from Calendar Attribute , which generally represents a single value. For example Event Stamp , contains properties and apis relating to an event and MessageStamp contains properties related to an email message. The stamp model allows items to be stamped and unstamped with these related sets of properties throughout its life-cycle. |
Attribute |
Attribute Name | Attribute Definition | Logical Datatype | Is Required |
Calendar Stamp Id | The automatically generated primary key of the cal_stamp table. | LONG | Yes |
stamp type | stamp type. | VARCHAR(16) | Yes |
create date | create date, stored as a long integer to avoid using date time classes that do not handle timezone well. | LONG | No |
etag | etag. | VARCHAR(255) | No |
modify date | modify date, stored as a long integer to avoid using date time classes that do not handle timezone well. | LONG | No |
Calendar Item Id | A Foreign Key to the Calendar Item table. | LONG | Yes |