diff --git a/wsclient.module b/wsclient.module
index 03bfbe0..ee62b53 100644
--- a/wsclient.module
+++ b/wsclient.module
@@ -107,6 +107,31 @@ function wsclient_entity_property_info() {
       }
     }
   }
+
+  // Add in basic info about Web Service entities
+  $properties = &$info['wsclient_service']['properties'];
+
+  $properties['id'] = array(
+    'label' => t("Web Service ID"),
+    'type' => 'integer',
+    'description' => t("The unique ID of the Web Service."),
+    'schema field' => 'id',
+  );
+  $properties['name'] = array(
+    'label' => t("Machine-Name of the Service"),
+    'description' => t("The machine-readable name of the Web Service."),
+    'type' => 'text',
+    'schema field' => 'name',
+
+  );
+  $properties['label'] = array(
+    'label' => t("Web Service Name"),
+    'description' => t("The human-readable name of the Web Service."),
+    'type' => 'text',
+    'schema field' => 'label',
+  );
+
+
   return $info;
 }
 
