`Val_Elem554` exists in the database schema ([SQL DDL](https://github.com/opencdms/opencdms-test-data/blob/main/schemas/climsoft/v4/v4.1.1/climsoft_v4_empty_db_only.sql#L2674 )): ``` CREATE TABLE IF NOT EXISTS `form_agro1` ( `Val_Elem554` varchar(6) DEFAULT NULL, ... ``` and in the [SQLAlchemy model](https://github.com/opencdms/pyopencdms/blob/main/opencdms/models/climsoft/v4_1_1_core.py#L464): ``` class FormAgro1(Base): Val_Elem554 = Column(String(6)) ... ``` Plus it's implemented in the [API field mappings](https://github.com/openclimateinitiative/climsoft-api/blob/main/src/climsoft_api/api/form_agro1/schema.py#L20): ``` field_mapping = { "Val_Elem554": "val_elem554", ... ``` But it's missing from `ClassFromAgro1()` in the API's representation of the schema (and is also missing in the response): https://github.com/openclimateinitiative/climsoft-api/blob/main/src/climsoft_api/api/form_agro1/schema.py#L82