# Content types For chatting, we'll need a content type for conversations and messages. Create a `content.py` file in your application and create the content types. ```python from guillotina import configure, content, Interface, schema class IConversation(Interface): users = schema.List( value_type=schema.TextLine() ) @configure.contenttype( type_name="Conversation", schema=IConversation, behaviors=["guillotina.behaviors.dublincore.IDublinCore"], allowed_types=['Message']) class Conversation(content.Folder): pass class IMessage(Interface): text = schema.Text(required=True) @configure.contenttype( type_name="Message", schema=IMessage, behaviors=[ "guillotina.behaviors.dublincore.IDublinCore", "guillotina.behaviors.attachment.IAttachment" ]) class Message(content.Item): pass ``` In order for Guillotina to detect your configuration, you'll need to add a scan call inside your `includeme` function in the `__init__.py` file. ```python configure.scan('guillotina_chat.content') ``` ## Test it out Open up Postman and test creating a conversation and message instead of it.