> 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: User Certification V1

# Type: User Certification Object

# Link: https://dev.wix.com/docs/api-reference/account-level/studio-workspace/certifications/user-certification-v1/user-certification-object.md

## Description: A user certification represents a Wix Academy certification held by an individual user,
such as the Velo, Web Designer, or Wix Studio Developer certification.

A user earns a certification by passing the corresponding Wix Academy exam or course.
Once earned, a certification is permanent and remains valid until it's removed administratively,
so you can treat the presence of a user certification as currently valid.
A user holds each certification type at most once.

To read certifications at the account level, see the Account Certifications API.

## Schema:

```json
 Type: User Certification Object | type: UserCertification
 Description: A user certification represents a Wix Academy certification held by an individual user,
such as the Velo, Web Designer, or Wix Studio Developer certification.

A user earns a certification by passing the corresponding Wix Academy exam or course.
Once earned, a certification is permanent and remains valid until it's removed administratively,
so you can treat the presence of a user certification as currently valid.
A user holds each certification type at most once.

To read certifications at the account level, see the Account Certifications API.
       - name: id  | type: string | description: User certification ID.
           - name: value  | type: string | description: 
       - name: revision  | type: string | description: Revision number, which increments by 1 each time the user certification is updated. To prevent conflicting changes, the current revision must be passed when updating the user certification.  Ignored when creating a user certification.
           - name: value  | type: string | description: 
       - name: createdDate  | type: string | description: Date and time the user certification was created.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the user certification was last updated.
       - name: userId  | type: string | description: ID of the certified user. Set when the certification is created and can't be changed afterward.
       - name: certificationType  | type: string | description: Type of certification the user holds. Set when the certification is created and can't be changed afterward.
           enum: VELO, WEB_DESIGNER, ACCESSIBILITY, STUDIO_DEVELOPER, STUDIO_DESIGN_LEAGUE, STUDIO_DEV_WEBSITES_LEAGUE

```