Axinom Mosaic Libraries
    Preparing search index...

    Interface DeclareEntityDefinitionCommand

    Declare entity definition command schema.

    interface DeclareEntityDefinitionCommand {
        description: string;
        entity_field_definitions: EntityFieldDefinition[];
        entity_type: string;
        is_archived?: boolean;
        service_id: string;
        title: string;
    }
    Index

    Properties

    description: string

    A description of the entity definition.

    entity_field_definitions: EntityFieldDefinition[]

    An array of field definitions that belong to this entity definition.

    entity_type: string

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

    is_archived?: boolean

    Set to true if definition should be archived, and send a separate delete command after the definition is archived.

    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.