Skip to content

Commit f747308

Browse files
Merge pull request #1 from Botts-Innovative-Research/patch-fix-vector-schema
fix broken VectorSchema
2 parents ff993cb + 2271f0c commit f747308

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

conSys4Py/datamodels/swe_components.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ class DataRecordSchema(AnyComponentSchema):
3939

4040

4141
class VectorSchema(AnyComponentSchema):
42-
label: str = "Vector"
43-
type: str = Field(...)
42+
label: str = Field(...)
43+
name: str = Field(...)
44+
type: str = "Vector"
4445
definition: str = Field(...)
4546
reference_frame: str = Field(...)
4647
local_frame: str = Field(None)

0 commit comments

Comments
 (0)