Finding unsupported images surfacing during reporting

A partner has 20,000 directory entities, many of these in their environment have an image attached.

They have sporadically had reports failing, and it seems that unsupported image types are the cause. It’s looking like the image type is AV1.

Given the volume, what is the best way to identify a list of which records have an unsupported image type attached? They tried a data export, but relevant image data did not come through in the export.

And is there a list of unsupported image types in reporting?

Known supported image types are: JPG, PNG, SVG, and GIF

Anything else is unlikely to work.

What is the file type extension for these images? Are they AV1s masquerading as .jpgs?

You can run an api request through postman with this as the filter to find records with invalid reporting images:

"nwFilter": {
    "$and": [
      {
        "Logo": {
          "$like": "%data"
        }
      },
      {
        "$not": {
          "$or": [
            {
              "Logo": {
                "$like": "%data:image/png"
              }
            },
            {
              "Logo": {
                "$like": "%data:image/jpg"
              }
            },
            {
              "Logo": {
                "$like": "%data:image/jpeg"
              }
            },
            {
              "Logo": {
                "$like": "%data:image/svg"
              }
            },
            {
              "Logo": {
                "$like": "%data:image/gif"
              }
            }
          ]
        }
      }
    ]
  }

I’m working with Drew to give proper instructions on how to actually set this up in postman.

2 Likes