Unified.to · Schema

CommerceReview

IntegrationsUnified API

Properties

Name Type Description
author_avatar_url string
author_email string
author_location string
author_name string
comments object
content string
created_at string
helpful_votes number
id string
is_featured boolean
is_public boolean
is_verified boolean
item_id string
item_variant_id string
location_id string
media object
metadata object
rating number
raw object
status string
title string
unhelpful_votes number
updated_at string
url string
verified_purchase boolean
View JSON Schema on GitHub

JSON Schema

unified-to-commercereview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommerceReview",
  "title": "CommerceReview",
  "properties": {
    "author_avatar_url": {
      "type": "string"
    },
    "author_email": {
      "type": "string"
    },
    "author_location": {
      "type": "string"
    },
    "author_name": {
      "type": "string"
    },
    "comments": {
      "$ref": "#/components/schemas/property_CommerceReview_comments"
    },
    "content": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "helpful_votes": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "is_featured": {
      "type": "boolean"
    },
    "is_public": {
      "type": "boolean"
    },
    "is_verified": {
      "type": "boolean"
    },
    "item_id": {
      "type": "string"
    },
    "item_variant_id": {
      "type": "string"
    },
    "location_id": {
      "type": "string"
    },
    "media": {
      "$ref": "#/components/schemas/property_CommerceReview_media"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_CommerceReview_metadata"
    },
    "rating": {
      "type": "number"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "status": {
      "enum": [
        "PENDING",
        "APPROVED",
        "REJECTED",
        "SPAM"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "title": {
      "type": "string"
    },
    "unhelpful_votes": {
      "type": "number"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "verified_purchase": {
      "type": "boolean"
    }
  },
  "required": [
    "item_id"
  ],
  "type": "object"
}