Unified.to · Schema

CommerceReview

CommerceReview schema from Unified.to API

IntegrationsUnified API

Properties

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

JSON Schema

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