In the code like follows ```ruby post_identifier = post['id'] post_user_identifier = post['userId'] ``` the `'id'` string is hard-coded for maintainability it is better to use structures with dot-notation: ```ruby post_identifier = post[Post.fields.id] ```
In the code like follows
the
'id'string is hard-codedfor maintainability it is better to use structures with dot-notation: