rules:
  - path: /holds/<int>
    methods: [PUT]
    profiles:
      LabelProfile: ['catalog']
      OrchAdminProfile: ['*']

  - path: /holds/<int>
    methods: [GET]
    profiles:
      LabelProfile: ['catalog', 'marketing']

  - path: /holds/active
    methods: [GET]
    profiles:
      LabelProfile: ['catalog', 'marketing']
      OrchAdminProfile: ['catalog']

  - path: /holds/vendor/<int>
    methods: [GET]
    profiles:
      LabelProfile: ['*']

  - path: /holds/vendor/active
    methods: ['*']
    profiles:
      LabelProfile: ['catalog']

  - path: /<str>/<int>/average
    methods: [GET]
    profiles:
      LabelProfile: ['catalog']

  - path: ^\/holdsregex\/vendor\/\d+$
    rule_type: regex
    methods: [GET]
    profiles:
      LabelProfile: ['catalog']

  - path: /report
    methods: [GET, POST]
    profiles:
      LabelProfile: ['administrator', 'accounting']

  - path: /test_slash
    methods: [GET]
    profiles:
      LabelProfile: ['catalog']

  - path: /test_slash/<int>
    methods: [GET]
    profiles:
      LabelProfile: ['catalog']

  - path: /reporting/report/<str>
    methods: [GET]
    profiles:
      LabelProfile: ['analytics']

  - path: /test_admin
    methods: [POST]
    profiles:
      OrchAdminProfile: ['*']
