Files
sendico/interface/models/auth/session_identifier.yaml
2026-03-02 16:27:33 +01:00

17 lines
497 B
YAML

components:
schemas:
SessionIdentifier:
description: Identifies an authentication session by client and device.
type: object
additionalProperties: false
required:
- clientId
- deviceId
properties:
clientId:
description: Client application identifier associated with the session.
type: string
deviceId:
description: Device/server identifier associated with the client session.
type: string