{
"$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-method-schema.json",
"title": "AccessMethod",
"description": "Describes the type and format of extension access. Only one of CustomObjectIdentifier or AccessMethodType may be provided. Providing both results in InvalidArgsException.",
"type": "object",
"properties": {
"CustomObjectIdentifier": {
"allOf": [
{
"$ref": "#/components/schemas/CustomObjectIdentifier"
},
{
"description": "An object identifier (OID) specifying the AccessMethod. The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID)."
}
]
},
"AccessMethodType": {
"allOf": [
{
"$ref": "#/components/schemas/AccessMethodType"
},
{
"description": "Specifies the AccessMethod."
}
]
}
}
}