Skip to content

Commit

Permalink
Fix broken table formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
expede committed Oct 16, 2023
1 parent ab96081 commit ff98d47
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,17 +382,19 @@ Receipts MUST use the same-or-higher version number as the [Invocation] that the
## 4.2 Receipt Payload
| Field | Type | Required | Description |
|-------|---------------------------|----------|------------------------------------------------------------------------------------|
| `ucr` | `SemVer` | Yes | The version of this spec that the Receipt conforms to |
| `iss` | `DID` | Yes | The DID of the Executor |
| `ran` | `&Invocation` | Yes | MUST be a link to the [Invocation] that the Receipt is for |
| `prf` | `[&Delegation]` | Yes | [Delegation] proof chain if the Executor was not the `aud` of the `ran` Invocation |
| `out` | `Result` | Yes | MUST contain the value output of the invocation in [Result] format |
| `enq` | `[&Task]` | Yes | Further [Task]s that the [Invocation] would like to enqueue |
| `mta` | `{String : Any}` | Yes | Additional data about the receipt |
| `rec` | `&Receipt` | No | Recursive `Receipt`s if the Invocation was proxied to another Executor |
| `iat` | `Integer | null`[^js-num] | No | The UTC Unix timestand at which the Receipt was issed |
Receipt Payloads MUST conform to the following shape:
| Field | Type | Required | Description |
|-------|--------------------|----------|------------------------------------------------------------------------------------|
| `ucr` | `SemVer` | Yes | The version of this spec that the Receipt conforms to |
| `iss` | `DID` | Yes | The DID of the Executor |
| `ran` | `&Invocation` | Yes | A link to the [Invocation] that the Receipt is for |
| `prf` | `[&Delegation]` | Yes | [Delegation] proof chain if the Executor was not the `aud` of the `ran` Invocation |
| `out` | `Result` | Yes | The value output of the invocation in [Result] format |
| `enq` | `[&Task]` | Yes | Further [Task]s that the [Invocation] would like to enqueue |
| `mta` | `{String : Any}` | Yes | Additional data about the receipt |
| `rec` | `&Receipt` | No | Recursive `Receipt`s if the Invocation was proxied to another Executor |
| `iat` | `Integer`[^js-num] | No | The UTC Unix timestand at which the Receipt was issed |

Check failure on line 397 in README.md

View workflow job for this annotation

GitHub Actions / spellcheck

Misspelled word

Misspelled word "timestand". Suggested alternatives: "time stand", "time-stand", "timestamp" If you want to ignore this message, add timestand to the ignore file at .github/workflows/words-to-ignore.txt

Check failure on line 397 in README.md

View workflow job for this annotation

GitHub Actions / spellcheck

Misspelled word

Misspelled word "issed". Suggested alternatives: "dissed", "issued", "missed", "pissed", "hissed", "kissed", "disses" If you want to ignore this message, add issed to the ignore file at .github/workflows/words-to-ignore.txt
A few of these fields warrant further comment below.
Expand Down

0 comments on commit ff98d47

Please sign in to comment.