Amazon Private CA · Schema

AccessDescription

Provides access information used by the authorityInfoAccess and subjectInfoAccess extensions described in RFC 5280.

Certificate AuthorityCertificatesPKISecurityX.509TLSIoT

Properties

Name Type Description
AccessMethod object
AccessLocation object
View JSON Schema on GitHub

JSON Schema

amazon-private-ca-access-description-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-private-ca/refs/heads/main/json-schema/amazon-private-ca-access-description-schema.json",
  "title": "AccessDescription",
  "description": "Provides access information used by the <code>authorityInfoAccess</code> and <code>subjectInfoAccess</code> extensions described in <a href=\"https://datatracker.ietf.org/doc/html/rfc5280\">RFC 5280</a>.",
  "type": "object",
  "properties": {
    "AccessMethod": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccessMethod"
        },
        {
          "description": "The type and format of <code>AccessDescription</code> information."
        }
      ]
    },
    "AccessLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GeneralName"
        },
        {
          "description": "The location of <code>AccessDescription</code> information."
        }
      ]
    }
  },
  "required": [
    "AccessMethod",
    "AccessLocation"
  ]
}