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": { "createdAt": {
"type": "integer", "type": "integer",
"description": "The time (in ms since POSIX epoch) when was created.", "description": "The time (in ms since POSIX epoch) when was created.",

View file

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