{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocationTranslationPatternCreateRequest", "title": "LocationTranslationPatternCreateRequest", "type": "object", "required": [ "name", "matchingPattern", "replacementPattern" ], "properties": { "name": { "type": "string", "example": "CHNHelpDesk", "description": "A name given to a translation pattern for a location." }, "matchingPattern": { "type": "string", "example": "+91[2-7]XX21", "description": "A matching pattern given to a translation pattern for a location." }, "replacementPattern": { "type": "string", "example": "+91352133", "description": "A replacement pattern given to a translation pattern for a location." } } }