20 lines
552 B
Go
20 lines
552 B
Go
package contracts
|
|
|
|
// SpeakerTranscript is a placeholder transcription artifact contract.
|
|
type SpeakerTranscript struct {
|
|
Schema string `json:"schema"`
|
|
SessionID string `json:"session_id"`
|
|
}
|
|
|
|
// CanonicalTranscript is a placeholder merged transcript contract.
|
|
type CanonicalTranscript struct {
|
|
Schema string `json:"schema"`
|
|
SessionID string `json:"session_id"`
|
|
}
|
|
|
|
// ProcessedTranscript is a placeholder polished transcript contract.
|
|
type ProcessedTranscript struct {
|
|
Schema string `json:"schema"`
|
|
SessionID string `json:"session_id"`
|
|
}
|