| Field Name | Data Type | Size | Original Type | Default | Nullable | Description | Check |
| DocumentID | int identity | | int | | Not null | Primary key for Document records. | |
| Title | nvarchar | 50 | | | Not null | Title of the document. | |
| FileName | nvarchar | 400 | | | Not null | Directory path and file name of the document | |
| FileExtension | nvarchar | 8 | | | Not null | File extension indicating the document type. For example, .doc or .txt. | |
| Revision | nchar | 5 | | | Not null | Revision number of the document. | |
| ChangeNumber | int | | | (0) | Not null | Engineering change approval number. | |
| Status | tinyint | | | | Not null | 1 = Pending approval, 2 = Approved, 3 = Obsolete | ([Status]>=(1) AND [Status]<=(3)) |
| DocumentSummary | nvarchar | max | | | Null | Document abstract. | |
| Document | varbinary | | | | Null | Complete document. | |
| ModifiedDate | datetime | | | getdate() | Not null | Date and time the record was last updated. | |
The object has no extended properties.