f3-schemas/object.json
2023-09-20 09:34:10 +02:00

36 lines
848 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://lab.forgefriends.org/friendlyforgeformat/f3-schemas/-/blob/v1.0/object.json",
"$$target": "object.json"
}