diff --git a/da/outvertex.md b/da/outvertex.md
new file mode 100644
index 0000000000000000000000000000000000000000..9ea65839fa9d06d9c5815aeb78e0bca2647e59b1
--- /dev/null
+++ b/da/outvertex.md
@@ -0,0 +1,29 @@
+Valid on frames: **Edge**
+
+Allowed prefixes when operation is AUTO: `get`
+
+The `@OutVertex` takes no parameters and is used only on get methods that themself take no parameters. It specifies the `VertexFrame` at the tail of an edge.
+
+example:
+
+```java
+@OutVertex
+//Method declared here
+```
+
+## GET Operation
+
+Valid method signatures: `( )`
+
+### Signature: `( )`
+
+Valid return types: `VertexFrame`.
+
+Get the tail vertex of the edge.
+
+example:
+
+```java
+@OutVertex
+BarVertex getFoobar();
+```
\ No newline at end of file