2024-03-04 14:59:47 +01:00
|
|
|
package data
|
|
|
|
|
|
|
|
type AnnotationsResponse struct {
|
|
|
|
Response struct {
|
|
|
|
Referent struct {
|
2024-03-04 20:43:46 +01:00
|
|
|
Annotations []struct {
|
|
|
|
Body Annotation `json:"body"`
|
|
|
|
} `json:"annotations"`
|
2024-03-04 14:59:47 +01:00
|
|
|
} `json:"referent"`
|
|
|
|
} `json:"response"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Annotation struct {
|
2024-03-04 20:43:46 +01:00
|
|
|
HTML string `json:"html"`
|
2024-03-04 14:59:47 +01:00
|
|
|
}
|