Variable descriptorMapSchemaConst

descriptorMapSchema: {
    items: {
        additionalProperties: false;
        properties: {
            format: {
                type: "string";
            };
            id: {
                type: "string";
            };
            path: {
                type: "string";
            };
            path_nested: {
                type: "object";
            };
        };
        required: readonly ["id", "format", "path"];
        type: "object";
    };
    type: "array";
} = ...

Type declaration

  • Readonly items: {
        additionalProperties: false;
        properties: {
            format: {
                type: "string";
            };
            id: {
                type: "string";
            };
            path: {
                type: "string";
            };
            path_nested: {
                type: "object";
            };
        };
        required: readonly ["id", "format", "path"];
        type: "object";
    }
    • Readonly additionalProperties: false
    • Readonly properties: {
          format: {
              type: "string";
          };
          id: {
              type: "string";
          };
          path: {
              type: "string";
          };
          path_nested: {
              type: "object";
          };
      }
      • Readonly format: {
            type: "string";
        }
        • Readonly type: "string"
      • Readonly id: {
            type: "string";
        }
        • Readonly type: "string"
      • Readonly path: {
            type: "string";
        }
        • Readonly type: "string"
      • Readonly path_nested: {
            type: "object";
        }
        • Readonly type: "object"
    • Readonly required: readonly ["id", "format", "path"]
    • Readonly type: "object"
  • Readonly type: "array"