TableSpecification¶
- pydantic model TableSpecification[source]¶
Specifies relevant values describing a generic tabular data object.
- field columns: List[str] [Required]¶
List of columns present in a table.
- field num_columns: int [Required]¶
The number of columns in a table.
- Constraints:
ge = 0
- field num_rows: int [Required]¶
The number of rows in a table..
- Constraints:
ge = 0
- field size: int [Required]¶
The total size of the table, i.e. rows x cols.
- Constraints:
ge = 0