rules:
  # Catalog: Get all artists.
  - path: /artist/artists
    methods: [GET]
    groups:
      alw: [1]
      oa: ['*']
  - path: /artist/artist
    methods: [POST]
    groups:
      alw: [1]
      oa: ['*']
  - path: /artist/subaccount/<int>/artists
    methods: [GET]
    groups:
      alw: [1]
      oa: ['*']
  - path: /artist/vendor/<int>/artists
    methods: [GET]
    groups:
      alw: [1]
      oa: ['*']
  # Admin: Allow all.
  - path: <*>
    methods: ['*']
    groups:
      alw: [4]
      oa: ['*']
