expanded xproto doc

Change-Id: I23747c6f2fc82864d36b2ad4587b7780b3063902
diff --git a/docs/README.md b/docs/README.md
index 33d173e..ffddd26 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,7 +1,11 @@
 # Models for CORD
 
-CORD adopts a model-based architecture, where XOS implements its
-modeling support. This guide describes the how models are expressed in
-XOS, and documents the XOS toolchain used to auto-generate various
+XOS implements a model-based service control plane for CORD.
+This guide describes the how models are expressed in XOS and
+documents the toolchain used to auto-generate various
 elements of CORD from these models.
 
+It also describes the role of Synchronizers in bridging the CORD data
+model with the backend components (e.g., VNFs, micro-services,
+SDN control apps) that implement CORD's service data plane.
+
diff --git a/docs/dev/xproto.md b/docs/dev/xproto.md
index 48f28ea..7a4745a 100644
--- a/docs/dev/xproto.md
+++ b/docs/dev/xproto.md
@@ -1,46 +1,365 @@
-# xproto
+# Defining Models in XOS
 
-xproto is a variant of Google Protobufs that incorporates XOS’ data modeling features. Its goal is to encode XOS data models and facilitate the generation of code that depends on those data models.
+XOS defines a language for specifying data models (_xproto_) and a tool chain for generating code based on the set of models (_xosgen_).
 
-In general, the goal of XOS data modeling is to abstract technology-independent information out of service implementations. An example of this is the database layer of XOS, which is implemented purely in xproto, and converted into Django data models at build time, but could also target a different technology, such as NoSQL.
+The xproto language is based on Google’s protocol buffers (protobufs), borrowing their syntax, but extending their semantics to express additional behavior. Although these extensions can be written in syntactically valid protobufs (using the protobuf option feature), the resulting model definitions are cumbersome and the semantics are under-specified. 
 
