From fef4f4b39fe4a0cf3e2a0dadf51d7c3b6728da38 Mon Sep 17 00:00:00 2001 From: Joseph Lisee Date: Thu, 7 Feb 2019 16:28:44 -0500 Subject: [PATCH] Docs and gitignore cleanups (#308) We were using the old schema in the docs, and `.gitignore` blocked making changes to the test data. --- .gitignore | 2 +- docs/protocol-schema/session-protocol.md | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index c55531171..112d9c2a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -data +/data node_modules dist diff --git a/docs/protocol-schema/session-protocol.md b/docs/protocol-schema/session-protocol.md index ddc158cfd..a17e166a7 100644 --- a/docs/protocol-schema/session-protocol.md +++ b/docs/protocol-schema/session-protocol.md @@ -178,16 +178,15 @@ has just the single `/object/polygon` containing a "updates": [ { "timestamp": 1001.3, - "primitives": [ - { - "name": "/object/polygon", - "primitives": [ + "primitives": { + "/object/polygon": { + "polygons": [ { "vertices": [[9, 15, 3], [20, 13, 3], [20, 5, 3]] } ] } - ] + } } ] }