{
"$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-extended-key-usage-schema.json",
"title": "ExtendedKeyUsage",
"description": "Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the KeyUsage extension.",
"type": "object",
"properties": {
"ExtendedKeyUsageType": {
"allOf": [
{
"$ref": "#/components/schemas/ExtendedKeyUsageType"
},
{
"description": "Specifies a standard ExtendedKeyUsage as defined as in RFC 5280."
}
]
},
"ExtendedKeyUsageObjectIdentifier": {
"allOf": [
{
"$ref": "#/components/schemas/CustomObjectIdentifier"
},
{
"description": "Specifies a custom ExtendedKeyUsage with an object identifier (OID)."
}
]
}
}
}