{ "$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-delete-permission-request-schema.json", "title": "DeletePermissionRequest", "description": "DeletePermissionRequest schema from Amazon Private CA API", "type": "object", "properties": { "CertificateAuthorityArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "
The Amazon Resource Number (ARN) of the private CA that issued the permissions. You can find the CA's ARN by calling the ListCertificateAuthorities action. This must have the following form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 .
acm.amazonaws.com "
}
]
},
"SourceAccount": {
"allOf": [
{
"$ref": "#/components/schemas/AccountId"
},
{
"description": "The Amazon Web Services account that calls this action."
}
]
}
},
"required": [
"CertificateAuthorityArn",
"Principal"
]
}