Extending a comment from #821.
|
class Reference(BaseModel): |
|
""" |
|
A reference to a resource that provides additional context about the decision points or selections. |
|
This object is intentionally minimal and contains only the URL and an optional description. |
|
""" |
|
|
|
model_config = ConfigDict(extra="forbid") |
|
|
|
uri: AnyUrl |
|
description: str |
|
|
Do we want that to be an URI or URL?
Originally posted by @tschmidtb51 in #821 (comment)
Extending a comment from #821.
SSVC/src/ssvc/selection.py
Lines 165 to 175 in 6dbe00d
Originally posted by @tschmidtb51 in #821 (comment)