'How to change resource way , to support multiple future instances in Raml like city and airport?

/{ca}/{en}/{v1}:
  uriParameters:
    ca:
      description: Country of users have to specify with two letter country code.
      type: string
      required: true 
      minLength: 2
      maxLength: 2
    en:
      description: Language have to specified either English or French.
      enum: [en,fr]
      type: string
      required: true
    v1:
      description: The version of the API need to be either v1 or v2.
      enum: [v1,v2]
      type: string
      required: true


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source