> 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: Likes # Type: Like Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/like-object.md ## Description: A like represents a positive reaction to blog content. Likes are associated with specific blog content using their FQDN and entity ID, allowing likes to be created for various types of blog content such as posts or comments. ## Schema: ```json Type: Like Object | type: Like Description: A like represents a positive reaction to blog content. Likes are associated with specific blog content using their FQDN and entity ID, allowing likes to be created for various types of blog content such as posts or comments. - name: id | type: string | description: Like ID. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the like was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: entityId | type: string | description: ID of the specific blog content being liked, such as a blog post or comment. - name: fqdn | type: string | description: Fully qualified domain name that identifies the type of blog content being liked. For example, `wix.blog.v3.post` for blog posts. ```