-In this chapter, we explain how to write xproto specs and how to use the xproto toolset to generate code. It is assumed that you are in a working CORD development environment. Please consult [this document](https://github.com/opencord/platform-install#creating-a-development-environment-on-you-machine) for instructions on how to bring one up. You do not need to bring up a full pod to use xproto, the frontend environment described in the linked document is sufficient.
+Whereas protobufs primarily facilitate one operation on models, namely, data serialization, xproto goes beyond protobufs to provide a framework for implementing custom operators. 
 
+Users are free to define models using standard protobufs instead of the xproto syntax, but doing so obscures the fact that packing new behavior into the options field renders protobuf’s semantics under-specified. Full details are given below, but as two examples: (1) xproto supports relationships (foreign keys) among objects defined by the models, and (2) xproto supports boolean predicates (policies) that can be applied to objects defined by the  models.
 
-## Generating code from an existing xproto file
+The xosgen tool chain generates code based on a set of models loaded into the XOS Core. This tool chain can be used to produce multiple targets, including:
 
-> NOTE: To work with `xproto` please setup the python virtual environment as describred [here](local_env.md)
+* Object Relation Mapping (ORM) – maps the data model onto a persistent database.
+* gRPC Interface – how all the other containers communicate with XOS Core.
+* TOSCA API – one of the UI/Views used to access CORD.
+* Security Policies – governs which principals can read/write which objects.
+* Synchronizer Framework – execution environment in which Ansible playbooks run.
+* Unit Tests – auto-generate API unit tests.
 
-Drop an xproto file in your working directory. You can copy and paste the following content into a file named `slice.xproto`.
+The next two sections describe xproto (first the models and then policies that can be applied to the models), and the following section describes xosgen and how it can be used to generate different targets.
+
+## Models
+
+The xproto syntax for models is based on Google Protobufs. This means that any protobuf file also qualifies as xproto. We currently use the Protobuf v2 syntax. For example, the file below specifies a model that describes container images:
 
 ```protobuf
-message Slice (PlCoreBase){
+message Image {
+     required string name = 1 [db_index = False, max_length = 256, null = False, content_type = "stripped", blank = False];
+     required string kind = 2 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'))", max_length = 30, blank = False, null = False, db_index = False];
+     required string disk_format = 3 [db_index = False, max_length = 256, null = False, content_type = "stripped", blank = False];
+     required string container_format = 4 [db_index = False, max_length = 256, null = False, content_type = "stripped", blank = False];
+     optional string path = 5 [max_length = 256, content_type = "stripped", blank = True, help_text = "Path to image on local disk", null = True, db_index = False];
+     optional string tag = 6 [max_length = 256, content_type = "stripped", blank = True, help_text = "For Docker Images, tag of image", null = True, db_index = False];
+}
+```
+
+We use standard protobuf scalar types, for example: `int32`, `uint32`, `string`, `bool`, and `float`.
+
+xproto contains several extensions, encoded as Protobuf options, which the xosgen toolchain recognizes at the top level. The xproto extensions to Google Protobufs are as follows.
+
+### Inheritance
+
+Inheritance instructs the xproto processor that a model inherits the fields of a set of base models. These base model fields are not copied into the derived model automatically. However, the fields can be accessed in an xproto target.
+
+- xproto
+  ```protobuf
+  message EC2Instance (Instance, EC2Object) {
+        // EC2Instance inherits the fields of  Instance
+  }
+  ```
+
+- protobuf
+  ```protobuf
+  message EC2Instance  {
+        option bases = "Instance,EC2Object"
+  }
+  ```
+
+### Links
+
+Links are references to one model from another. A link specifies the type of the reference (manytoone, manytomany, onetomany, or onetoone), name of the field that contains the reference (_slice_ in the following example), its type (e.g., _Slice_), the name of the field in the peer model that points back to the current model, and a “through” field, specifying a model declared separately as an xproto message, that stores properties of the link.
+
+- xproto
+  ```protobuf
+  message Instance {
+        required manytoone slice:Slice->instances = 1;
+  }
+  ```
+
+- protobuf
+  ```protobuf
+  message Instance {
+        required int32 slice = 1 [model="Slice", link="manytoone", src_port="slice", dst_port="instances"];
+  }
+  ```
+
+The example shown below illustrates a manytomany link from Image to Deployment, which goes through the model `ImageDeployments`:
+
+- xproto
+  ```protobuf
+  required manytomany deployments->Deployment/ImageDeployments:images = 7 [help_text = "Select which images should be instantiated on this deployment", null = False, db_index = False, blank = True];
+  ```
+
+- Protobuf
+  ```protobuf
+  required int32 deployments = 7 [help_text = "Select which images should be instantiated on this deployment", null = False, db_index = False, blank = True, model="Deployment", through="ImageDeployments", dst_port="images", link="manytomany"];
+  ```
+
+### Access Policies
+
+Associates a policy (a boolean expression) with a model  to control access to instances of that model. How policies (e.g., `slicle_policy`) are specified is described below.
+
+```protobuf
+message Slice::slice_policy (XOSBase) {
+…
+}
+```
+
+### Model Options
+
+Options declare information about models. They can be declared for individual models, or at the top level in the xproto definition, in which case they are inherited by all of the models in that definition.
+
+```protobuf
+option app_label = "core";
+```
+
+Currently supported model options include: `app_label`, `skip_init`, `skip_django`, `tosca_description`, `validators`, `plural`, `singular`, and `gui_hidden`.
+
+### Field Options
+
+Options are also supported on a per-field basis. The following lists the currently available field options.
+
+The null option specifies whether a field has to be set or not (equivalent to annotating the field as `required` or `optional`):
+
+```protobuf
+option null = True
+```
+
+Help text describes a field:
+
+```protobuf
+option help_text = “Descriptive text goes here”;
+```
+
+The default value of the field:
+
+```protobuf
+option default = “Default value of field”;
+```
+
+The maximum length of a field whose type is string:
+
+```protobuf
+option max_length = 128;
+```
+
+Whether a field can be empty:
+
+```protobuf
+option blank = False;
+```
+
+A label to be used by the GUI display for this field:
+
+```protobuf
+option verbose_name = “Verbose name goes here”;
+```
+
+Do not display this field in the GUI (also available at the model level):
+
+```protobuf
+option gui_hidden = True;
+```
+
+The set of valid values for a field, where each inner-tuple specifies equivalence classes (e.g., vm is equivalent to Virtual Machine):
+
+```protobuf
+option choices = "(('vm', 'Virtual Machine'), ('container', 'Container'))";
+```
+
+Whether the field is an index field, that is, is used by database targets:
+
+```protobuf
+option db_index = True;
+```
+
+How to interpret/parse string fields:
+
+```protobuf
+option content_type = “stripped”;
+option content_type = “date”;
+option content_type = “url”;
+option content_type = “ip”;
+```
+
+Whether an assignment to a field is permitted, where the option setting is a named policy:
+
+```protobuf
+option validators = “port_validator:Slice is not allowed to connect to network”;
+```
+
+How policies (e.g., `port_validator`) are specified is described below.
+
+### Naming Conventions
+
+Model names should use _CamelCase_ without underscore. Model names should always
+be singular, never plural. For example: `Slice`, `Network`, `Site`.
+
+Sometimes a model is used to relate two other models, and
+should be named after the two models that it relates. For example, a model that
+relates the `Controller` and `User` models should be called `ControllerUser`.
+
+Field names use lower-case with underscores separating names. Examples of
+valid field names are: name, `disk_format`, `controller_format`.
+
+## Policies
+
+Policies are boolean expressions that can be associated with models. Consider two examples. In the first, `grant_policy` is a predicate applied to instances of the `Privilege` model. It is used to generate and inject security checks into the API.
+
+```protobuf
+policy grant_policy < ctx.user.is_admin
+                      | exists Privilege:Privilege.object_type = obj.object_type
+                        & Privilege.object_id = obj.object_id
+                        & Privilege.accessor_type = "User"
+                        & Privilege.accessor_id = ctx.user.id 
+                        & Privilege.permission = "role:admin" >
+    
+message Privilege::grant_policy (XOSBase) {
+     required int32 accessor_id = 1 [null = False];
+     required string accessor_type = 2 [null = False, max_length=1024];
+     required int32 controller_id = 3 [null = True];
+     required int32 object_id = 4 [null = False];  
+     required string object_type = 5 [null = False, max_length=1024];
+     required string permission = 6 [null = False, default = "all", max_length=1024];
+     required string granted = 7 [content_type = "date", auto_now_add = True, max_length=1024];
+     required string expires = 8 [content_type = "date", null = True, max_length=1024];
+}
+```
+
+The policy is executed relative to three implied inputs:
+
+* The object on which the policy is invoked (e.g., `obj.object_type`).
+* The context in which the policy is invoked (e.g., `cxt.user`).
+* The data model as a whole (e.g., `exists Privilege:Privilege.accessor_id = ctx.user.id`).
+
+Available context information includes the principal that invoked the operation (`ctx.user`) and the type of access that principal is requesting (`ctx.write_access` and `ctx.read_access`).
+
+A second example involves the `Port` model and two related policies, `port_validator` and `port_policy`. 
+
+```protobuf
+policy port_validator < (obj.instance.slice in obj.network.permitted_slices.all()) | (obj.instance.slice = obj.network.owner) | obj.network.permit_all_slices >
+policy port_policy < *instance_policy(instance) & *network_policy(network) >
+
+message Port::port_policy (XOSBase) {
+     option validators = "port_validator:Slice is not allowed to connect to network";
+     required manytoone network->Network:links = 1 [db_index = True, null = False, blank = False, unique_with = "instance"];
+     optional manytoone instance->Instance:ports = 2 [db_index = True, null = True, blank = True];
+     optional string ip = 3 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False];
+     optional string port_id = 4 [help_text = "Neutron port id", max_length = 256, null = True, db_index = False, blank = True];
+     optional string mac = 5 [help_text = "MAC address associated with this port", max_length = 256, null = True, db_index = False, blank = True];
+     required bool xos_created = 6 [default = False, null = False, db_index = False, blank = True];
+}
+```
+
+Similar to the previous example, `port_policy` is associated with the `Port` model, but unlike `grant_policy` shown above (which is an expression over a set of objects in the data model), `port_policy` is defined by reference to two other policies: `instance_policy` and `network_policy` (not shown). 
+
+This example also shows the use of _validators_, which enforce invariants on how objects of a given model are used. In this case, policy `port_validator` checks to make sure the slice associated with a given port is included in the set of permitted networks.
+
+Policy expressions may include the following operators:
+conjunction ( `&` ),
+disjunction ( `|` ),
+equality ( `=` ),
+negation ( `not` ),
+set membership ( `in` ),
+implication ( `->` ),
+qualifiers ( `exists`, `forall` ),
+sub-policy reference ( `* <policy name>` ),
+python escapes (`{{ python expression }}`).
+
+## Tool Chain
+
+The xosgen tool converts a xproto file into an intermediate representation and passes it to a target, which in turn generates the output code. The target has access to a library of auxiliary functions implemented in Python. The target itself is written as a jinja2 template. The following figure depicts the processing pipeline.
+
+<img src="toolchain.png" alt="Drawing" style="width: 500px;"/>
+
+### Intermediate Representation (IR)
+
+The IR is a representation of a parsed xproto file in the form of nested Python dictionaries. Here is a description of its structure.
+
+```protobuf
+"proto": {
+    "messages": [
+         {"name": "foo", fields: [{...}], links: [{...}], rlinks: [{...}], options: [{...}]}
+    ]
+},
+"context": {
+    "command line option 1": "value - see the --kv option of xosgen"
+},
+"options": {
+    "top level option 1": "value of option 1"
+}
+```
+
+### Library Functions
+
+xproto targets can use a set of library functions implemented in Python. These can be found in the file `lib.py` in the `genx/tool` directory. These functions are listed below:
+
+- `xproto_unquote(string)` Unquotes a string. For example, `"This is a help string"` is converted into `This is a help string.`  
+  
+- `xproto_singularize(field)` Converts an English plural into its singular. It is extracted from the `singular` option for a field if such an option is specified. Otherwise, it performs the conversion automatically using the library `pattern.en`.
+
+- `xproto_pluralize(field)` The reverse of `xproto_singularize`.
+
+### Targets
+
+A target is a template written in jinja2 that takes the IR as input and generates code (a text file) as output. Common targets are Python, Protobufs, unit tests, and so on. The following example shows how to generate a GraphViz dot file from a set of xproto specifications:
+
+```python
+digraph {
+{% for m in proto.messages -%}
+  {%- for l in m.links %}
+  {{ m.name }} -> {{ l.peer }};
+  {%- endfor %}
+{% endfor %}
+}
+```
+
+This template loops through all of the messages in a proto definition and then through the links in each message. For each link, it formats and outputs an edge in a graph in Graphviz dot notation.
+
+```
+{{ proto }}
+```
+
+This target simply prints the IR for an xproto definition.
+
+```python
+{% for m in proto.messages -%}
+{% for r in m.rlinks %}
+    def enumerate_{{ xos_singularize(r) }}_ids:
+        return map(lambda x:x['id'], {{ xos_pluralize(r) }})
+{% endfor %}
+{% endfor -%}
+```
+
+The example target outputs a Python function that enumerates the ids of the objects from which the current object is linked.
+
+### Running xosgen
+
+It is possible to run the xosgen tool chain directly. This is useful, for example, when developing a new target.
+
+To do do, first setup the python virtual environment as described [here](local_env.md). Then drop an xproto file in your working directory. For example, you can copy-and-paste the following content into a file named `slice.xproto`:
+
+```protobuf
+message Slice::slice_policy (XOSBase) {
+     option validators = "slice_name:Slice name ({obj.name}) must begin with site login_base ({ obj.site.login_base}), slice_name_length_and_no_spaces:Slice name too short or contains spaces, slice_has_creator:Slice has no creator";
+     option plural = "Slices";
+
      required string name = 1 [max_length = 80, content_type = "stripped", blank = False, help_text = "The Name of the Slice", null = False, db_index = False];
      required bool enabled = 2 [help_text = "Status for this Slice", default = True, null = False, db_index = False, blank = True];
-     required bool omf_friendly = 3 [default = False, null = False, db_index = False, blank = True];
-     required string description = 4 [help_text = "High level description of the slice and expected activities", max_length = 1024, null = False, db_index = False, blank = True];
+     required string description = 4 [help_text = "High level description of the slice and expected activities", max_length = 1024, null = False, db_index = False, blank = True, varchar = True];
      required string slice_url = 5 [db_index = False, max_length = 512, null = False, content_type = "url", blank = True];
      required manytoone site->Site:slices = 6 [help_text = "The Site this Slice belongs to", null = False, db_index = True, blank = False];
      required int32 max_instances = 7 [default = 10, null = False, db_index = False, blank = False];
      optional manytoone service->Service:slices = 8 [db_index = True, null = True, blank = True];
      optional string network = 9 [blank = True, max_length = 256, null = True, db_index = False, choices = "((None, 'Default'), ('host', 'Host'), ('bridged', 'Bridged'), ('noauto', 'No Automatic Networks'))"];
      optional string exposed_ports = 10 [db_index = False, max_length = 256, null = True, blank = True];
-     optional manytoone serviceClass->ServiceClass:slices = 11 [db_index = True, null = True, blank = True];
      optional manytoone creator->User:slices = 12 [db_index = True, null = True, blank = True];
      optional manytoone default_flavor->Flavor:slices = 13 [db_index = True, null = True, blank = True];
      optional manytoone default_image->Image:slices = 14 [db_index = True, null = True, blank = True];
      optional manytoone default_node->Node:slices = 15 [db_index = True, null = True, blank = True];
      optional string mount_data_sets = 16 [default = "GenBank", max_length = 256, content_type = "stripped", blank = True, null = True, db_index = False];
      required string default_isolation = 17 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False];
-     required manytomany tags->Tag = 18 [db_index = False, null = False, blank = True];
 }
 ```
-To generate a Django model starting from this file you can use:
-`xosgenx --target="django.xtarget" --output=. --write-to-file="model" --dest-extension="py" slice.xproto`
-This should generate a file called `slice.py` in your current directory. 
-If there were multiple files, then it would generate python Django models for each of them.
 
-The tool that processes xproto files and generates code is called `xosgenx`. You can print its syntax by running `xosgenx --help`.
+One of the existing targets is Django, which currently serves as the Object-Relational Mapping (ORM) tool used in CORD. To generate a Django model starting from this xproto file you can use:
+
+`xosgenx --target="django.xtarget" --output=. --write-to-file="model" --dest-extension="py" slice.xproto`
+
+This generates a file called `slice.py` in your current directory. If there were multiple files, then it generates python Django models for each of them.
+
+You can print the tool’s syntax by running `xosgenx --help`.
 
 ```
 usage: xosgenx [-h] [--rev] --target TARGET [--output OUTPUT] [--attic ATTIC]
@@ -69,199 +388,3 @@
                         Output file extension (if write-to-file is set to
                         single)
 ```
-
-
-## Writing an xproto file 
-
-xproto is based on Google Protobufs. This means that any protobuf file also qualifies as xproto. We currently use the Protobuf v2 syntax. For example, the file below specifies a model that describes container images:
-
-```protobuf
-message Image {
-     required string name = 1 [db_index = False, max_length = 256, null = False, content_type = "stripped", blank = False];
-     required string kind = 2 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'))", max_length = 30, blank = False, null = False, db_index = False];
-     required string disk_format = 3 [db_index = False, max_length = 256, null = False, content_type = "stripped", blank = False];
-     required string container_format = 4 [db_index = False, max_length = 256, null = False, content_type = "stripped", blank = False];
-     optional string path = 5 [max_length = 256, content_type = "stripped", blank = True, help_text = "Path to image on local disk", null = True, db_index = False];
-     optional string tag = 6 [max_length = 256, content_type = "stripped", blank = True, help_text = "For Docker Images, tag of image", null = True, db_index = False];
-}
-```
-
-xproto contains several extensions, encoded as Protobuf options, which the xproto toolchain recognizes at the top level. That is, these options are not declared explicitly in Protobuf syntax.
-
-
-## xproto extensions to Google Protobufs
-
-**Inheritance**
-
-- xproto
-  ```protobuf
-  message EC2Instance (Instance, EC2Object) {
-        // EC2Instance inherits the fields of  Instance
-  }
-  ```
-
-- protobuf
-  ```protobuf
-  message EC2Instance  {
-        option bases = "Instance,EC2Object"
-  }
-  ```
-
-Inheritance instructs the xproto processor that a model inherits the fields of a set of base models. Note that these base model fields are not copied into the derived model automatically. However, the fields can be accessed in an xproto target.
-
-**Links**
-
-- xproto
-  ```protobuf
-  message Instance {
-        required manytoone slice:Slice->instances = 1;
-  }
-  ```
-
-- protobuf
-  ```protobuf
-  message Instance {
-        required int32 slice = 1 [model="Slice", link="manytoone", src_port="slice", dst_port="instances"];
-  }
-  ```
-
-Links are references to one model from another. A link specifies the type of the reference (manytoone, manytomany, onetomany, or onetoone), name of the field that contains the reference (_slice_ in the above example), its type (Slice), the name of the field in the peer model that points back to the current model, and a “through” field, specifying a model declared separately as an xproto message, that stores properties of the link.
-
-The example below illustrates a manytomany link from Image to Deployment, which goes through the model “ImageDeployments”
-
-- xproto
-
-  ```protobuf
-  required manytomany deployments->Deployment/ImageDeployments:images = 7 [help_text = "Select which images should be instantiated on this deployment", null = False, db_index = False, blank = True];
-  ```
-
-
-- Protobuf
-
-  ```protobuf
-  required int32 deployments = 7 [help_text = "Select which images should be instantiated on this deployment", null = False, db_index = False, blank = True, model="Deployment", through="ImageDeployments", dst_port="images", link="manytomany"];
-  ```
-
-
-**Model options**
-
-```protobuf
-option name = "Name of service"
-option verbose_name = "Verbose name of service";
-option app_name = "Name of app containing service";
-```
-
-The above options declare information about models. They can be declared for models individually, or at the top level in the xproto definition, in which case they are inherited by all of the models in that definition.
-
-**Field options**
-
-The field options supported by the xproto processor are listed below.
-
-```protobuf
-option null = True/False
-```
-
-The null option specifies whether a field has to be set or not.
-
-```protobuf
-option help_text = “Descriptive text goes here”;
-```
-
-Help text describes a field.
-
-```protobuf
-option default = “Default value of field”;
-```
-
-The default value of the field.
-
-```protobuf
-option max_length = 128;
-```
-
-The maximum length of a field whose type is string.
-
-```protobuf
-option blank = False;
-```
-
-Whether a field can be empty.
-
-```protobuf
-option choices = "(('vm', 'Virtual Machine'), ('container', 'Container'))"
-```
-
-The set of valid values for a field. Each inner tuple specifies equivalence classes. E.g. vm is equivalent to Virtual Machine.
-
-```protobuf
-option db_index = True
-```
-
-Whether the field is an index field. Used by database targets.
-
-
-## The xproto toolchain: an overview 
-
-The figure below illustrates the processing of an xproto file. The xosgen tool converts the xproto file into an intermediate representation and passes it to a target, which in turn generates the output code. The target has access to a library of auxiliary functions implemented in Python. The target itself is written as a jinja2 template.
-
-![xproto toolchain](./toolchain.png)
-
-## The IR 
-
-The IR is a representation of a parsed xproto file in the form of nested Python dictionaries. Here is a description of its structure.
-
-```protobuf
-"proto": {
-    "messages": [
-         {"name": "foo", fields: [{...}], links: [{...}], rlinks: [{...}], options: [{...}]}
-    ]
-},
-"context": {
-    "command line option 1": "value - see the --kv option of xosgen"
-},
-"options": {
-    "top level option 1": "value of option 1"
-}
-```
-
-
-## Writing a target 
-
-A target is a template written in jinja2 that takes the IR described in the previous section as input and generates some code, such as Python, Protobufs, unit tests etc. We will take up a few examples. The example below generates a GraphViz dot file from a set of xproto representations:
-
-```python
-digraph {
-{% for m in proto.messages %}
-  {%- for l in m.links %}
-  {{ m.name }} -> {{ l.peer }};
-  {%- endfor %}
-{% endfor %}
-}```
-
-This target loops through all of the messages in a proto definition and through the links in each message. For each link, it formats and outputs an edge in a graph in Graphviz’ dot notation.
-
-```
-{{ proto }}
-```
-
-This target simply prints the IR for an xproto definition.
-
-```python
-{% for m in proto.messages -%}
-{% for r in m.rlinks %}
-    def enumerate_{{ xos_singularize(r) }}_ids:
-        return map(lambda x:x['id'], {{ xos_pluralize(r) }})
-{% endfor %}
-{% endfor -%}
-```
-
-The target above outputs a Python function that enumerates the ids of the objects from which the current object is linked.
-
-## Library functions
-
-xproto targets can use a set of library functions implemented in Python. These can be found in the file lib.py in the genx/tool directory. These functions are listed below
-
-- `xproto_unquote(string)` Unquotes a string. For example, `"This is a help string"` is converted into `This is a help string.`    
-- `xproto_singularize(field)` Converts an english plural into its singular. It is extracted from the `singular` option for a field if such an option is specified, otherwise, it performs the conversion automatically using the library `pattern.en`.
-- `xproto_pluralize(field)` The reverse of xproto_singularize.
-