Introduction
Les commentaires permettent de laisser des informations sur les Comptes ou Ecritures temporarires ou non.
[
{
"date": "31-12-2024",
"comment": "votre commentaires ...",
"user": {
"producerId": "1",
"firstName": "Didier",
"lastName": "Lemarchand"
}
}
]
Interfaces
TypeScript
```ts
export interface SimplifiedComment {
date: string;
comment: string;
user: {
producerId: string;
firstName: string;
lastName: string;
};
}
```
JSON Schema
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"date": {
"type": "string"
},
"comment": {
"type": "string"
},
"user": {
"additionalProperties": false,
"type": "object",
"properties": {
"producerId": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
}
},
"required": [
"producerId",
"firstName",
"lastName"
]
},
},
"required": [
"producerId",
"IBAN",
"BIC",
"journal"
]
}
```
(retour en haut de page)