{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"attributeId": {
"type": "string"
},
"attributeName": {
"type": "string"
},
"attributeValue": {
"type": "string"
},
"companyId": {
"type": "string"
},
"customValue": {
"type": "number"
},
"description": {
"type": "string"
},
"owner": {
"type": "string"
},
"ownerAttributeId": {
"type": "string"
},
"ownerAttributeName": {
"type": "string"
},
"periodFrom": {
"type": "integer"
},
"periodTo": {
"type": "integer"
},
"status": {
"type": "string"
},
"lastUpdated": {
"type": "object",
"properties": {
"updatedAt": {
"type": "string",
"format": "date-time"
},
"updatedBy": {
"type": "string"
}
},
"required": ["updatedAt", "updatedBy"]
}
},
"required": [
"attributeId",
"attributeName",
"attributeValue",
"companyId",
"customValue",
"description",
"owner",
"ownerAttributeId",
"ownerAttributeName",
"periodFrom",
"periodTo",
"status",
"lastUpdated"
]
} |