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