Section: Revising the Schema,
- You can add a new value to the domain of a particular feature:
tfdv.get_feature(schema, 'feature_column_name').value.append('string')```
I think this should be
tfdv.get_domain(schema, 'feature_column_name').value.append('string')
as feature won’t have value attribute associated.