action traccar_put_maintenance_id { label: "Update a Maintenance" provider: traccar method: PUT path: "/maintenance/{id}" encoding: json input: { type: "object" properties: { attributes: { type: "object" properties: {} } id: { type: "integer" } name: { type: "string" } period: { type: "number" } start: { type: "number" } type: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { attributes: { type: "object" properties: {} } id: { type: "integer" } name: { type: "string" } period: { type: "number" } start: { type: "number" } type: { type: "string" } } } }