Skip to content

Commit

Permalink
Add identifier to the schema so that it's imported properly (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
plars authored Jan 11, 2024
1 parent 83ebced commit 1ffc4a3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions server/src/api/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@
class AgentIn(Schema):
"""Agent data input schema"""

state = fields.String(required=False)
queues = fields.List(fields.String(), required=False)
location = fields.String(required=False)
provision_type = fields.String(required=False)
identifier = fields.String(required=False)
job_id = fields.String(required=False)
location = fields.String(required=False)
log = fields.List(fields.String(), required=False)
provision_type = fields.String(required=False)
queues = fields.List(fields.String(), required=False)
state = fields.String(required=False)


class AgentOut(Schema):
Expand Down

0 comments on commit 1ffc4a3

Please sign in to comment.