Variable $ArquivoFindOneResultViewConst

$ArquivoFindOneResultView: {
    properties: {
        dateCreated: {
            $id: "ladesa://schemas/v3/generics/date_time.json";
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Data e hora da criação do registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        dateDeleted: {
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Data e hora da exclusão do registro.";
            format: "date-time";
            nullable: true;
            type: "string";
        };
        dateUpdated: {
            $id: "ladesa://schemas/v3/generics/date_time.json";
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Data e hora da alteração do registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        id: {
            $id: "ladesa://schemas/v3/generics/uuid.json";
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Identificador do registro (uuid).";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        mimeType: {
            description: "Formato do arquivo.";
            nullable: true;
            type: "string";
        };
        name: {
            description: "Nome do arquivo.";
            nullable: true;
            type: "string";
        };
        sizeBytes: {
            description: "Tamanho do arquivo (em bytes).";
            nullable: true;
            type: "integer";
        };
        storageType: {
            description: "Estratégia de armazenamento do conteúdo.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["id", "name", "mimeType", "sizeBytes", "storageType", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...