@@ -67,12 +67,21 @@ class CertificateLog(BaseModel):
6767 api : Literal ["RFC6962" , "STATIC" ]
6868 """The API standard that the certificate log follows."""
6969
70+ avg_throughput : float = FieldInfo (alias = "avgThroughput" )
71+ """
72+ The average throughput of the CT log, measured in certificates per hour
73+ (certs/hour).
74+ """
75+
7076 description : str
7177 """A brief description of the certificate log."""
7278
7379 end_exclusive : datetime = FieldInfo (alias = "endExclusive" )
7480 """The end date and time for when the log will stop accepting certificates."""
7581
82+ last_update : datetime = FieldInfo (alias = "lastUpdate" )
83+ """Timestamp of the most recent update to the CT log."""
84+
7685 operator : str
7786 """The organization responsible for operating the certificate log."""
7887
@@ -98,6 +107,16 @@ class CertificateLog(BaseModel):
98107 state_timestamp : datetime = FieldInfo (alias = "stateTimestamp" )
99108 """Timestamp of when the log state was last updated."""
100109
110+ submittable_cert_count : Optional [str ] = FieldInfo (alias = "submittableCertCount" , default = None )
111+ """
112+ Number of certificates that are eligible for inclusion to this log but have not
113+ been included yet. Based on certificates signed by trusted root CAs within the
114+ log's accepted date range.
115+ """
116+
117+ submitted_cert_count : Optional [str ] = FieldInfo (alias = "submittedCertCount" , default = None )
118+ """Number of certificates already included in this CT log."""
119+
101120 url : str
102121 """The URL for the certificate log."""
103122
0 commit comments