1 // Package ldattr defines the model for context attribute references used by the LaunchDarkly SDK. 2 // 3 // This includes the [Ref] type, which provides a syntax similar to JSON Pointer for 4 // referencing values either of a top-level context attribute, or of a value within a JSON object 5 // or JSON array. It also includes constants for the names of some built-in attributes. 6 // 7 // These types and constants are mainly intended to be used internally by LaunchDarkly SDK and 8 // service code. Applications are unlikely to need to use them directly; context attributes are 9 // normally set via methods in [github.com/launchdarkly/go-sdk-common/v3/ldcontext]. 10 package ldattr 11