The sequence extension has the constraint "MUST be a non-empty lexicographically-orderable string"
The sequencetype integer defines the sequence as "string-encoded signed 32-bit Integers". I would assume that this does NOT include leading zeros. E.g., 2 is encoded as "2", 10 is encoded as "10".
Given the assumption about leading zeros is correct, this would conflict the "lexicographically-orderable string" requirement from the sequence. Lexicographically, "2" is greater than "10" => should the "lexicographically-orderable" requirement be removed or reduced to a recommendation?
Maybe I am also off track or over dramatizing, let me know :)
The
sequenceextension has the constraint "MUST be a non-empty lexicographically-orderable string"The
sequencetypeintegerdefines thesequenceas "string-encoded signed 32-bit Integers". I would assume that this does NOT include leading zeros. E.g.,2is encoded as"2",10is encoded as"10".Given the assumption about leading zeros is correct, this would conflict the "lexicographically-orderable string" requirement from the
sequence. Lexicographically,"2"is greater than"10"=> should the "lexicographically-orderable" requirement be removed or reduced to a recommendation?Maybe I am also off track or over dramatizing, let me know :)