> 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: Resource Types V2 # Type: Resource Type Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/resource-type-object.md ## Description: A resource type is a classification of resources. For example room, equipment, or vehicle. Customers can only book [services](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction.md) if at least 1 [resource](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction.md) for every resource type connected to the service is available during the requested time. ## Schema: ```json Type: Resource Type Object | type: ResourceType Description: A resource type is a classification of resources. For example room, equipment, or vehicle. Customers can only book [services](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction.md) if at least 1 [resource](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction.md) for every resource type connected to the service is available during the requested time. - name: id | type: string | description: Resource type ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the resource type is updated. To prevent conflicting changes, the current revision must be passed when updating the resource type. - name: value | type: string | description: - name: createdDate | type: string | description: Time in `YYYY-MM-DDThh:mm:ss.sssZ` format the resource type was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Time in `YYYY-MM-DDThh:mm:ss.sssZ` format the resource type was last updated. - name: name | type: string | description: Name of the resource type. For example, `meeting room`. The name must be unique per site. - name: extendedFields | type: ExtendedFields | description: Extensions enabling users to save custom data related to the resource type. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). ```