24 lines
650 B
Go
24 lines
650 B
Go
package npcs
|
|
|
|
type extractionResponse struct {
|
|
NPCs []npcResponse `json:"npcs"`
|
|
}
|
|
|
|
type npcResponse struct {
|
|
Name string `json:"name"`
|
|
Aliases []string `json:"aliases"`
|
|
Description string `json:"description"`
|
|
Relationships []npcRelationshipResponse `json:"relationships"`
|
|
SourceRefs []npcSourceRefResponse `json:"source_refs"`
|
|
}
|
|
|
|
type npcRelationshipResponse struct {
|
|
Target string `json:"target"`
|
|
Relationship string `json:"relationship"`
|
|
}
|
|
|
|
type npcSourceRefResponse struct {
|
|
StartUnitID int `json:"start_unit_id"`
|
|
EndUnitID int `json:"end_unit_id"`
|
|
}
|