{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SocialContactMedium",
"title": "SocialContactMedium",
"allOf": [
{
"$ref": "#/components/schemas/ContactMedium"
},
{
"type": "object",
"description": "Describes a social media identifier that could be used to contact a party (an individual or an organization)",
"properties": {
"socialNetworkId": {
"type": "string",
"description": "Identifier as a member of a social network"
}
}
}
]
}