We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6109795 commit 7dc9db2Copy full SHA for 7dc9db2
src/main/kotlin/com/papsign/ktor/openapigen/annotations/properties/description/Description.kt
@@ -2,6 +2,9 @@ package com.papsign.ktor.openapigen.annotations.properties.description
2
3
import com.papsign.ktor.openapigen.schema.processor.SchemaProcessorAnnotation
4
5
-@Target(AnnotationTarget.TYPE, AnnotationTarget.PROPERTY)
+/**
6
+ * Property annotation for providing a description of a schema model property
7
+ */
8
+@Target(AnnotationTarget.PROPERTY)
9
@SchemaProcessorAnnotation(DescriptionProcessor::class)
10
annotation class Description(val value: String)
0 commit comments