finance_query/models/edgar/cik.rs
1//! CIK (Central Index Key) lookup models.
2
3use serde::{Deserialize, Serialize};
4
5/// An entry from the SEC ticker-to-CIK mapping.
6///
7/// Maps a stock ticker symbol to its SEC CIK number and company name.
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[non_exhaustive]
10pub struct CikEntry {
11 /// CIK number (unique SEC identifier)
12 pub cik: u64,
13 /// Ticker symbol
14 pub ticker: String,
15 /// Company name
16 pub title: String,
17}