Variable presentationSubmissionSchemaConst
presentationSubmissionSchema: {
$schema: "http://json-schema.org/draft-07/schema#";
additionalProperties: false;
properties: {
definition_id: {
type: "string";
};
descriptor_map: {
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";
};
id: {
type: "string";
};
};
required: readonly ["id", "definition_id", "descriptor_map"];
type: "object";
} = ...
Type declaration
Readonly
$schema: "http://json-schema.org/draft-07/schema#"
Readonly
additionalProperties: false
Readonly
properties: {
definition_id: {
type: "string";
};
descriptor_map: {
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";
};
id: {
type: "string";
};
}
Readonly
definition_id: {
type: "string";
}
Readonly
descriptor_map: {
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";
}
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
id: {
type: "string";
}
Readonly
path: {
type: "string";
}
Readonly
path_nested: {
type: "object";
}
Readonly
required: readonly ["id", "format", "path"]
Readonly
type: "object"
Readonly
type: "array"
Readonly
id: {
type: "string";
}
Readonly
required: readonly ["id", "definition_id", "descriptor_map"]
Readonly
type: "object"