Skip to content

Commit

Permalink
docs: fix commas in the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mrKazzila authored and Arondit committed Mar 22, 2024
1 parent 3eb15f3 commit e296b21
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions guides/api_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ HTTP/1.1 420 Going To Hell Error
"errors": [
{
"resource": "Clinic",
"code": "timeslot_is_busy",
"code": "timeslot_is_busy"
}
]
}
Expand All @@ -147,14 +147,14 @@ HTTP/1.1 422 Unprocessable Entity
{
"resource": "Patient",
"field": "patient_id",
"code": "readonly_field"
"message": "Id пациента нельзя редактировать",
"code": "readonly_field",
"message": "Id пациента нельзя редактировать"
},
{
"resource": "Patient",
"field": "phone",
"code": "wrong_phone_format"
"message": "Телефон должен содержать хотя бы одну цифру",
"code": "wrong_phone_format",
"message": "Телефон должен содержать хотя бы одну цифру"
}
]
}
Expand Down

0 comments on commit e296b21

Please sign in to comment.