blob: 7356f3ac2fe3e1ea5706645fb074e9fc51ba4f19 [file] [log] [blame]
Sapan Bhatiace657e62017-04-21 14:20:41 +02001option name = "exampleservice";
2option verbose_name = "Example Service";
3
4message ExampleService (Service){
5 required string service_message = 1 [help_text = "Service Message to Display", max_length = 254, null = False, db_index = False, blank = False];
6}
7
8
Scott Bakerffac7182017-07-27 15:21:30 -07009message ExampleServiceInstance (TenantWithContainer){
10 option name = "exampleserviceinstance";
11 option verbose_name = "Example Service Instance";
Sapan Bhatiace657e62017-04-21 14:20:41 +020012 required string tenant_message = 1 [help_text = "Tenant Message to Display", max_length = 254, null = False, db_index = False, blank = False];
13}