2041 TicketDependency

https://forgefed.peers.community/nsTicketDependency

JSON

Inbox

Definition

Represents a relationship between 2 Tickets, in which the resolution of one ticket requires the other ticket to be resolved too. It MUST specify the subject, object and relationship properties, and the relationship property MUST be dependsOn.
see 3

Example

json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "type": ["Relationship", "TicketDependency"], "id": "https://example.dev/ticket-deps/2342593", "attributedTo": "https://example.dev/alice", "summary": "Alice's ticket depends on Bob's ticket", "published": "2019-07-11T12:34:56Z", "subject": "https://example.dev/alice/myproj/issues/42", "relationship": "dependsOn", "object": "https://dev.community/bob/coolproj/issues/85" }