1
0
Fork 0
golang-forgejo-f3-gof3/f3/schemas/object.json
Daniel Baumann 03bfe4079e
Adding upstream version 3.10.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-18 09:37:23 +02:00

35 lines
831 B
JSON

{
"title": "Object",
"description": "Meta information and reference to an opaque content such as an image. The unique identifier is the SHA-256 of the content of the object.",
"type": "object",
"additionalProperties": false,
"properties": {
"index": {
"description": "Unique identifier.",
"type": "string"
},
"mime": {
"description": "Mime type of the object.",
"type": "string"
},
"name": {
"description": "Human readable file name.",
"type": "string"
},
"description": {
"description": "Description.",
"type": "string"
}
},
"required": [
"index",
"mime",
"name",
"description"
],
"$schema": "http://json-schema.org/draft-04/schema#",
"$id": "https://code.forgejo.org/f3/f3-schemas/src/branch/main/object.json",
"$$target": "object.json"
}