LC0061 - StefanMaron/BusinessCentral.LinterCop GitHub Wiki

Pages of type API must have the ODataKeyFields property set to the SystemId field.

It is highly recommended to always use the SystemId field for the ODataKeyFields property.
The SystemId field is immutable and will never change for a record.

page 50100 MyApiPage
{
    PageType = API;
    ODataKeyFields = "No."; // Pages of type API must have the 'ODataKeyFields' property set to the 'SystemId' field.   
}

External references