Axinom Mosaic Libraries
    Preparing search index...

    Interface EntityDefinitionDeclareFailedEvent

    Entity definition declare failed event schema.

    interface EntityDefinitionDeclareFailedEvent {
        description: string;
        details?: { [name: string]: unknown };
        entity_field_definitions: EntityFieldDefinition[];
        entity_type: string;
        message: string;
        service_id: string;
        title: string;
    }
    Index

    Properties

    description: string

    A description of the entity definition that was meant to be declared.

    details?: { [name: string]: unknown }

    Additional error details.

    entity_field_definitions: EntityFieldDefinition[]

    An array of field definitions that belong to entity definition that was meant to be declared.

    entity_type: string

    The string has a minimum length of one character and it cannot consist of only whitespace characters.

    message: string

    Message that describes the reason for the command processing failure.

    service_id: string

    The string has a minimum length of one character and it cannot consist of only whitespace characters.

    title: string

    The string has a minimum length of one character and it cannot consist of only whitespace characters.