Ignoring methods or schemas
Use x-fern-ignore to exclude specific methods or schemas from SDK generation:
openrpc.yml
Use x-fern-ignore to exclude specific methods or schemas from SDK generation:
1 methods: 2 - name: debug.internalMethod 3 summary: Internal debugging method 4 x-fern-ignore: true 5 params: 6 - name: debugData 7 schema: 8 type: object 9 result: 10 name: debugResult 11 schema: 12 type: object 13 - name: test.experimentalFeature 14 summary: Experimental feature (not ready for public use) 15 x-fern-ignore: true 16 params: [] 17 result: 18 name: result 19 schema: 20 type: string