You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
397 B
14 lines
397 B
from leapp.models import fields, Model
|
|
from leapp.topics import SystemFactsTopic
|
|
|
|
|
|
class ConsumedDataAsset(Model):
|
|
"""Information about a used data asset."""
|
|
topic = SystemFactsTopic
|
|
|
|
filename = fields.String()
|
|
fulltext_name = fields.String()
|
|
docs_url = fields.String()
|
|
docs_title = fields.String()
|
|
provided_data_streams = fields.Nullable(fields.List(fields.String()))
|