public static func create (id : UInt8, isIterable : Bool, isTypedIterable: Bool, sizeIdentifier : XyoObjectSize) -> XyoObjectSchema {
        let iterableByte : UInt8 = getIterableByte(isIterable : isIterable)
        let isTypedIterableByte : UInt8 = getIsTypedByte(isTyped : isTypedIterable)
        let sizeIdentifierByte : UInt8 = getSizeIdentifierByte(sizeIdentifier : sizeIdentifier)
        let encodingCatalogue : UInt8 = iterableByte | isTypedIterableByte | sizeIdentifierByte