@ts4ocds/requirements
Version:
TS4OCDS is a library of TypeScript entities that takes an approach to befriend large OCDS JSONs with your per-project routine of writing whole lotta interfaces for them.
18 lines (15 loc) • 603 B
TypeScript
/**
* @packageDocumentation
* @module Requirements.RequirementResponse
*/
import type { RequirementResponse } from './requirement-response';
/**
* An assertion that responds to a single {@link Requirement.Requirement | requirement}.
* A requirement response provides the value for the {@link Requirement.Requirement | requirement} and may provide the {@link Period.Period | period} to which it applies.
*/
export interface StringRequirementResponse extends RequirementResponse {
/**
* The value of this requirement response. The value must be of the type `string`.
*/
value: string;
}