
If you have ever peered into the Search Schema in SharePoint Online, you’ve likely seen a confusing list of crawled properties that all seem to point to the same column. For a single field like “Document Type” or “Summary of Document,” you might see SummaryofDocument, ows_SummaryofDocument, and ows_r_MTXT_SummaryofDocument.
Choosing the wrong property for your refinable managed properties can lead to broken search experiences or unpredictable data. This guide breaks down exactly what these prefixes mean, where they come from, and which one you should “always” map based on SharePoint’s extraction architecture.
SharePoint’s search engine is exhaustive. When it crawls an item, it extracts metadata from multiple sources to ensure maximum compatibility:
The prefix is the “fingerprint” of the metadata’s origin. Use this table to identify the source of any crawled property:
| Prefix | Extraction Source | Description / Origin |
|---|---|---|
| ows_ | List Column or Site Column (Raw) | Created for all list columns and as a primary extraction for site columns. It contains the raw metadata. |
| ows_q_ | Site Column (Standard) | The standard extraction for site columns (except rich text). These are “queryable” and include a 4-letter type code. |
| ows_r_ | Site Column (Rich Text) | Used for Multiple Lines of Text or Publishing HTML site columns to capture raw markup or rich content. |
| ows_taxId_ | Managed Metadata | Specific to Term Store / Taxonomy columns; contains the term’s unique GUID. |
| (No Prefix) | File or System | Extracted directly from file metadata (Basic/Office categories) or hard-coded system values. |
| MetadataExtractor | Inferred Metadata | Metadata identified within the body of a file, such as a heading style used as a title. |
When you see a prefix like ows_q_ or ows_r_, it is followed by a code that signals the column’s data type. This is vital for the search engine to know if it should treat the data as a string, a date, or a number.
Based on standard search schema behavior, here is how you should handle the properties you frequently see in your tenant:
In your schema, you likely see ows_DocumentType, ows_q_CHCS_DocumentType, and ows_q_CHCM_DocumentType.
You may see ows_SummaryofDocument and ows_r_MTXT_SummaryofDocument.
You may see ows_PrimeClassificationStatus and ows_q_TEXT_PrimeClassificationStatus.
When configuring custom refiners (using RefinableStringXX, RefinableDateXX, etc.), the golden rule is: Always map the ows_ version (the raw property).
By standardizing your search schema around the raw ows_ properties, you ensure a robust, enterprise-grade search experience that is resilient to updates in your information architecture.





