> 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: Vote V1

# Type: Vote Object

# Link: https://dev.wix.com/docs/api-reference/crm/community/feedback-moderation/comments/vote-v1/vote-object.md

## Description: An upvote or downvote cast by one identity on a resource in an app context.

## Schema:

```json
 Type: Vote Object | type: Vote
 Description: An upvote or downvote cast by one identity on a resource in an app context.
       - name: resourceId  | type: string | description: ID of the resource receiving the vote. For comments, this is the comment ID.
       - name: resourceFqdn  | type: string | description: Entity type receiving the vote. For comments, this is `wix.comments.v2.comment`.
       - name: voteId  | type: string | description: Vote ID.
       - name: type  | type: string | description: Vote type.
           enum: UNKNOWN, UPVOTE, DOWNVOTE
       - name: createdBy  | type: SocialIdentity | description: Identity that cast the vote.
           - name: identityId  | type: string | description: 
           - name: identityType  | type: string | description: 
               enum: ANONYMOUS, MEMBER, USER, SERVICE, MEMBER_GROUP
       - name: createdDate  | type: string | description: Date and time the vote was created.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the vote was updated.
       - name: context  | type: VoteContext | description: App and context containing the resource.
           - name: contextId  | type: string | description: ID of the context containing the resource.
           - name: contextType  | type: string | description: Type used by the app to identify the context.
               - name: value  | type: string | description: 
           - name: appDefId  | type: string | description: ID of the app that owns the context.
           - name: metaSiteId  | type: string | description: Site ID.
       - name: revision  | type: string | description: Revision number, which increments when the vote is updated.

```