···11+namespace com.atproto.identity;
22+33+model IdentityInfo {
44+ did: string;
55+66+ @doc("The validated handle of the account; or 'handle.invalid' if the handle did not bi-directionally match the DID document.")
77+ handle: string;
88+99+ @doc("The complete DID document for the identity.")
1010+ didDoc: unknown;
1111+}
···11+namespace com.atproto.lexicon;
22+33+@doc("Representation of Lexicon schemas themselves, when published as atproto records. Note that the schema language is not defined in Lexicon; this meta schema currently only includes a single version field ('lexicon'). See the atproto specifications for description of the other expected top-level fields ('id', 'defs', etc).")
44+model Schema {
55+ @doc("Indicates the 'version' of the Lexicon language. Must be '1' for the current atproto/Lexicon schema system.")
66+ lexicon: int32;
77+}