Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ReceiptKind

Type: string

ReceiptKind classifies whether a CreateProcess response was freshly assembled or is the retained receipt of an earlier accepted request.

Values: unspecified: unspecified is not a concrete classification; a backend or a client generated before this field existed reports or reads this. It asserts neither freshness nor replay. fresh: fresh means this Process was assembled for this specific accepted request; last_stream_sequence reflects live state as of that acceptance. replay: replay means the backend returned the retained result of an earlier accepted request under the synchronous mutation replay rule; last_stream_sequence is frozen at the value observed during that original acceptance.

All schema constraints and annotations
{
  "description": "ReceiptKind classifies whether a CreateProcess response was freshly assembled or\nis the retained receipt of an earlier accepted request.\n\nValues:\nunspecified: unspecified is not a concrete classification; a backend or a client generated before this field existed reports or reads this. It asserts neither freshness nor replay.\nfresh: fresh means this Process was assembled for this specific accepted request; last_stream_sequence reflects live state as of that acceptance.\nreplay: replay means the backend returned the retained result of an earlier accepted request under the synchronous mutation replay rule; last_stream_sequence is frozen at the value observed during that original acceptance.",
  "enum": [
    "unspecified",
    "fresh",
    "replay"
  ],
  "title": "ReceiptKind",
  "type": "string"
}