# The delta document format for curational writeback. # This document is POSTed to the server which responds with a mapping # document. default namespace = "http://biodas.org/documents/das2" include "das2_schemas.rnc" start = writeback writeback = element WRITEBACK { common_attrs, element MESSAGE { text }, # The delete block comes first. Inside the delete block the # features must be listed first and the feature types listed second. deletes?, # The feature type block comes next, with the newly created and # the updated types. types?, # The feature block comes last, with the newly created and the # updated features. If a feature is part of a complex annotation # then all features in the annotation must be included. features? } deletes = element DELETES { common_attrs, delete* } delete = element DELETE { common_attrs, # The URI of the feature or a feature type to delete. uri }