Unified.to · Schema

CommerceReviewComment

IntegrationsUnified API

Properties

Name Type Description
author_avatar_url string
author_email string
author_location string
author_name string
content string
created_at string
helpful_votes number
id string
is_public boolean
is_verified boolean
metadata object
raw object
status string
unhelpful_votes number
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-commercereviewcomment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommerceReviewComment",
  "title": "CommerceReviewComment",
  "properties": {
    "author_avatar_url": {
      "type": "string"
    },
    "author_email": {
      "type": "string"
    },
    "author_location": {
      "type": "string"
    },
    "author_name": {
      "type": "string"
    },
    "content": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "helpful_votes": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "is_public": {
      "type": "boolean"
    },
    "is_verified": {
      "type": "boolean"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_CommerceReviewComment_metadata"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "status": {
      "enum": [
        "PENDING",
        "APPROVED",
        "REJECTED",
        "SPAM"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "unhelpful_votes": {
      "type": "number"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "content"
  ],
  "type": "object"
}