Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
44 lines
995 B
TypeScript
44 lines
995 B
TypeScript
/**
|
|
* @schema BaseProductImage
|
|
* type: object
|
|
* description: The image's details.
|
|
* x-schemaName: BaseProductImage
|
|
* properties:
|
|
* id:
|
|
* type: string
|
|
* title: id
|
|
* description: The image's ID.
|
|
* url:
|
|
* type: string
|
|
* title: url
|
|
* description: The image's URL.
|
|
* created_at:
|
|
* type: string
|
|
* format: date-time
|
|
* title: created_at
|
|
* description: The date the image was created.
|
|
* updated_at:
|
|
* type: string
|
|
* format: date-time
|
|
* title: updated_at
|
|
* description: The date the image was updated.
|
|
* deleted_at:
|
|
* type: string
|
|
* format: date-time
|
|
* title: deleted_at
|
|
* description: The date the image was deleted.
|
|
* metadata:
|
|
* type: object
|
|
* description: The image's metadata, can hold custom key-value pairs.
|
|
* rank:
|
|
* type: number
|
|
* title: rank
|
|
* description: The image's rank among its sibling images.
|
|
* required:
|
|
* - id
|
|
* - url
|
|
* - rank
|
|
*
|
|
*/
|
|
|