Skip to content

CreateOcspSingleResponseInput

One certificate's status entry for CreateOcspResponseInput.responses. Extends CreateOcspRequestItemInput with status and timing fields.

ts
interface CreateOcspSingleResponseInput extends CreateOcspRequestItemInput {
	readonly certStatus: OcspCertStatus;
	readonly thisUpdate?: Date;
	readonly nextUpdate?: Date;
	readonly revokedAt?: Date;
	readonly revocationReasonCode?: number;
}

Properties

  • readonly certStatus: OcspCertStatus — Status to assert for this certificate.
  • readonly thisUpdate?: Date — Start of the validity window for this status assertion. Defaults to new Date().
  • readonly nextUpdate?: Date — End of the validity window. Omit for open-ended assertions.
  • readonly revokedAt?: Date — Revocation time (required when certStatus is 'revoked'). Defaults to thisUpdate.
  • readonly revocationReasonCode?: number — CRLReason integer code (only meaningful when certStatus is 'revoked').

Released under the MIT License.