···501501502502/// Get a single record from a repository. Does not require auth.
503503///
504504-/// A **record key** (rkey) is used to name and reference an individual record
505505-/// withing the same collection of an repository.
506506-///
507504/// You can use projects like [Slingshot](https://slingshot.microcosm.blue)
508505/// for easy access to cached data.
509506///
···724721/// ## Body
725722///
726723/// - **collection**: The NSID of the record collection.
727727-/// - **record**
728724/// - **repo**: The handle or DID of the repo (aka, current account).
729725/// - **rkey**: The Record Key.
730726/// - **swapCommit**: Compare and swap with the previous commit by CID.
731727/// - **swapRecord**: Compare and swap with the previous record by CID.
732732-/// WARNING: nullable and optional field;
733733-/// - **validate**: Can be set to `false` to skip Lexicon schema validation
734734-/// of record data, 'true' to require it, or leave unset to validate only
728728+/// - **validate**: Can be set to `option.Some(False)` to skip Lexicon schema validation
729729+/// of record data, `option.Some(True)` to require it, or leave unset to validate only
735730/// for known Lexicons.
736731///
737732/// ## Examples