{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://serpens.app/schemas/aya-disk/v1/manifest.schema.json",
  "title": "Aya Disk Manifest v1",
  "allOf": [
    { "$ref": "./aya-file.schema.json" },
    { "type": "object", "properties": { "kind": { "const": "manifest" }, "data": { "type": "object", "additionalProperties": false, "required": ["adapter", "files"], "properties": { "adapter": { "type": "object", "required": ["provider", "mountId"], "properties": { "provider": { "type": "string" }, "mountId": { "type": "string" } } }, "files": { "type": "array", "items": { "type": "object", "required": ["path", "kind", "id", "revision", "contentHash", "updatedAt"], "properties": { "path": { "type": "string" }, "kind": { "type": "string" }, "id": { "type": "string" }, "revision": { "type": "integer", "minimum": 0 }, "contentHash": { "type": "string" }, "updatedAt": { "type": "string", "format": "date-time" }, "deletedAt": { "type": "string", "format": "date-time" }, "providerMetadata": { "type": "object" } } } }, "lastIndexedAt": { "type": "string", "format": "date-time" }, "lastSyncedAt": { "type": "string", "format": "date-time" } } } } }
  ]
}
