{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-schema/investment-api-user-identifier-create-schema.json", "title": "UserIdentifierCreate", "description": "Request body for creating a user identifier.", "type": "object", "properties": { "type": { "type": "string", "description": "The type of external identifier.", "example": "standard" }, "value": { "type": "string", "description": "The identifier value.", "example": "example-value" } }, "required": [ "type", "value" ] }