{
    "title": "service_testimonials",
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "description": "Primary key, auto-increment"
        },
        "name": {
            "type": "string",
            "description": "Client name"
        },
        "company": {
            "type": "string",
            "description": "Company name"
        },
        "role": {
            "type": "string",
            "description": "Role/title"
        },
        "quote": {
            "type": "string",
            "description": "Testimonial text"
        },
        "rating": {
            "type": "integer",
            "description": "Rating 1-5"
        },
        "avatar_url": {
            "type": "string",
            "description": "Avatar or company logo URL"
        },
        "display_order": {
            "type": "integer",
            "description": "Sort order, lower first"
        },
        "is_active": {
            "type": "boolean",
            "description": "Whether to show on public site"
        }
    },
    "required": [
        "id",
        "name",
        "company",
        "quote",
        "rating"
    ]
}