Ribbon Health · Schema
getSpecialties
JSON Schema for getSpecialties response from Ribbon Health H1 API
HealthcareProvider DirectoryInsuranceClinical DataCare NavigationEligibilityPrice TransparencyProvider SearchHealth PlansDigital Health
Properties
| Name | Type | Description |
|---|---|---|
| count | integer | The total number of results matched, across all pages. |
| next | string | |
| previous | string | |
| results | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "getSpecialties",
"description": "JSON Schema for getSpecialties response from Ribbon Health H1 API",
"required": [
"count",
"next",
"previous",
"results"
],
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "The total number of results matched, across all pages.",
"format": "int32",
"example": 141
},
"next": {
"type": "string",
"nullable": true,
"example": "https://api.ribbonhealth.com/v1/custom/specialties?page=3"
},
"previous": {
"type": "string",
"nullable": true,
"example": "https://api.ribbonhealth.com/v1/custom/specialties?page=1"
},
"results": {
"type": "array",
"description": "",
"items": {
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "A UUID uniquely identifying this specialty",
"format": "uuid",
"example": "18d8ad26-7e5f-44ac-9afa-966efb375344"
},
"taxonomy_code": {
"example": "207Q00000X",
"oneOf": [
{
"type": "string"
}
]
},
"board_specialty": {
"type": "string",
"nullable": true,
"example": "Family Medicine"
},
"board_sub_specialty": {
"type": "string",
"nullable": true
},
"non_md_specialty": {
"type": "string",
"nullable": true
},
"non_md_sub_specialty": {
"type": "string",
"nullable": true,
"example": "None"
},
"provider_name": {
"type": "string",
"nullable": true,
"example": "Family Medicine Doctor"
},
"colloquial": {
"type": "string",
"nullable": true
},
"taxonomy_1": {
"type": "string",
"nullable": true,
"example": "Allopathic & Osteopathic Physicians"
},
"taxonomy_2": {
"type": "string",
"nullable": true,
"example": "Family Medicine"
},
"taxonomy_3": {
"type": "string",
"nullable": true
},
"display": {
"type": "string",
"example": "Family Medicine"
},
"provider_type": {
"type": "string",
"example": "Doctor"
},
"is_primary": {
"type": "boolean",
"description": "Whether or not a specialty is a provider's primary specialty",
"example": true
}
}
}
}
}
}