Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(BillStatus XML v3): amendment actions has <count> and nested <actions> #206

Open
ryparker opened this issue Dec 29, 2022 · 1 comment
Open
Assignees

Comments

@ryparker
Copy link

amendment.actions contain an unusual <count> and an additional nesting of <actions>.

Proposed changes:

  • <count> be removed from the amendment <actions>
  • Remove double nesting of amendment actions (i.e. <actions><actions>…</actions></actions>)

e.g. Current implementation:

<amendments>
	<amendment>
		…
		<actions>
			<count>9</count>
			<actions>
				<item>
					…
				</item>
			</actions>
		</actions>
	</amendment>
</amendments>

e.g. Proposed implementation:

<amendments>
	<item>
		…
		<actions>
			<item>
				…
			</item>
		</actions>
	</item>
</amendments>
@ryparker ryparker changed the title (BillStatus XML v3): amendment actions has <count> and double nested <actions> (BillStatus XML v3): amendment actions has <count> and nested <actions> Dec 29, 2022
@jonquandt
Copy link
Member

@ryparker - this would require changes on the upstream Congress.gov API. While this is something that could be done, it would likely be a breaking change that would require additional discussion and notification from them.

@jonquandt jonquandt self-assigned this Jan 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants