> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Wix Blog Schema for Wix Search ## Article: Wix Blog Schema for Wix Search ## Article Link: https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-app-collections/other-apps/wix-blog/wix-blog-schema-for-wix-search.md ## Article Content: # Wix Blog Schema for Wix Search This article describes the Wix Blog fields you can [search](https://www.wix.com/velo/reference/wix-search.html#search), [sort](https://www.wix.com/velo/reference/wix-search.WixSearchBuilder.html#ascending), [filter](https://www.wix.com/velo/reference/wix-search.html#filter), and [apply facets](https://www.wix.com/velo/reference/wix-search.WixSearchBuilder.html#facets) to when using the [wix-search API](https://www.wix.com/velo/reference/wix-search.html). To search Wix Blog posts on your site, set the search document type as `”Blog/Posts"`: ```javascript wixSearch.search(phrase) .documentType("Blog/Posts") .find() .then( (results) => { // handle the results } ); ``` >**Note:** > The Blog fields supported by wix-search are not identical to the fields in your site's [Blog/Posts collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-app-collections/other-apps/wix-blog/wix-blog-posts-collection-fields.md). The following fields appear in each matching search result [document](https://www.wix.com/velo/reference/wix-search.WixSearchResult.html#documents) when searching Wix Blog services: #### documentType **Description**: Document type that was searched. In this case, “Blog/Posts”. **Type**: String **Can search the content of this field**: No **Can facet**: No **Can sort**: No **Can filter**: No #### \_id **Description**: The ID of the post. **Type**: String **Can search the content of this field**: No **Can facet**: No **Can sort**: No **Can filter**: No #### title **Description**: The title of the post. **Type**: String **Can search the content of this field**: Yes **Can facet**: No **Can sort**: No **Can filter**: No #### description **Description**: Text of the post. **Type**: String **Can search the content of this field**: Yes **Can facet**: No **Can sort**: No **Can filter**: No #### url **Description**: Relative URL of the post page on your site. **Type**: String **Can search the content of this field**: No **Can facet**: No **Can sort**: No **Can filter**: No #### image **Description**: File source of the post’s cover image. **Type**: String **Can search the content of this field**: No **Can facet**: No **Can sort**: No **Can filter**: No #### hashTags **Description**: List of hashtags in the post. **Type**: Array of Strings **Can search the content of this field**: No **Can facet**: Yes **Can sort**: No **Can filter**: hasSome, hasAll #### tags **Description**: List of tags in the post. **Type**: Array of Strings **Can search the content of this field**: Yes **Can facet**: Yes **Can sort**: Yes **Can filter**: hasSome, hasAll #### tagIds **Description**: List of tag IDs in the post. **Type**: Array of Strings **Can search the content of this field**: No **Can facet**: Yes **Can sort**: Yes **Can filter**: hasSome, hasAll #### publishDate **Description**: Date and time the post was originally published. **Type**: Date **Can search the content of this field**: No **Can facet**: No **Can sort**: Yes **Can filter**: in, eq, ne, gt, ge, lt, le