@oneblink/sdk
    Preparing search index...

    Type Alias NewFormSubmissionMetaEdit

    type NewFormSubmissionMetaEdit = {
        context: FormSubmissionMetaEditContext;
        dateTimeEdited: string;
        editedS3ObjectVersionId: string;
        formId: number;
        ipAddress?: string;
        key?: DeveloperKeyReference;
        s3: S3Configuration;
        submissionId: string;
        user?: UserProfile;
    }
    Index

    Properties

    Why this edit was submitted. Not stored on S3SubmissionData.

    dateTimeEdited: string

    The date and time (in ISO format) the edit was received by the submission service.

    editedS3ObjectVersionId: string

    The S3 VersionId of the canonical submission object being edited.

    Also distinguishes in-flight vs applied: the edit is still in flight while this value equals the live canonical VersionId. After the async submission service copies staging onto the canonical object, that VersionId changes and the edit is done. Used to reject stale edit requests when another edit has been applied or is in flight since they loaded the submission.

    formId: number

    The id of the OneBlink Form

    ipAddress?: string

    The IP Address of the requester. This cannot be trusted as the requester could change this.

    Information about the key that was used to edit the submission

    Configuration for where the staging edit data is stored

    submissionId: string

    The id of the submission being edited

    Information about the user that edited the submission