{
"$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-qualifier-schema.json",
"title": "Qualifier",
"description": "Defines a PolicyInformation qualifier. Amazon Web Services Private CA supports the certification practice statement (CPS) qualifier defined in RFC 5280. ",
"type": "object",
"properties": {
"CpsUri": {
"allOf": [
{
"$ref": "#/components/schemas/String256"
},
{
"description": "Contains a pointer to a certification practice statement (CPS) published by the CA."
}
]
}
},
"required": [
"CpsUri"
]
}