/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * A single per-jurisdiction amendment record for a code section. * * Per Q1 (ADR-0014): ``amendment_text`` is the free-form * ``code_adoptions.amendment_notes`` value — NO verbatim or paraphrased * code text in v1. */ export type SectionAmendmentRow = { /** * Jurisdiction code (ISO 3166-2 state or city slug) */ jurisdiction: string; jurisdiction_name?: (string | null); edition: string; /** * Free-form notes from ``code_adoptions.amendment_notes``. Empty when the jurisdiction adopted without amendment. */ amendment_text?: (string | null); has_amendments: boolean; source_url?: (string | null); /** * ``code_adoptions.fetched_at`` of this adoption row */ last_updated?: (string | null); };