Thanks for asking question!
As mentioned here in Azure Blob indexer - Azure Cognitive Search
custom metadata of blobs will be indexed as long as the user-specified (custom) metadata properties have the exact same value defined in the index so it is mapped.
"User-specified metadata properties are extracted verbatim. To receive the values, you must define field in the search index of type Edm.String
, with same name as the metadata key of the blob. For example, if a blob has a metadata key of Sensitivity
with value High
, you should define a field named Sensitivity
in your search index and it will be populated with the value High
."
Let us know if further query.