stam 0.18.7

STAM is a powerful library for dealing with stand-off annotations on text. This is the Rust library.
Documentation
{
  "@type": "AnnotationDataSet",
  "@id": "https://example.org/test/",
  "keys": [
    {
      "@type": "DataKey",
      "@id": "pos"
    }
  ],
  "data": [
    {
      "@type": "AnnotationData",
      "@id": "PosNoun",
      "key": "pos",
      "value": {
        "@type": "String",
        "value": "noun"
      }
    },
    {
      "@type": "AnnotationData",
      "@id": "PosVerb",
      "key": "pos",
      "value": {
        "@type": "String",
        "value": "verb"
      }
    },
    {
      "@type": "AnnotationData",
      "@id": "PosInterjection",
      "key": "pos",
      "value": {
        "@type": "String",
        "value": "interjection"
      }
    }
  ]
}