> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## 0.39.18

**`(fix):`** Produce IR v53.8.0 with raw datetime examples.

### What's been fixed

* Produce IR v53.8.0 with raw datetime examples. The raw datetime examples help  when generating test fixtures to assert conditions about the original datetime.

## 0.39.17

**`(fix):`** object declarations with extends and no properties now has examples propagating in the Docs and SDKs

### What's been fixed

* Previously, object declarations with extends and no properties did not have examples
  propagating in the Docs and SDKs. The core issue was in IR generation which has now
  been resolved.

The following will now work as expected:

```yaml
types:

  ObjectWithNoProperties:
    extends:
      - ParentA
      - ParentB
    examples:
      - name: Default
        value:
          propertyFromParentA: foo
          propertyFromParentB: bar
```