Re: [dxwg] How to express available formats for a dcat:Dataservice (#1055)

Thanks @agreiner - indeed, each format corresponds with a `:Distribution`. 

There is no direct relationship from `:DataService` to `:Distribution` (see https://w3c.github.io/dxwg/dcat/#UML_DCAT_All_Attr) but I think the model is correct. 
So in order to indicate multiple formats you could do something like
```
my:DataProcessingService987 a dcat:DataService ;
    dcat:servesDataset [ a dcat:Dataset ;
        dcat:distribution [ a dcat:Distribution ;
            dcat:mediaType  <https://www.iana.org/assignments/media-types/text/csv> ;
        ] ;
        dcat:distribution [ a dcat:Distribution ;
            dcat:mediaType  <https://www.iana.org/assignments/media-types/text/turtle> ;
        ] ;
        dcat:distribution [ a dcat:Distribution ;
            dcat:mediaType  <https://www.iana.org/assignments/media-types/application/json> ;
        ] ;
    ] ;
.
```

-- 
GitHub Notification of comment by dr-shorthair
Please view or discuss this issue at https://github.com/w3c/dxwg/issues/1055#issuecomment-530182432 using your GitHub account

Received on Wednesday, 11 September 2019 01:35:21 UTC