## isCodeableConcept() function

Returns true if the input value is a CodeableConcept object. This is a heuristic check based on the presence of the "coding" property.

**Signature:**

```typescript
export declare function isCodeableConcept(value: unknown): value is CodeableConcept & {

coding: Coding[];

};
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| value | unknown | The candidate value. |

**Returns:**

value is CodeableConcept & { coding: Coding[]; }

True if the input value is a CodeableConcept.

- [isCodeableConcept() function](/content/docs/sdk/core.iscodeableconcept#iscodeableconcept-function/index.html)
- [Parameters](/content/docs/sdk/core.iscodeableconcept#parameters/index.html)
