de.codecentric.hikaku.converters.openapi.extensions.ReferencedSchema.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hikaku-openapi Show documentation
Show all versions of hikaku-openapi Show documentation
A library that tests if the implementation of a REST-API meets its specification. This module contains a converter for OpenAPI specifications.
package de.codecentric.hikaku.converters.openapi.extensions
import io.swagger.v3.oas.models.parameters.Parameter
import io.swagger.v3.oas.models.parameters.RequestBody
import io.swagger.v3.oas.models.responses.ApiResponse
internal val ApiResponse.referencedSchema
get() = `$ref`
internal val RequestBody.referencedSchema
get() = `$ref`
internal val Parameter.referencedSchema
get() = `$ref`
© 2015 - 2025 Weber Informatics LLC | Privacy Policy