@samatawy/rules
    Preparing search index...

    Interface ObjectArrayType

    A defined array type that can contain objects

    interface ObjectArrayType {
        type: "array";
        inherits?: string;
        items?: ObjectType;
    }
    Index

    Properties

    Properties

    type: "array"
    inherits?: string

    The key of another root type to inherit properties from, if any. This allows for type reuse and extension in array item definitions.

    items?: ObjectType

    The properties of the array items, if they are objects. This allows for defining the structure of objects within arrays and supports nested types.