export function generateBlackCarPolicyData(policyIds: string[]) {
  return {
    rules: [
      {
        uuid: policyIds[0],
        name: 'enabled',
        type: 'black car',
        defaultRule: true,
        conditionAttributes: [],
        targetAttributes: [
          {
            attributeName: 'blackCar.enabled',
            attributeValue: 'true'
          }
        ]
      }
    ]
  };
}
