# PropertyName Decorator jsonMapper schema property deprecated

Module
import { PropertyName } from "@tsed/common"
Source/packages/common/src/jsonschema/decorators/propertyName.ts

# Overview

function PropertyName(name: string): Function;

# Description

Create an alias of the propertyKey that must be used by the json mapper and json schema.

WARNING

This decorator will be removed in v6 in favor of from @tsed/schema. For v5 user, use decorator from @tsed/common or @tsed/swagger then in v6 switch to @tsed/schema.

# Example

class Model {
   @Name('aliasProp')
   property: string[];
}
1
2
3
4