JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GeographicSiteRelationship_FVO",
"title": "GeographicSiteRelationship_FVO",
"allOf": [
{
"$ref": "#/components/schemas/Extensible_FVO"
},
{
"type": "object",
"properties": {
"href": {
"type": "string",
"description": "Reference of the related geographic site"
},
"role": {
"type": "string",
"description": "Role of the related site in the relationship"
},
"validFor": {
"$ref": "#/components/schemas/TimePeriod"
},
"id": {
"type": "string",
"description": "Unique identifier of the related site entity within the server"
},
"relationshipType": {
"type": "string",
"description": "Type of relationship"
}
},
"required": [
"id",
"relationshipType"
]
}
],
"discriminator": {
"propertyName": "@type",
"mapping": {
"GeographicSiteRelationship": "#/components/schemas/GeographicSiteRelationship_FVO"
}
}
}