API endpoint that allows apps get a list of dental Specialties availables.

GET /api/get_dental_specialties/?format=api
HTTP 200 OK
Allow: GET, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 7,
    "next": null,
    "previous": null,
    "results": [
        {
            "specialty_id": "1",
            "specialty_name": "General Dentistry"
        },
        {
            "specialty_id": "2",
            "specialty_name": "Endodontics"
        },
        {
            "specialty_id": "3",
            "specialty_name": "Oral Surgery"
        },
        {
            "specialty_id": "4",
            "specialty_name": "Orthodontists"
        },
        {
            "specialty_id": "5",
            "specialty_name": "Pediatric Dentist"
        },
        {
            "specialty_id": "6",
            "specialty_name": "Periodontists"
        },
        {
            "specialty_id": "7",
            "specialty_name": "Prosthodontics"
        }
    ]
}