{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Link",
"title": "Link",
"description": "Reference path link to fetch more information about the specific entity.",
"properties": {
"entityName": {
"type": "string",
"description": "The name of the entity - ACCOUNT, VIEW, etc.",
"example": "ACCOUNT"
},
"methodType": {
"type": "string",
"description": "The method to use while calling the URL",
"example": "GET"
},
"url": {
"type": "string",
"description": "URL to access the endpoint.",
"example": "/accounts?accountId=10231749"
}
},
"required": [
"entityName",
"url"
]
}