Variable $AulaInputCreateViewConst

$AulaInputCreateView: {
    properties: {
        ambiente: {
            allOf: readonly [{
                $ref: "#/components/schemas/AmbienteFindOneInputView";
            }];
            description: "Dados de entrada para encontrar um ambiente por id.";
            kind: "type";
            nullable: true;
        };
        data: {
            $id: "ladesa://schemas/v3/generics/date.json";
            $schema: "https://json-schema.org/draft/2020-12/schema";
            description: "Date ISO 8601.";
            format: "date";
            nullable: false;
            type: "string";
        };
        diario: {
            allOf: readonly [{
                $ref: "#/components/schemas/DiarioFindOneInputView";
            }];
            description: "Dados de entrada para encontrar um diário por ID.";
            kind: "type";
            nullable: false;
        };
        intervaloDeTempo: {
            allOf: readonly [{
                $ref: "#/components/schemas/IntervaloDeTempoInputView";
            }];
            description: "Dados de entrada para um Intervalo de Tempo.";
            kind: "type";
            nullable: false;
        };
        modalidade: {
            nullable: true;
            type: "string";
        };
    };
    required: readonly ["data", "modalidade", "intervaloDeTempo", "diario", "ambiente"];
    type: "object";
} = ...