SpecificAssetIdNameMatchesGlobalAssetId🔗

Type: Pattern verification
Check whether name is the reserved global asset ID key.

Code

pattern = (
    '^[gG][lL][oO][bB][aA][lL][aA][sS][sS][eE][tT][iI][dD]$'
)
return match(
    pattern,
    name
) is not None