Following the documentation's canonical example, say I want to store tweets in elasticsearch, but I want to specify an endpoint that handles more than two fields, e.g.
/tweets/some_twitter_handle/some_month/tweet/id
In this example, I want to index on tweets, but also on some_twitter_handle and some_month, with tweet type, and some id.
Is this possible, or is the only possible mapping something akin to what they provide, with one index and one type, e.g /tweets/tweet/id?