certificate


Description

This table contains all the certificates for a zone that have been discovered. It is parent table that is partitioned over zone schema.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
id serial 10 nextval('zone.certificate_id_seq'::regclass)
device_certificate.certificate_id fk_dev_cert_cert C

Unique identifier for certificate record

zone_id int4 10 null
zone.id fk_certificate_zone R

Zone Id for the certificate record

issuer_id int4 10 null
certificatepath.id fk_cert_issuer R

Id for data referencing certificate issuer. It maps to zone.certificatepath.id

subject_id int4 10 null
certificatepath.id fk_cert_subject R

Id for data referencing certificate subject. It maps to zone.certificatepath.id

startdate timestamp 29,6 null

Start date for the certificate

expiredate timestamp 29,6 null

Expiration date of the certificate

version int4 10 null

Version of the certificate

serial text 2147483647 null

Serial number of the certificate

certificatetype text 2147483647 null

Type of the certificate. For example SHA256withRSA, SHA1withRSA

signaturetype text 2147483647 null

Signature type of the certificate. For example RSA(4096), EC

extensions text 2147483647 null

Not being used.

chainorder int4 10 null
chainid int8 19 null
port int4 10 null

Table contained 0 rows

Indexes

Constraint Name Type Sort Column(s)
pk_certificate Primary key Asc id
idx_certificate_issuer_id Performance Asc issuer_id
idx_certificate_subject_id Performance Asc subject_id
idx_certificate_type Performance Asc certificatetype

Relationships