I can't find anywhere how can i add the panel of an operator in the Speaker properties data tab only. it appears in all other objects data tab and i can't find a context list
class HelloWorldPanel(bpy.types.Panel):
"""Creates a Panel in the Object properties window"""
bl_label = "Hello World Panel"
bl_idname = "OBJECT_PT_hello"
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = "data"
Thank you.
