The ptype command prints the data type or structure of a variable.
ptype variable-name
(fgldb) ptype cust_rec type = RECORD cust_num INTEGER, cust_name VARCHAR(10), cust_address VARCHAR(200) END RECORD