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 5c530e7 commit 85d9271Copy full SHA for 85d9271
src/entitysdk/models/entity.py
@@ -15,26 +15,26 @@ class Entity(Identifiable, HasAssets):
15
"""Entity is a model with id and authorization."""
16
17
name: Annotated[
18
- str,
+ str | None,
19
Field(
20
examples=["Entity 1"],
21
description="The name of the entity.",
22
),
23
- ]
+ ] = None
24
description: Annotated[
25
26
27
examples=["This is entity 1"],
28
description="The description of the entity.",
29
30
31
type: Annotated[
32
33
34
examples=["license"],
35
description="The type of this Entity.",
36
37
38
createdBy: Annotated[
39
AgentUnion | None,
40
Field(description="The agent that created this entity."),
0 commit comments