@@ -686,6 +686,7 @@ share
686
686
json Text sqltype=jsonb
687
687
bytes ByteString sqltype=bytea
688
688
warning Text Maybe
689
+ isValid Bool Maybe
689
690
UniqueOffChainVoteData votingAnchorId hash
690
691
deriving Show
691
692
@@ -695,6 +696,7 @@ share
695
696
witnessAlgorithm Text
696
697
publicKey Text
697
698
signature Text
699
+ warning Text Maybe
698
700
699
701
OffChainVoteReference
700
702
offChainVoteDataId OffChainVoteDataId noreference
@@ -1322,9 +1324,45 @@ schemaDocs =
1322
1324
\ decribed in CIP-100. New in 13.2-Conway."
1323
1325
OffChainVoteDataVotingAnchorId # " The VotingAnchor table index this offchain data refers."
1324
1326
OffChainVoteDataHash # " The hash of the offchain data."
1327
+ OffChainVoteDataLanguage # " The langauge described in the context of the metadata. Described in CIP-100. New in 13.3-Conway."
1328
+ OffChainVoteDataComment # " The title of the metadata. Described in CIP-108. New in 13.3-Conway."
1329
+ OffChainVoteDataAbstract # " The abstract of the metadata. Described in CIP-108. New in 13.3-Conway."
1330
+ OffChainVoteDataMotivation # " The motivation of the metadata. Described in CIP-108. New in 13.3-Conway."
1331
+ OffChainVoteDataRationale # " The rationale of the metadata. Described in CIP-108. New in 13.3-Conway."
1325
1332
OffChainVoteDataJson # " The payload as JSON."
1326
1333
OffChainVoteDataBytes # " The raw bytes of the payload."
1327
1334
OffChainVoteDataWarning # " A warning that occured while validating the metadata."
1335
+ OffChainVoteDataIsValid
1336
+ # " False if the data is found invalid. db-sync leaves this field null \
1337
+ \since it normally populates off_chain_vote_fetch_error for invalid data. \
1338
+ \It can be used manually to mark some metadata invalid by clients."
1339
+
1340
+ OffChainVoteAuthor --^ do
1341
+ " The table with offchain metadata authors, as decribed in CIP-100. New in 13.3-Conway."
1342
+ OffChainVoteAuthorOffChainVoteDataId # " The OffChainVoteData table index this offchain data refers."
1343
+ OffChainVoteAuthorName # " The name of the author."
1344
+ OffChainVoteAuthorWitnessAlgorithm # " The witness algorithm used by the author."
1345
+ OffChainVoteAuthorPublicKey # " The public key used by the author."
1346
+ OffChainVoteAuthorSignature # " The signature of the author."
1347
+ OffChainVoteAuthorWarning # " A warning related to verifying this metadata."
1348
+
1349
+ OffChainVoteReference --^ do
1350
+ " The table with offchain metadata references, as decribed in CIP-100. New in 13.3-Conway."
1351
+ OffChainVoteReferenceOffChainVoteDataId # " The OffChainVoteData table index this entry refers."
1352
+ OffChainVoteReferenceLabel # " The label of this vote reference."
1353
+ OffChainVoteReferenceUri # " The uri of this vote reference."
1354
+ OffChainVoteReferenceHashDigest
1355
+ # " The hash digest of this vote reference, as described in CIP-108. \
1356
+ \This only appears for governance action metadata."
1357
+ OffChainVoteReferenceHashAlgorithm
1358
+ # " The hash algorithm of this vote reference, as described in CIP-108. \
1359
+ \This only appears for governance action metadata."
1360
+
1361
+ OffChainVoteExternalUpdate --^ do
1362
+ " The table with offchain metadata external updates, as decribed in CIP-100. New in 13.3-Conway."
1363
+ OffChainVoteExternalUpdateOffChainVoteDataId # " The OffChainVoteData table index this entry refers."
1364
+ OffChainVoteExternalUpdateTitle # " The title of this external update."
1365
+ OffChainVoteExternalUpdateUri # " The uri of this external update."
1328
1366
1329
1367
OffChainVoteFetchError --^ do
1330
1368
" Errors while fetching or validating offchain Voting Anchor metadata. New in 13.2-Conway."
0 commit comments