An imaginary rule set file defining two rules could look like shown below.
version: "1alpha4"
name: my-rule-set
rules:
- id: rule:1
  match:
    routes:
      - path: /**
    methods: [ "GET" ]
    scheme: https
    hosts:
      - type: exact
        value: my-service1.local
  execute:
    - authorizer: foobar
- id: rule:2
  match:
    routes:
      - path: /**
    scheme: https
    hosts:
      - type: exact
        value: my-service2.local
    methods: [ "GET" ]
  execute:
    - authorizer: barfoo