/// Resource limits for ontology JSON deserialization.
///
/// Use with [`Ontology::from_json_with_limits`](crate::Ontology::from_json_with_limits)
/// when parsing untrusted input. See the [security guide](https://github.com/eddiethedean/ontologos/blob/main/docs/security.md).
/// Maximum class operands in equivalent/disjoint axioms (shared with axiom validation).
pub const MAX_CLASS_OPERANDS: usize = 10_000;