2055 description

https://forgefed.peers.community/nsdescription

JSON

Inbox

Definition

Specifies the description text of a Commit, which is an optional possibly multi-line text provided in addition to the one-line commit title. The range of the description property works the same way the range of the ActivityPub source property works.
see 4

Example

```json { "@context": [ "https://www.w3.org/ns/activitystreams", "https://forgefed.peers.community/ns" ], "id": "https://example.dev/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "type": "Commit", "context": "https://example.dev/alice/myrepo", "attributedTo": "https://example.dev/bob", "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c", "created": "2019-07-11T12:34:56Z", "summary": "Add an installation script, fixes issue #89",

"description": {
    "mediaType": "text/plain",
    "content": "It's about time people can install on their computers!"
},

}```