From d5d27e65461b4ba8d17a17fcc9939280f448f6fe Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Tue, 1 Sep 2026 16:02:41 +0200 Subject: [PATCH 1/3] Add key ( required) to space declaration --- .../probe-lexicons/earth.cirrus.check.space.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json b/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json index cc92625..8acb874 100644 --- a/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json +++ b/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json @@ -5,6 +5,7 @@ "defs": { "main": { "type": "space", + "key:":"literal:probe", "name": "Conformance probe space", "description": "Ephemeral probe spaces created by the @getcirrus/space-conformance suite (check.cirrus.earth). Each is created with a run-unique key and deleted when its check finishes.", "collections": ["earth.cirrus.check.note", "earth.cirrus.check.withblob"] From f2bd9c3b1abe5805175111d3f630f68d94c742fa Mon Sep 17 00:00:00 2001 From: Matt Kane Date: Tue, 1 Sep 2026 17:25:08 +0100 Subject: [PATCH 2/3] Fix JSON syntax for 'key' in earth.cirrus.check.space.json --- .../probe-lexicons/earth.cirrus.check.space.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json b/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json index 8acb874..3a66e67 100644 --- a/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json +++ b/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json @@ -5,7 +5,7 @@ "defs": { "main": { "type": "space", - "key:":"literal:probe", + "key:": "literal:probe", "name": "Conformance probe space", "description": "Ephemeral probe spaces created by the @getcirrus/space-conformance suite (check.cirrus.earth). Each is created with a run-unique key and deleted when its check finishes.", "collections": ["earth.cirrus.check.note", "earth.cirrus.check.withblob"] From e83b1022e9f4f0930850000759491029ed24ea6c Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Tue, 1 Sep 2026 21:33:27 +0200 Subject: [PATCH 3/3] Fix typo, use key type any instead of literal --- .../probe-lexicons/earth.cirrus.check.space.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json b/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json index 3a66e67..e7dd85d 100644 --- a/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json +++ b/packages/space-conformance/probe-lexicons/earth.cirrus.check.space.json @@ -5,10 +5,13 @@ "defs": { "main": { "type": "space", - "key:": "literal:probe", + "key": "any", "name": "Conformance probe space", "description": "Ephemeral probe spaces created by the @getcirrus/space-conformance suite (check.cirrus.earth). Each is created with a run-unique key and deleted when its check finishes.", - "collections": ["earth.cirrus.check.note", "earth.cirrus.check.withblob"] + "collections": [ + "earth.cirrus.check.note", + "earth.cirrus.check.withblob" + ] } } -} +} \ No newline at end of file