2024-03-04 14:59:47 +01:00
|
|
|
package data
|
|
|
|
|
|
|
|
type AnnotationsResponse struct {
|
|
|
|
Response struct {
|
|
|
|
Referent struct {
|
2024-09-18 14:34:20 +01:00
|
|
|
Annotations []Annotation `json:"annotations"`
|
2024-03-04 14:59:47 +01:00
|
|
|
} `json:"referent"`
|
|
|
|
} `json:"response"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Annotation struct {
|
2024-09-18 14:34:20 +01:00
|
|
|
Body struct {
|
|
|
|
HTML string `json:"html"`
|
|
|
|
} `json:"body"`
|
|
|
|
State string `json:"state"`
|
|
|
|
Verified bool `json:"verified"`
|
2024-03-04 14:59:47 +01:00
|
|
|
}
|