@ladesa-ro/api-client-fetch - v1.0.0-next.35
    Preparing search index...

    Variable $EtapaInputCreateViewConst

    $EtapaInputCreateView: {
        properties: {
            calendario: {
                allOf: readonly [
                    { $ref: "#/components/schemas/CalendarioLetivoFindOneInputView" },
                ];
                description: "Dados de entrada para encontrar um calendário letivo por ID.";
                kind: "type";
                nullable: false;
            };
            cor: { nullable: true; type: "string" };
            dataInicio: {
                $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";
            };
            dataTermino: {
                $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";
            };
            numero: { maximum: 255; minimum: 0; nullable: true; type: "integer" };
        };
        required: readonly [
            "numero",
            "dataInicio",
            "dataTermino",
            "cor",
            "calendario",
        ];
        type: "object";
    } = ...

    Type declaration

    • Readonlyproperties: {
          calendario: {
              allOf: readonly [
                  { $ref: "#/components/schemas/CalendarioLetivoFindOneInputView" },
              ];
              description: "Dados de entrada para encontrar um calendário letivo por ID.";
              kind: "type";
              nullable: false;
          };
          cor: { nullable: true; type: "string" };
          dataInicio: {
              $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";
          };
          dataTermino: {
              $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";
          };
          numero: { maximum: 255; minimum: 0; nullable: true; type: "integer" };
      }
    • Readonlyrequired: readonly ["numero", "dataInicio", "dataTermino", "cor", "calendario"]
    • Readonlytype: "object"