{
"$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 authorityInfoAccess and subjectInfoAccess extensions described in RFC 5280.",
"type": "object",
"properties": {
"AccessMethod": {
"allOf": [
{
"$ref": "#/components/schemas/AccessMethod"
},
{
"description": "The type and format of AccessDescription information."
}
]
},
"AccessLocation": {
"allOf": [
{
"$ref": "#/components/schemas/GeneralName"
},
{
"description": "The location of AccessDescription information."
}
]
}
},
"required": [
"AccessMethod",
"AccessLocation"
]
}