openapi-nexus 0.1.16

OpenAPI 3.x multi-language code generator
Documentation
openapi: 3.1.0
info:
  title: Optional Inline Object Test
  description: Test case for optional inline objects
  version: 1.0.0

paths:
  /test:
    get:
      summary: Test endpoint
      operationId: test
      responses:
        '200':
          description: OK

components:
  schemas:
    OptionalInlineObject:
      type: object
      description: Object with optional inline object property
      properties:
        optional_config:
          type: object
          properties:
            setting_key:
              type: string
            setting_value:
              type: string