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 9069ab4 commit 578ca87Copy full SHA for 578ca87
dsms/knowledge/webform.py
@@ -192,6 +192,10 @@ class RelationMapping(BaseWebformModel):
192
None,
193
description="Target class IRI if the type of relation is an object property",
194
)
195
+ reverse: Optional[bool] = Field(
196
+ False,
197
+ description="If true, the relation is reversed",
198
+ )
199
200
def __str__(self) -> str:
201
"""Pretty print the model fields"""
@@ -283,6 +287,9 @@ class Webform(BaseWebformModel):
283
287
[], description="Class mapping"
284
288
285
289
sections: List[Section] = Field([], description="List of sections")
290
+ description: Optional[str] = Field(
291
+ None, description="Description of the webform"
292
286
293
294
295
0 commit comments