Describing an Entity

Each entity and field can have a description associated with it.

To add a description the annotation @Description should be used.

@Description("My entity description")
entity MyEntity {
    @Description("My attribute description \n in multiple lines.")
    myAttribute String
}

All annotations support text blocks, for example:

@Description("""
        This is a "multiline"
        description.
        """)