diff --git a/jsonschema/tests/_suite.py b/jsonschema/tests/_suite.py index aeae4113..0da6503c 100644 --- a/jsonschema/tests/_suite.py +++ b/jsonschema/tests/_suite.py @@ -19,7 +19,7 @@ import referencing.jsonschema if TYPE_CHECKING: - from collections.abc import Iterable, Mapping + from collections.abc import Iterable, Mapping, Sequence import pyperf @@ -162,6 +162,7 @@ class _Case: schema: Mapping[str, Any] | bool tests: list[_Test] comment: str | None = None + specification: Sequence[dict[str, str]] = () @classmethod def from_dict(cls, data, remotes, **kwargs):