{ "$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" }