Fix: addedAt schema

This commit is contained in:
Nicholas Wallace 2024-03-01 23:39:03 +00:00
parent 02a4014342
commit dba872334a
2 changed files with 9 additions and 0 deletions

View file

@ -718,6 +718,11 @@
}
]
},
"addedAt": {
"type": "integer",
"description": "The time (in ms since POSIX epoch) when added to the server.",
"example": 1633522963509
},
"createdAt": {
"type": "integer",
"description": "The time (in ms since POSIX epoch) when was created.",

View file

@ -2,6 +2,10 @@
* @openapi
* components:
* schemas:
* addedAt:
* type: integer
* description: The time (in ms since POSIX epoch) when added to the server.
* example: 1633522963509
* createdAt:
* type: integer
* description: The time (in ms since POSIX epoch) when was created.