Add / ignore the new specification test suite property.
diff --git a/jsonschema/tests/_suite.py b/jsonschema/tests/_suite.py
index aeae411..0da6503 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 @@
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):