What is the word for a single key-value pair of a dictionary in Swift?

What is one key-value pair of a dictionary called? Or what is the best word for it to call a variable? "Pair" seems to be the simplest and most intuitive. Is there a better name for a variable for such? I'm wondering if there is a technical term defined for swift.

Dictionary is a collection whose elements are key-value pairs. And the declaration of a Collection is protocol Collection<Element> : Sequence

So the answer is in the definition: an element.

What is the word for a single key-value pair of a dictionary in Swift?
 
 
Q