| Table: dbo.Recorded_Event_Object | |||
| Table that represents an object tracked by the recorded event system. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| recorded_event_object_KEY | int (4) | NOT NULL | Primary key |
| event_class_type_KEY | int (4) | NOT NULL | A foreign key to the Event_Class that this object represents. |
| id | nvarchar (150) | NOT NULL | The id of the thing that the object represents |
| description | nvarchar (360) | NOT NULL | The description of the thing that the object represents |
| recorded_event_object_guid | uniqueidentifier (16) | NOT NULL | A unique identifer for each record event object row. |
| Primary key | |||
| Name | Columns | Description | |
| PK_Recorded_Event_Object | recorded_event_object_KEY | ||
| Unique constraints | |||
| Name | Columns | Description | |
| UK_Recorded_Event_Object$recorded_event_object_guid | recorded_event_object_guid | ||
| Foreign keys | |||
| Name | Columns | Referenced table | Description |
| FK_Recorded_Event_Object__Event_Class_Type__event_class_type_KEY | event_class_type_KEY | Event_Class_Type (event_class_type_KEY) | |