# Functions
MatchFixtureQuery will attempt to find matches for a fixture query pattern returning a *Regexp which can be used to further parse and a boolean indicating a match was found.
ParseArrayForFormData is similar to parseMap but doesn't have to build the multi-depth keys.
ParseMapForFormData recursively parses a map of string => interface{} until each leaf node has a terminal type (String, Int, etc) that can no longer be recursively traversed.
ParsePath will inspect the path to see if it has a query in the path for requests that operate on specific objects (for example, GET /v1/customers/:id or POST /v1/subscriptions/:id)
If a query is found, this returns the path with the value already in place.
ParseQuery checks strings for possible queries and replaces the corresponding value in its place.
ParseToApplicationJSON is the primary entrypoint into building the request data for v2 fixtures.
ParseToFormData is the primary entrypoint into building the request data for fixtures.
ToFixtureQuery will parse a string into a fixtureQuery struct, additionally returning a bool indicating the value did contain a fixtureQuery.
# Structs
FixtureQuery describes the query in fixture request.