# SWICG Issue Triage - 2024-05-01 Present: - Evan Prodromou @evan@cosocial.ca - [Dmitri Zagidulin](https://github.com/DmitriZagidulin) - [Ted Thibodeau](https://github.com/TallTed/) (he/him) ([OpenLink Software](https://www.openlinksw.com/)) - [Tantek Çelik](https://github.com/tantek) - [a](https://trwnh.com) - [Al Abut](https://github.com/alabut) ## ActivityPub issues ## Activity Streams 2.0 issues ### relationship in JSON-LD context document should use @type: @vocab https://github.com/w3c/activitystreams/issues/593 Discussion: - a: this should be like a reified statement ``` { "@context": [ "https://www.w3.org/ns/activitystreams", "isInfluencedBy": "http://purl.org/vocab/relationship/influencedBy" ], "id": "https://example.com/Sally", "isInfluencedBy": "https://example.org/Bob" } ``` ``` { "@context": [ "https://www.w3.org/ns/activitystreams", "isInfluencedBy": "http://purl.org/vocab/relationship/isInfluencedBy" ], "id": "https://example.com/relationship/1", "subject": "https://example.org/Bob", "relationship": "isInfluencedBy", "object": "https://example.org/Bob" } ``` Right now the `isInfluencedBy` term does not work. If we change to ``"@type": "@vocab"``, we can use defined terms for ``"relationship"``. Decision: - Next version ### `url` is `@type: @id` which precludes use of `xsd:anyURI` values https://github.com/w3c/activitystreams/issues/596 Discussion in issue Decision: - Next version - Primer page update ### `href` should be `@type: xsd:anyURI` in the context document https://github.com/w3c/activitystreams/issues/595 Discussion - evan: it leaves open the possibility of an infinite tower of `href`s. It should be changed as it clearly doesn't match the spec Decision - PR needs group input https://github.com/w3c/activitystreams/pull/597 ### Expand the domain of `closed` https://github.com/w3c/activitystreams/issues/594 Discussion: - evan: it shouldn't hurt to relax the restriction Decision: - next version - decriminalize it until we can legalize it ### Other Discussion