Skip to main content

UserRatingsListResponse

Response containing a list of user ratings

ratings object[]required

List of user ratings

  • Array [
  • createdAtstring<date-time>required

    When the rating was created

    Example: 2024-01-01T00:00:00Z
    idstring<uuid>required

    Rating ID

    Example: 550e8400-e29b-41d4-a716-446655440030
    notesstring | nullnullable

    Optional notes/review

    Example: Great series, loved the art style!
    ratinginteger<int32>required

    Rating value (1-100, displayed as 1-10 in UI with 0.1 precision)

    Example: 85
    seriesIdstring<uuid>required

    Series ID

    Example: 550e8400-e29b-41d4-a716-446655440002
    updatedAtstring<date-time>required

    When the rating was last updated

    Example: 2024-01-15T10:30:00Z
  • ]
  • UserRatingsListResponse
    {
    "ratings": [
    {
    "createdAt": "2024-01-01T00:00:00Z",
    "id": "550e8400-e29b-41d4-a716-446655440030",
    "notes": "Great series, loved the art style!",
    "rating": 85,
    "seriesId": "550e8400-e29b-41d4-a716-446655440002",
    "updatedAt": "2024-01-15T10:30:00Z"
    }
    ]
    }