Pinned properties is a way to make specific property be sent with the same constant value all the time.
Use pinned properties to assign constant value to a property. When the value of a property is pinned it will always be sent as the pinned value.
If using Avo Codegen with pinned properties, developers won't be required to pass in value for the property when the event is being sent, the value will be hardcoded in the generated code.
You can pin event and user properties on the event level, i.e. set a particular property to always have the same value every time it's sent with a particular event.
To pin a value for a property on a specific event :
One of the main use cases for pinned properties is to hardcode metadata for events. For example when using a Snowplow destination you are required to attach a schema id to every event. This can be done with pinned properties in Avo.
Another use case is to have properties with fixed values on some events and not fixed on other.
Example: You want to include the "Page Section" property on some events in your app. Some events can be triggered from multiple page sections, and can therefor not be pinned. However there can be events where the "Page Section" should always be the same. As an example, let's say we have the event "Footer Item Clicked". For that event we would always want "Page Section" to be sent as "Footer". We can define that in Avo by using pinned properties.