@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api VA Forms
@base https://sandbox-api.va.gov/services/va_forms/v0
@version 0.0.0
@auth ApiKey apikey in header
@endpoints 2
@toc forms(2)

@endpoint GET /forms
@optional {query: any}
@returns(200) {data: [any]}
@errors {401, 429}

@endpoint GET /forms/{form_name}
@required {form_name: str}
@returns(200) {data: any}
@errors {401, 404, 429}

@end
