This table aggregates membership for all versions of the CSR object.
Versioned schema members
Any object member specific to a range of versions is indicated in its description, at what version the member was either introduced or removed. Any listed data member with no version number is common to all versions of the object.
Member | Type | Description | |
---|---|---|---|
CSR : Certificate Signing Request (CSR). | |||
csr | String, Null | pre-v2. String with PEM formatted CSR. | |
csrs | CSR.csrs[] | v2. Certificate Signing Request (CSR) Object | |
CSR.csrs[] : Certificate Signing Request (CSR) Object | |||
csr | String | v2. String with PEM formatted CSR. | |
keyAlgorithm | Enumeration, Null | v2. Key algorithm of the certificate. |
Sample v1 object
{
"csr": "-----BEGIN CERTIFICATE REQUEST-----\nMIIDPT ... <sample - removed for readability> .... hA9jc=\n-----END CERTIFICATE REQUEST-----"
}
Sample v2 object
{
"csrs": [
{
"csr": "-----BEGIN CERTIFICATE REQUEST-----\nMIIDPT ... <sample - removed for readability> .... hA9jc=\n-----END CERTIFICATE REQUEST-----",
"keyAlgorithm": "RSA"
}
]
}