Amazon Private CA · JSON Structure

Amazon Private Ca Custom Extension Structure

Specifies the X.509 extension information for a certificate.

Extensions present in CustomExtensions follow the ApiPassthrough template rules.

Type: object Properties: 3 Required: 2
Certificate AuthorityCertificatesPKISecurityX.509TLSIoT

CustomExtension is a JSON Structure definition published by Amazon Private CA, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ObjectIdentifier Value Critical

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-private-ca/refs/heads/main/json-structure/amazon-private-ca-custom-extension-structure.json",
  "name": "CustomExtension",
  "description": "<p/> <p>Specifies the X.509 extension information for a certificate.</p> <p>Extensions present in <code>CustomExtensions</code> follow the <code>ApiPassthrough</code> <a href=\"https://docs.aws.amazon.com/privateca/latest/userguide/UsingTemplates.html#template-order-of-operations\">template rules</a>. </p>",
  "type": "object",
  "properties": {
    "ObjectIdentifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomObjectIdentifier"
        },
        {
          "description": "<p/> <p>Specifies the object identifier (OID) of the X.509 extension. For more information, see the <a href=\"https://oidref.com/2.5.29\">Global OID reference database.</a> </p>"
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Base64String1To4096"
        },
        {
          "description": "<p/> <p>Specifies the base64-encoded value of the X.509 extension.</p>"
        }
      ]
    },
    "Critical": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "<p/> <p>Specifies the critical flag of the X.509 extension.</p>"
        }
      ]
    }
  },
  "required": [
    "ObjectIdentifier",
    "Value"
  ]
}