openapi: 3.1.0 info: title: U.S. Department of State — state.gov Content API version: wp/v2 summary: Public, unauthenticated read access to state.gov press releases, briefings, reports, biographies, bureaus, country pages and policy issues. description: 'The Department of State publishes www.state.gov on WordPress and exposes the WordPress REST API at https://www.state.gov/wp-json. Alongside the core WordPress resources the Department registers its own content types and taxonomies (state_press_release, state_briefing, state_report, state_biography, state_bureau, state_country, state_policy_issue, state_trip_travel and others), all readable anonymously over HTTPS with no API key. Write operations exist but require an authenticated editorial account (WordPress Application Passwords) and are not available to the public. This description was derived mechanically from the Department''s own live discovery documents: the route index at https://www.state.gov/wp-json/ and an HTTP OPTIONS request against each collection and item route, which returns the provider-authored JSON Schema and argument list for that resource. No paths, parameters or schemas were invented. The verbatim source documents are kept in openapi/_original/.' contact: name: U.S. Department of State url: https://www.state.gov/ license: name: U.S. Government Work (17 U.S.C. 105) — see the state.gov copyright notice url: https://www.state.gov/copyright-information/ servers: - url: https://www.state.gov/wp-json description: Production state.gov WordPress REST API. externalDocs: description: WordPress REST API handbook — the upstream specification this surface implements url: https://developer.wordpress.org/rest-api/ tags: - name: categories description: WordPress category taxonomy. - name: media description: Media library attachments (images, PDFs, video posters). - name: pages description: state.gov pages. - name: posts description: WordPress posts. - name: search description: Cross-content search across state.gov content types. - name: state_archive_tags description: Archive tag taxonomy. - name: state_author_groups description: Author group taxonomy. - name: state_biography description: Biographies of Department principals and officials. - name: state_biography_types description: Biography type taxonomy. - name: state_briefing description: Press briefings, remarks and transcripts. - name: state_briefing_type description: Briefing type taxonomy. - name: state_bureau description: Bureaus and offices of the Department of State. - name: state_countries_and_areas description: Countries and areas taxonomy. - name: state_country description: Country and area landing content. - name: state_document_type description: Document type taxonomy. - name: state_ext_content description: Externally sourced content syndicated onto state.gov. - name: state_live_draft_tags description: Live draft tag taxonomy. - name: state_people description: People records used across state.gov. - name: state_policy_issue description: Policy issue landing content. - name: state_policy_issues description: Policy issues taxonomy. - name: state_press_release description: Press releases issued by the Office of the Spokesperson and Department bureaus. - name: state_report description: Department reports (human rights, religious freedom, trafficking in persons, and others). - name: state_report_types description: Report type taxonomy. - name: state_rss_feeds description: Configured RSS feed definitions. - name: state_standard_land description: Standard landing pages. - name: state_state description: State (U.S. state) content type. - name: state_states description: U.S. states taxonomy. - name: state_subjects description: Subject taxonomy. - name: state_term_coll description: Term collection content. - name: state_trip_travel description: Official travel by the Secretary and other principals. - name: state_years description: Year taxonomy. - name: tags description: WordPress post tag taxonomy. - name: taxonomies description: Registered taxonomies and their REST bases. - name: types description: Registered content types and their REST bases. security: [] paths: /wp/v2/categories: get: operationId: listCategory summary: List categories description: WordPress category taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - categories security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of categories items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Category' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createCategory summary: Create a categories item description: Create a new categories item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - categories requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/Category' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/categories/{id}: parameters: - name: id in: path required: true description: Unique identifier for the categories item. schema: type: integer get: operationId: getCategory summary: Retrieve a categories item tags: - categories security: [] description: Retrieve a single categories item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/Category' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateCategory summary: Update a categories item tags: - categories description: Update an existing categories item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/Category' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteCategory summary: Delete a categories item tags: - categories description: Trash or permanently delete a categories item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/Category' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/media: get: operationId: listAttachment summary: List media description: Media library attachments (images, PDFs, video posters). Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - media security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: author in: query description: Limit result set to posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: author_exclude in: query description: Ensure result set excludes posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: inherit items: enum: - inherit - private - trash type: string - name: media_type in: query description: Limit result set to attachments of a particular media type or media types. schema: type: array default: null items: type: string enum: - image - video - text - application - audio - name: mime_type in: query description: Limit result set to attachments of a particular MIME type or MIME types. schema: type: array default: null items: type: string responses: '200': description: A collection of media items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Attachment' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createAttachment summary: Create a media item description: Create a new media item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - media requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true author: description: The ID for the author of the post. type: integer featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false template: description: The theme file to use to display the post. type: string acf: description: ACF field data type: object alt_text: description: Alternative text to display when attachment is not displayed. type: string caption: description: The attachment caption. type: object properties: raw: description: Caption for the attachment, as it exists in the database. type: string rendered: description: HTML caption for the attachment, transformed for display. type: string readOnly: true description: description: The attachment description. type: object properties: raw: description: Description for the attachment, as it exists in the database. type: string rendered: description: HTML description for the attachment, transformed for display. type: string readOnly: true post: description: The ID for the associated post of the attachment. type: integer responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/Attachment' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/media/{id}: parameters: - name: id in: path required: true description: Unique identifier for the media item. schema: type: integer get: operationId: getAttachment summary: Retrieve a media item tags: - media security: [] description: Retrieve a single media item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/Attachment' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateAttachment summary: Update a media item tags: - media description: Update an existing media item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true author: description: The ID for the author of the post. type: integer featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false template: description: The theme file to use to display the post. type: string acf: description: ACF field data type: object alt_text: description: Alternative text to display when attachment is not displayed. type: string caption: description: The attachment caption. type: object properties: raw: description: Caption for the attachment, as it exists in the database. type: string rendered: description: HTML caption for the attachment, transformed for display. type: string readOnly: true description: description: The attachment description. type: object properties: raw: description: Description for the attachment, as it exists in the database. type: string rendered: description: HTML description for the attachment, transformed for display. type: string readOnly: true post: description: The ID for the associated post of the attachment. type: integer responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/Attachment' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteAttachment summary: Delete a media item tags: - media description: Trash or permanently delete a media item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/Attachment' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/pages: get: operationId: listPage summary: List pages description: state.gov pages. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - pages security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: author in: query description: Limit result set to posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: author_exclude in: query description: Ensure result set excludes posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: menu_order in: query description: Limit result set to posts with a specific menu_order value. schema: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_document_type in: query description: Limit result set to items with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_document_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of pages items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Page' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createPage summary: Create a pages item description: Create a new pages item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - pages requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed menu_order: description: The order of the post in relation to other posts. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false footnotes: type: string title: '' description: '' default: '' template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/Page' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/pages/{id}: parameters: - name: id in: path required: true description: Unique identifier for the pages item. schema: type: integer get: operationId: getPage summary: Retrieve a pages item tags: - pages security: [] description: Retrieve a single pages item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: excerpt_length in: query description: Override the default excerpt length. schema: type: integer - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/Page' '404': $ref: '#/components/responses/NotFound' patch: operationId: updatePage summary: Update a pages item tags: - pages description: Update an existing pages item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed menu_order: description: The order of the post in relation to other posts. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false footnotes: type: string title: '' description: '' default: '' template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/Page' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deletePage summary: Delete a pages item tags: - pages description: Trash or permanently delete a pages item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/Page' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/posts: get: operationId: listPost summary: List posts description: WordPress posts. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - posts security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: author in: query description: Limit result set to posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: author_exclude in: query description: Ensure result set excludes posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: categories in: query description: Limit result set to items with specific terms assigned in the categories taxonomy. schema: type: - object - array - name: categories_exclude in: query description: Limit result set to items except those with specific terms assigned in the categories taxonomy. schema: type: - object - array - name: tags in: query description: Limit result set to items with specific terms assigned in the tags taxonomy. schema: type: - object - array - name: tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the tags taxonomy. schema: type: - object - array - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: sticky in: query description: Limit result set to items that are sticky. schema: type: boolean - name: ignore_sticky in: query description: Whether to ignore sticky posts or not. schema: type: boolean default: true - name: format in: query description: Limit result set to items assigned one or more given formats. schema: type: array items: enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio type: string uniqueItems: true responses: '200': description: A collection of posts items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Post' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createPost summary: Create a posts item description: Create a new posts item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - posts requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed format: description: The format for the post. type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false _yoast_wpseo_focuskw: type: string title: '' description: '' default: '' _yoast_wpseo_title: type: string title: '' description: '' default: '' _yoast_wpseo_metadesc: type: string title: '' description: '' default: '' footnotes: type: string title: '' description: '' default: '' sticky: description: Whether or not the post should be treated as sticky. type: boolean template: description: The theme file to use to display the post. type: string categories: description: The terms assigned to the post in the category taxonomy. type: array items: type: integer tags: description: The terms assigned to the post in the post_tag taxonomy. type: array items: type: integer state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/Post' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/posts/{id}: parameters: - name: id in: path required: true description: Unique identifier for the posts item. schema: type: integer get: operationId: getPost summary: Retrieve a posts item tags: - posts security: [] description: Retrieve a single posts item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: excerpt_length in: query description: Override the default excerpt length. schema: type: integer - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/Post' '404': $ref: '#/components/responses/NotFound' patch: operationId: updatePost summary: Update a posts item tags: - posts description: Update an existing posts item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed format: description: The format for the post. type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false _yoast_wpseo_focuskw: type: string title: '' description: '' default: '' _yoast_wpseo_title: type: string title: '' description: '' default: '' _yoast_wpseo_metadesc: type: string title: '' description: '' default: '' footnotes: type: string title: '' description: '' default: '' sticky: description: Whether or not the post should be treated as sticky. type: boolean template: description: The theme file to use to display the post. type: string categories: description: The terms assigned to the post in the category taxonomy. type: array items: type: integer tags: description: The terms assigned to the post in the post_tag taxonomy. type: array items: type: integer state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/Post' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deletePost summary: Delete a posts item tags: - posts description: Trash or permanently delete a posts item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/Post' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/search: get: operationId: listSearchResult summary: List search description: Cross-content search across state.gov content types. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - search security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: type in: query description: Limit results to items of an object type. schema: type: string enum: - post - term - post-format default: post - name: subtype in: query description: Limit results to items of one or more object subtypes. schema: type: array default: any items: enum: - post - page - state_biography - state_people - state_press_release - state_briefing - state_bureau - state_country - state_policy_issue - state_term_coll - state_standard_land - state_report - state_trip_travel - state_ext_content - state_state - category - post_tag - state_author_groups - state_briefing_type - state_countries_and_areas - state_document_type - state_policy_issues - state_report_types - state_states - state_subjects - state_years - state_biography_types - any type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer responses: '200': description: A collection of search items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/SearchResult' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_archive_tags: get: operationId: listStateArchiveTags summary: List state_archive_tags description: Archive tag taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_archive_tags security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_archive_tags items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateArchiveTags' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateArchiveTags summary: Create a state_archive_tags item description: Create a new state_archive_tags item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_archive_tags requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateArchiveTags' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_archive_tags/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_archive_tags item. schema: type: integer get: operationId: getStateArchiveTags summary: Retrieve a state_archive_tags item tags: - state_archive_tags security: [] description: Retrieve a single state_archive_tags item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateArchiveTags' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateArchiveTags summary: Update a state_archive_tags item tags: - state_archive_tags description: Update an existing state_archive_tags item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateArchiveTags' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateArchiveTags summary: Delete a state_archive_tags item tags: - state_archive_tags description: Trash or permanently delete a state_archive_tags item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateArchiveTags' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_author_groups: get: operationId: listStateAuthorGroups summary: List state_author_groups description: Author group taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_author_groups security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_author_groups items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateAuthorGroups' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateAuthorGroups summary: Create a state_author_groups item description: Create a new state_author_groups item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_author_groups requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateAuthorGroups' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_author_groups/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_author_groups item. schema: type: integer get: operationId: getStateAuthorGroups summary: Retrieve a state_author_groups item tags: - state_author_groups security: [] description: Retrieve a single state_author_groups item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateAuthorGroups' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateAuthorGroups summary: Update a state_author_groups item tags: - state_author_groups description: Update an existing state_author_groups item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateAuthorGroups' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateAuthorGroups summary: Delete a state_author_groups item tags: - state_author_groups description: Trash or permanently delete a state_author_groups item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateAuthorGroups' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_biography: get: operationId: listStateBiography summary: List state_biography description: Biographies of Department principals and officials. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_biography security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_biography_types in: query description: Limit result set to items with specific terms assigned in the state_biography_types taxonomy. schema: type: - object - array - name: state_biography_types_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_biography_types taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_biography items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateBiography' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateBiography summary: Create a state_biography item description: Create a new state_biography item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_biography requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_biography_types: description: The terms assigned to the post in the state_biography_types taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateBiography' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_biography/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_biography item. schema: type: integer get: operationId: getStateBiography summary: Retrieve a state_biography item tags: - state_biography security: [] description: Retrieve a single state_biography item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateBiography' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateBiography summary: Update a state_biography item tags: - state_biography description: Update an existing state_biography item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_biography_types: description: The terms assigned to the post in the state_biography_types taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateBiography' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateBiography summary: Delete a state_biography item tags: - state_biography description: Trash or permanently delete a state_biography item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateBiography' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_biography_types: get: operationId: listStateBiographyTypes summary: List state_biography_types description: Biography type taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_biography_types security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_biography_types items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateBiographyTypes' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateBiographyTypes summary: Create a state_biography_types item description: Create a new state_biography_types item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_biography_types requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateBiographyTypes' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_biography_types/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_biography_types item. schema: type: integer get: operationId: getStateBiographyTypes summary: Retrieve a state_biography_types item tags: - state_biography_types security: [] description: Retrieve a single state_biography_types item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateBiographyTypes' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateBiographyTypes summary: Update a state_biography_types item tags: - state_biography_types description: Update an existing state_biography_types item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateBiographyTypes' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateBiographyTypes summary: Delete a state_biography_types item tags: - state_biography_types description: Trash or permanently delete a state_biography_types item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateBiographyTypes' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_briefing: get: operationId: listStateBriefing summary: List state_briefing description: Press briefings, remarks and transcripts. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_briefing security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_briefing_type in: query description: Limit result set to items with specific terms assigned in the state_briefing_type taxonomy. schema: type: - object - array - name: state_briefing_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_briefing_type taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_briefing items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateBriefing' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateBriefing summary: Create a state_briefing item description: Create a new state_briefing item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_briefing requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_briefing_type: description: The terms assigned to the post in the state_briefing_type taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateBriefing' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_briefing/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_briefing item. schema: type: integer get: operationId: getStateBriefing summary: Retrieve a state_briefing item tags: - state_briefing security: [] description: Retrieve a single state_briefing item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateBriefing' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateBriefing summary: Update a state_briefing item tags: - state_briefing description: Update an existing state_briefing item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_briefing_type: description: The terms assigned to the post in the state_briefing_type taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateBriefing' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateBriefing summary: Delete a state_briefing item tags: - state_briefing description: Trash or permanently delete a state_briefing item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateBriefing' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_briefing_type: get: operationId: listStateBriefingType summary: List state_briefing_type description: Briefing type taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_briefing_type security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_briefing_type items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateBriefingType' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateBriefingType summary: Create a state_briefing_type item description: Create a new state_briefing_type item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_briefing_type requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateBriefingType' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_briefing_type/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_briefing_type item. schema: type: integer get: operationId: getStateBriefingType summary: Retrieve a state_briefing_type item tags: - state_briefing_type security: [] description: Retrieve a single state_briefing_type item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateBriefingType' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateBriefingType summary: Update a state_briefing_type item tags: - state_briefing_type description: Update an existing state_briefing_type item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateBriefingType' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateBriefingType summary: Delete a state_briefing_type item tags: - state_briefing_type description: Trash or permanently delete a state_briefing_type item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateBriefingType' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_bureau: get: operationId: listStateBureau summary: List state_bureau description: Bureaus and offices of the Department of State. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_bureau security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: menu_order in: query description: Limit result set to posts with a specific menu_order value. schema: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_bureau items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateBureau' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateBureau summary: Create a state_bureau item description: Create a new state_bureau item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_bureau requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateBureau' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_bureau/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_bureau item. schema: type: integer get: operationId: getStateBureau summary: Retrieve a state_bureau item tags: - state_bureau security: [] description: Retrieve a single state_bureau item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateBureau' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateBureau summary: Update a state_bureau item tags: - state_bureau description: Update an existing state_bureau item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateBureau' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateBureau summary: Delete a state_bureau item tags: - state_bureau description: Trash or permanently delete a state_bureau item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateBureau' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_countries_and_areas: get: operationId: listStateCountriesAndAreas summary: List state_countries_and_areas description: Countries and areas taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_countries_and_areas security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_countries_and_areas items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateCountriesAndAreas' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateCountriesAndAreas summary: Create a state_countries_and_areas item description: Create a new state_countries_and_areas item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_countries_and_areas requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateCountriesAndAreas' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_countries_and_areas/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_countries_and_areas item. schema: type: integer get: operationId: getStateCountriesAndAreas summary: Retrieve a state_countries_and_areas item tags: - state_countries_and_areas security: [] description: Retrieve a single state_countries_and_areas item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateCountriesAndAreas' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateCountriesAndAreas summary: Update a state_countries_and_areas item tags: - state_countries_and_areas description: Update an existing state_countries_and_areas item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateCountriesAndAreas' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateCountriesAndAreas summary: Delete a state_countries_and_areas item tags: - state_countries_and_areas description: Trash or permanently delete a state_countries_and_areas item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateCountriesAndAreas' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_country: get: operationId: listStateCountry summary: List state_country description: Country and area landing content. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_country security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_country items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateCountry' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateCountry summary: Create a state_country item description: Create a new state_country item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_country requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateCountry' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_country/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_country item. schema: type: integer get: operationId: getStateCountry summary: Retrieve a state_country item tags: - state_country security: [] description: Retrieve a single state_country item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: excerpt_length in: query description: Override the default excerpt length. schema: type: integer - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateCountry' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateCountry summary: Update a state_country item tags: - state_country description: Update an existing state_country item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateCountry' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateCountry summary: Delete a state_country item tags: - state_country description: Trash or permanently delete a state_country item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateCountry' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_document_type: get: operationId: listStateDocumentType summary: List state_document_type description: Document type taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_document_type security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_document_type items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateDocumentType' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateDocumentType summary: Create a state_document_type item description: Create a new state_document_type item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_document_type requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateDocumentType' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_document_type/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_document_type item. schema: type: integer get: operationId: getStateDocumentType summary: Retrieve a state_document_type item tags: - state_document_type security: [] description: Retrieve a single state_document_type item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateDocumentType' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateDocumentType summary: Update a state_document_type item tags: - state_document_type description: Update an existing state_document_type item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateDocumentType' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateDocumentType summary: Delete a state_document_type item tags: - state_document_type description: Trash or permanently delete a state_document_type item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateDocumentType' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_ext_content: get: operationId: listStateExtContent summary: List state_ext_content description: Externally sourced content syndicated onto state.gov. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_ext_content security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_document_type in: query description: Limit result set to items with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_document_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array responses: '200': description: A collection of state_ext_content items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateExtContent' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateExtContent summary: Create a state_ext_content item description: Create a new state_ext_content item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_ext_content requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateExtContent' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_ext_content/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_ext_content item. schema: type: integer get: operationId: getStateExtContent summary: Retrieve a state_ext_content item tags: - state_ext_content security: [] description: Retrieve a single state_ext_content item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateExtContent' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateExtContent summary: Update a state_ext_content item tags: - state_ext_content description: Update an existing state_ext_content item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateExtContent' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateExtContent summary: Delete a state_ext_content item tags: - state_ext_content description: Trash or permanently delete a state_ext_content item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateExtContent' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_live_draft_tags: get: operationId: listStateLiveDraftTags summary: List state_live_draft_tags description: Live draft tag taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_live_draft_tags security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_live_draft_tags items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateLiveDraftTags' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateLiveDraftTags summary: Create a state_live_draft_tags item description: Create a new state_live_draft_tags item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_live_draft_tags requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateLiveDraftTags' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_live_draft_tags/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_live_draft_tags item. schema: type: integer get: operationId: getStateLiveDraftTags summary: Retrieve a state_live_draft_tags item tags: - state_live_draft_tags security: [] description: Retrieve a single state_live_draft_tags item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateLiveDraftTags' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateLiveDraftTags summary: Update a state_live_draft_tags item tags: - state_live_draft_tags description: Update an existing state_live_draft_tags item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateLiveDraftTags' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateLiveDraftTags summary: Delete a state_live_draft_tags item tags: - state_live_draft_tags description: Trash or permanently delete a state_live_draft_tags item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateLiveDraftTags' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_people: get: operationId: listStatePeople summary: List state_people description: People records used across state.gov. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_people security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_biography_types in: query description: Limit result set to items with specific terms assigned in the state_biography_types taxonomy. schema: type: - object - array - name: state_biography_types_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_biography_types taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array responses: '200': description: A collection of state_people items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StatePeople' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStatePeople summary: Create a state_people item description: Create a new state_people item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_people requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_biography_types: description: The terms assigned to the post in the state_biography_types taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StatePeople' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_people/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_people item. schema: type: integer get: operationId: getStatePeople summary: Retrieve a state_people item tags: - state_people security: [] description: Retrieve a single state_people item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StatePeople' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStatePeople summary: Update a state_people item tags: - state_people description: Update an existing state_people item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_biography_types: description: The terms assigned to the post in the state_biography_types taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StatePeople' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStatePeople summary: Delete a state_people item tags: - state_people description: Trash or permanently delete a state_people item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StatePeople' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_policy_issue: get: operationId: listStatePolicyIssue summary: List state_policy_issue description: Policy issue landing content. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_policy_issue security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: author in: query description: Limit result set to posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: author_exclude in: query description: Ensure result set excludes posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_document_type in: query description: Limit result set to items with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_document_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_policy_issue items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StatePolicyIssue' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStatePolicyIssue summary: Create a state_policy_issue item description: Create a new state_policy_issue item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_policy_issue requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssue' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_policy_issue/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_policy_issue item. schema: type: integer get: operationId: getStatePolicyIssue summary: Retrieve a state_policy_issue item tags: - state_policy_issue security: [] description: Retrieve a single state_policy_issue item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: excerpt_length in: query description: Override the default excerpt length. schema: type: integer - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssue' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStatePolicyIssue summary: Update a state_policy_issue item tags: - state_policy_issue description: Update an existing state_policy_issue item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssue' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStatePolicyIssue summary: Delete a state_policy_issue item tags: - state_policy_issue description: Trash or permanently delete a state_policy_issue item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssue' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_policy_issues: get: operationId: listStatePolicyIssues summary: List state_policy_issues description: Policy issues taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_policy_issues security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_policy_issues items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StatePolicyIssues' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStatePolicyIssues summary: Create a state_policy_issues item description: Create a new state_policy_issues item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_policy_issues requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssues' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_policy_issues/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_policy_issues item. schema: type: integer get: operationId: getStatePolicyIssues summary: Retrieve a state_policy_issues item tags: - state_policy_issues security: [] description: Retrieve a single state_policy_issues item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssues' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStatePolicyIssues summary: Update a state_policy_issues item tags: - state_policy_issues description: Update an existing state_policy_issues item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssues' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStatePolicyIssues summary: Delete a state_policy_issues item tags: - state_policy_issues description: Trash or permanently delete a state_policy_issues item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StatePolicyIssues' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_press_release: get: operationId: listStatePressRelease summary: List state_press_release description: Press releases issued by the Office of the Spokesperson and Department bureaus. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_press_release security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_document_type in: query description: Limit result set to items with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_document_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_press_release items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StatePressRelease' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStatePressRelease summary: Create a state_press_release item description: Create a new state_press_release item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_press_release requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false footnotes: type: string title: '' description: '' default: '' template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StatePressRelease' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_press_release/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_press_release item. schema: type: integer get: operationId: getStatePressRelease summary: Retrieve a state_press_release item tags: - state_press_release security: [] description: Retrieve a single state_press_release item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StatePressRelease' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStatePressRelease summary: Update a state_press_release item tags: - state_press_release description: Update an existing state_press_release item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false footnotes: type: string title: '' description: '' default: '' template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StatePressRelease' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStatePressRelease summary: Delete a state_press_release item tags: - state_press_release description: Trash or permanently delete a state_press_release item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StatePressRelease' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_report: get: operationId: listStateReport summary: List state_report description: Department reports (human rights, religious freedom, trafficking in persons, and others). Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_report security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: menu_order in: query description: Limit result set to posts with a specific menu_order value. schema: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_report_types in: query description: Limit result set to items with specific terms assigned in the state_report_types taxonomy. schema: type: - object - array - name: state_report_types_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_report_types taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_years in: query description: Limit result set to items with specific terms assigned in the state_years taxonomy. schema: type: - object - array - name: state_years_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_years taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_report items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateReport' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateReport summary: Create a state_report item description: Create a new state_report item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_report requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_report_types: description: The terms assigned to the post in the state_report_types taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_years: description: The terms assigned to the post in the state_years taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateReport' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_report/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_report item. schema: type: integer get: operationId: getStateReport summary: Retrieve a state_report item tags: - state_report security: [] description: Retrieve a single state_report item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateReport' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateReport summary: Update a state_report item tags: - state_report description: Update an existing state_report item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_report_types: description: The terms assigned to the post in the state_report_types taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_years: description: The terms assigned to the post in the state_years taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateReport' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateReport summary: Delete a state_report item tags: - state_report description: Trash or permanently delete a state_report item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateReport' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_report_types: get: operationId: listStateReportTypes summary: List state_report_types description: Report type taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_report_types security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_report_types items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateReportTypes' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateReportTypes summary: Create a state_report_types item description: Create a new state_report_types item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_report_types requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateReportTypes' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_report_types/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_report_types item. schema: type: integer get: operationId: getStateReportTypes summary: Retrieve a state_report_types item tags: - state_report_types security: [] description: Retrieve a single state_report_types item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateReportTypes' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateReportTypes summary: Update a state_report_types item tags: - state_report_types description: Update an existing state_report_types item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateReportTypes' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateReportTypes summary: Delete a state_report_types item tags: - state_report_types description: Trash or permanently delete a state_report_types item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateReportTypes' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_rss_feeds: get: operationId: listStateRssFeeds summary: List state_rss_feeds description: Configured RSS feed definitions. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_rss_feeds security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_rss_feeds items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateRssFeeds' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateRssFeeds summary: Create a state_rss_feeds item description: Create a new state_rss_feeds item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_rss_feeds requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateRssFeeds' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_rss_feeds/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_rss_feeds item. schema: type: integer get: operationId: getStateRssFeeds summary: Retrieve a state_rss_feeds item tags: - state_rss_feeds security: [] description: Retrieve a single state_rss_feeds item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateRssFeeds' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateRssFeeds summary: Update a state_rss_feeds item tags: - state_rss_feeds description: Update an existing state_rss_feeds item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateRssFeeds' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateRssFeeds summary: Delete a state_rss_feeds item tags: - state_rss_feeds description: Trash or permanently delete a state_rss_feeds item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateRssFeeds' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_standard_land: get: operationId: listStateStandardLand summary: List state_standard_land description: Standard landing pages. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_standard_land security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: author in: query description: Limit result set to posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: author_exclude in: query description: Ensure result set excludes posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_document_type in: query description: Limit result set to items with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_document_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_standard_land items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateStandardLand' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateStandardLand summary: Create a state_standard_land item description: Create a new state_standard_land item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_standard_land requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateStandardLand' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_standard_land/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_standard_land item. schema: type: integer get: operationId: getStateStandardLand summary: Retrieve a state_standard_land item tags: - state_standard_land security: [] description: Retrieve a single state_standard_land item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: excerpt_length in: query description: Override the default excerpt length. schema: type: integer - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateStandardLand' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateStandardLand summary: Update a state_standard_land item tags: - state_standard_land description: Update an existing state_standard_land item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateStandardLand' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateStandardLand summary: Delete a state_standard_land item tags: - state_standard_land description: Trash or permanently delete a state_standard_land item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateStandardLand' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_state: get: operationId: listStateState summary: List state_state description: State (U.S. state) content type. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_state security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: menu_order in: query description: Limit result set to posts with a specific menu_order value. schema: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array responses: '200': description: A collection of state_state items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateState' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateState summary: Create a state_state item description: Create a new state_state item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_state requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateState' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_state/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_state item. schema: type: integer get: operationId: getStateState summary: Retrieve a state_state item tags: - state_state security: [] description: Retrieve a single state_state item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateState' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateState summary: Update a state_state item tags: - state_state description: Update an existing state_state item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateState' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateState summary: Delete a state_state item tags: - state_state description: Trash or permanently delete a state_state item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateState' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_states: get: operationId: listStateStates summary: List state_states description: U.S. states taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_states security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_states items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateStates' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateStates summary: Create a state_states item description: Create a new state_states item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_states requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateStates' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_states/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_states item. schema: type: integer get: operationId: getStateStates summary: Retrieve a state_states item tags: - state_states security: [] description: Retrieve a single state_states item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateStates' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateStates summary: Update a state_states item tags: - state_states description: Update an existing state_states item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateStates' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateStates summary: Delete a state_states item tags: - state_states description: Trash or permanently delete a state_states item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateStates' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_subjects: get: operationId: listStateSubjects summary: List state_subjects description: Subject taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_subjects security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_subjects items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateSubjects' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateSubjects summary: Create a state_subjects item description: Create a new state_subjects item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_subjects requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateSubjects' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_subjects/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_subjects item. schema: type: integer get: operationId: getStateSubjects summary: Retrieve a state_subjects item tags: - state_subjects security: [] description: Retrieve a single state_subjects item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateSubjects' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateSubjects summary: Update a state_subjects item tags: - state_subjects description: Update an existing state_subjects item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateSubjects' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateSubjects summary: Delete a state_subjects item tags: - state_subjects description: Trash or permanently delete a state_subjects item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateSubjects' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_term_coll: get: operationId: listStateTermColl summary: List state_term_coll description: Term collection content. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_term_coll security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: author in: query description: Limit result set to posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: author_exclude in: query description: Ensure result set excludes posts assigned to specific authors. schema: type: array default: [] items: type: integer - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_document_type in: query description: Limit result set to items with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_document_type_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_document_type taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_subjects in: query description: Limit result set to items with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_subjects_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_subjects taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_term_coll items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateTermColl' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateTermColl summary: Create a state_term_coll item description: Create a new state_term_coll item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_term_coll requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateTermColl' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_term_coll/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_term_coll item. schema: type: integer get: operationId: getStateTermColl summary: Retrieve a state_term_coll item tags: - state_term_coll security: [] description: Retrieve a single state_term_coll item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: excerpt_length in: query description: Override the default excerpt length. schema: type: integer - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateTermColl' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateTermColl summary: Update a state_term_coll item tags: - state_term_coll description: Update an existing state_term_coll item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateTermColl' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateTermColl summary: Delete a state_term_coll item tags: - state_term_coll description: Trash or permanently delete a state_term_coll item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateTermColl' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_trip_travel: get: operationId: listStateTripTravel summary: List state_trip_travel description: Official travel by the Secretary and other principals. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_trip_travel security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: after in: query description: Limit response to posts published after a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_after in: query description: Limit response to posts modified after a given ISO8601 compliant date. schema: type: string format: date-time - name: before in: query description: Limit response to posts published before a given ISO8601 compliant date. schema: type: string format: date-time - name: modified_before in: query description: Limit response to posts modified before a given ISO8601 compliant date. schema: type: string format: date-time - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: search_semantics in: query description: How to interpret the search input. schema: type: string enum: - exact - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: desc - name: orderby in: query description: Sort collection by post attribute. schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date - name: parent in: query description: Limit result set to items with particular parent IDs. schema: type: array default: [] items: type: integer - name: parent_exclude in: query description: Limit result set to all items except those of a particular parent ID. schema: type: array default: [] items: type: integer - name: search_columns in: query description: Array of column names to be searched. schema: type: array default: [] items: enum: - post_title - post_content - post_excerpt type: string - name: slug in: query description: Limit result set to posts with one or more specific slugs. schema: type: array items: type: string - name: status in: query description: Limit result set to posts assigned one or more statuses. schema: type: array default: publish items: enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - congress - press - dp-rewrite-republish - any type: string - name: tax_relation in: query description: Limit result set based on relationship between multiple taxonomies. schema: type: string enum: - AND - OR - name: state_author_groups in: query description: Limit result set to items with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_author_groups_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_author_groups taxonomy. schema: type: - object - array - name: state_countries_and_areas in: query description: Limit result set to items with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_countries_and_areas_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_countries_and_areas taxonomy. schema: type: - object - array - name: state_policy_issues in: query description: Limit result set to items with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_policy_issues_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_policy_issues taxonomy. schema: type: - object - array - name: state_states in: query description: Limit result set to items with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_states_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_states taxonomy. schema: type: - object - array - name: state_archive_tags in: query description: Limit result set to items with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_archive_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_archive_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags in: query description: Limit result set to items with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_live_draft_tags_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_live_draft_tags taxonomy. schema: type: - object - array - name: state_rss_feeds in: query description: Limit result set to items with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array - name: state_rss_feeds_exclude in: query description: Limit result set to items except those with specific terms assigned in the state_rss_feeds taxonomy. schema: type: - object - array responses: '200': description: A collection of state_trip_travel items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateTripTravel' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateTripTravel summary: Create a state_trip_travel item description: Create a new state_trip_travel item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_trip_travel requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateTripTravel' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_trip_travel/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_trip_travel item. schema: type: integer get: operationId: getStateTripTravel summary: Retrieve a state_trip_travel item tags: - state_trip_travel security: [] description: Retrieve a single state_trip_travel item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: password in: query description: The password for the post if it is password protected. schema: type: string responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateTripTravel' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateTripTravel summary: Update a state_trip_travel item tags: - state_trip_travel description: Update an existing state_trip_travel item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press password: description: A password to protect access to the content and excerpt. type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateTripTravel' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateTripTravel summary: Delete a state_trip_travel item tags: - state_trip_travel description: Trash or permanently delete a state_trip_travel item. Requires an authenticated editorial account. parameters: - name: force in: query description: Whether to bypass Trash and force deletion. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateTripTravel' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/state_years: get: operationId: listStateYears summary: List state_years description: Year taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - state_years security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: parent in: query description: Limit result set to terms assigned to a specific parent. schema: type: integer - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of state_years items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/StateYears' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createStateYears summary: Create a state_years item description: Create a new state_years item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - state_years requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/StateYears' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/state_years/{id}: parameters: - name: id in: path required: true description: Unique identifier for the state_years item. schema: type: integer get: operationId: getStateYears summary: Retrieve a state_years item tags: - state_years security: [] description: Retrieve a single state_years item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/StateYears' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateStateYears summary: Update a state_years item tags: - state_years description: Update an existing state_years item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: ACF field data type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/StateYears' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteStateYears summary: Delete a state_years item tags: - state_years description: Trash or permanently delete a state_years item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/StateYears' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/tags: get: operationId: listTag summary: List tags description: WordPress post tag taxonomy. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - tags security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: page in: query description: Current page of the collection. schema: type: integer default: 1 minimum: 1 - name: per_page in: query description: Maximum number of items to be returned in result set. schema: type: integer default: 10 minimum: 1 maximum: 100 - name: search in: query description: Limit results to those matching a string. schema: type: string - name: exclude in: query description: Ensure result set excludes specific IDs. schema: type: array default: [] items: type: integer - name: include in: query description: Limit result set to specific IDs. schema: type: array default: [] items: type: integer - name: offset in: query description: Offset the result set by a specific number of items. schema: type: integer - name: order in: query description: Order sort attribute ascending or descending. schema: type: string enum: - asc - desc default: asc - name: orderby in: query description: Sort collection by term attribute. schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name - name: hide_empty in: query description: Whether to hide terms not assigned to any posts. schema: type: boolean default: false - name: post in: query description: Limit result set to terms assigned to a specific post. schema: type: integer default: null - name: slug in: query description: Limit result set to terms with one or more specific slugs. schema: type: array items: type: string responses: '200': description: A collection of tags items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Tag' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' post: operationId: createTag summary: Create a tags item description: Create a new tags item. Requires an authenticated editorial account; anonymous callers receive 401. tags: - tags requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string meta: description: Meta fields. type: object required: - name responses: '201': description: Created. content: application/json: schema: $ref: '#/components/schemas/Tag' '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' /wp/v2/tags/{id}: parameters: - name: id in: path required: true description: Unique identifier for the tags item. schema: type: integer get: operationId: getTag summary: Retrieve a tags item tags: - tags security: [] description: Retrieve a single tags item by numeric id. parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: The requested item. content: application/json: schema: $ref: '#/components/schemas/Tag' '404': $ref: '#/components/responses/NotFound' patch: operationId: updateTag summary: Update a tags item tags: - tags description: Update an existing tags item. Requires an authenticated editorial account. WordPress accepts POST, PUT or PATCH for this operation. requestBody: required: true content: application/json: schema: type: object properties: description: description: HTML description of the term. type: string name: description: HTML title for the term. type: string slug: description: An alphanumeric identifier for the term unique to its type. type: string meta: description: Meta fields. type: object responses: '200': description: The updated item. content: application/json: schema: $ref: '#/components/schemas/Tag' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' delete: operationId: deleteTag summary: Delete a tags item tags: - tags description: Trash or permanently delete a tags item. Requires an authenticated editorial account. parameters: - name: force in: query description: Required to be true, as terms do not support trashing. schema: type: boolean default: false responses: '200': description: The deleted item. content: application/json: schema: $ref: '#/components/schemas/Tag' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' /wp/v2/taxonomies: get: operationId: listTaxonomy summary: List taxonomies description: Registered taxonomies and their REST bases. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - taxonomies security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view - name: type in: query description: Limit results to taxonomies associated with a specific post type. schema: type: string responses: '200': description: A collection of taxonomies items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Taxonomy' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' /wp/v2/types: get: operationId: listType summary: List types description: Registered content types and their REST bases. Returns a JSON array; total counts are carried in the X-WP-Total and X-WP-TotalPages response headers. tags: - types security: [] parameters: - name: context in: query description: Scope under which the request is made; determines fields present in response. schema: type: string enum: - view - embed - edit default: view responses: '200': description: A collection of types items. headers: X-WP-Total: description: Total number of matching items. schema: type: integer X-WP-TotalPages: description: Total number of pages available. schema: type: integer content: application/json: schema: type: array items: $ref: '#/components/schemas/Type' '400': $ref: '#/components/responses/BadRequest' '404': $ref: '#/components/responses/NotFound' components: securitySchemes: applicationPassword: type: http scheme: basic description: WordPress Application Passwords. Advertised by the Department at https://www.state.gov/wp-json/ under authentication.application-passwords, authorization endpoint https://www.state.gov/wp-admin/authorize-application.php. Editorial use only — the public read surface requires no credentials. schemas: Category: $schema: http://json-schema.org/draft-04/schema# title: category type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - category readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object Attachment: $schema: http://json-schema.org/draft-04/schema# title: attachment type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true author: description: The ID for the author of the post. type: integer featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false template: description: The theme file to use to display the post. type: string acf: description: Expose advanced custom fields. type: object alt_text: description: Alternative text to display when attachment is not displayed. type: string caption: description: The attachment caption. type: object properties: raw: description: Caption for the attachment, as it exists in the database. type: string rendered: description: HTML caption for the attachment, transformed for display. type: string readOnly: true description: description: The attachment description. type: object properties: raw: description: Description for the attachment, as it exists in the database. type: string rendered: description: HTML description for the attachment, transformed for display. type: string readOnly: true media_type: description: Attachment type. type: string enum: - image - file readOnly: true mime_type: description: The attachment MIME type. type: string readOnly: true media_details: description: Details about the media file, specific to its type. type: object readOnly: true post: description: The ID for the associated post of the attachment. type: integer source_url: description: URL to the original attachment file. type: string format: uri readOnly: true missing_image_sizes: description: List of the missing image sizes of the attachment. type: array items: type: string readOnly: true filename: description: Original attachment file name. type: string readOnly: true filesize: description: Attachment file size in bytes. type: integer readOnly: true exif_orientation: description: EXIF orientation value. Values 1-8 follow the EXIF specification, where 1 means no rotation needed. type: integer readOnly: true links: - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/media/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-author title: The current user can change the author on this post. href: https://www.state.gov/wp-json/wp/v2/media/{id} targetSchema: type: object properties: author: type: integer Page: $schema: http://json-schema.org/draft-04/schema# title: page type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed menu_order: description: The order of the post in relation to other posts. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false footnotes: type: string title: '' description: '' default: '' template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-author title: The current user can change the author on this post. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: author: type: integer - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_document_type title: The current user can assign terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_document_type title: The current user can create terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/pages/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer Post: $schema: http://json-schema.org/draft-04/schema# title: post type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer comment_status: description: Whether or not comments are open on the post. type: string enum: - open - closed ping_status: description: Whether or not the post can be pinged. type: string enum: - open - closed format: description: The format for the post. type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false _yoast_wpseo_focuskw: type: string title: '' description: '' default: '' _yoast_wpseo_title: type: string title: '' description: '' default: '' _yoast_wpseo_metadesc: type: string title: '' description: '' default: '' footnotes: type: string title: '' description: '' default: '' sticky: description: Whether or not the post should be treated as sticky. type: boolean template: description: The theme file to use to display the post. type: string categories: description: The terms assigned to the post in the category taxonomy. type: array items: type: integer tags: description: The terms assigned to the post in the post_tag taxonomy. type: array items: type: integer state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-sticky title: The current user can sticky this post. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: sticky: type: boolean - rel: https://api.w.org/action-assign-author title: The current user can change the author on this post. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: author: type: integer - rel: https://api.w.org/action-assign-categories title: The current user can assign terms in the category taxonomy. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: categories: type: array items: type: integer - rel: https://api.w.org/action-create-categories title: The current user can create terms in the category taxonomy. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: categories: type: array items: type: integer - rel: https://api.w.org/action-assign-tags title: The current user can assign terms in the post_tag taxonomy. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: tags: type: array items: type: integer - rel: https://api.w.org/action-create-tags title: The current user can create terms in the post_tag taxonomy. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/posts/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer SearchResult: $schema: http://json-schema.org/draft-04/schema# title: search-result type: object properties: id: description: Unique identifier for the object. type: - integer - string readOnly: true title: description: The title for the object. type: string readOnly: true url: description: URL to the object. type: string format: uri readOnly: true type: description: Object type. type: string enum: - post - term - post-format readOnly: true subtype: description: Object subtype. type: string enum: - post - page - state_biography - state_people - state_press_release - state_briefing - state_bureau - state_country - state_policy_issue - state_term_coll - state_standard_land - state_report - state_trip_travel - state_ext_content - state_state - category - post_tag - state_author_groups - state_briefing_type - state_countries_and_areas - state_document_type - state_policy_issues - state_report_types - state_states - state_subjects - state_years - state_biography_types readOnly: true StateArchiveTags: $schema: http://json-schema.org/draft-04/schema# title: state_archive_tags type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_archive_tags readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateAuthorGroups: $schema: http://json-schema.org/draft-04/schema# title: state_author_groups type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_author_groups readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateBiography: $schema: http://json-schema.org/draft-04/schema# title: state_biography type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_biography_types: description: The terms assigned to the post in the state_biography_types taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_biography_types title: The current user can assign terms in the state_biography_types taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_biography_types: type: array items: type: integer - rel: https://api.w.org/action-create-state_biography_types title: The current user can create terms in the state_biography_types taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_biography_types: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_biography/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateBiographyTypes: $schema: http://json-schema.org/draft-04/schema# title: state_biography_types type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_biography_types readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateBriefing: $schema: http://json-schema.org/draft-04/schema# title: state_briefing type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_briefing_type: description: The terms assigned to the post in the state_briefing_type taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_briefing_type title: The current user can assign terms in the state_briefing_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_briefing_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_briefing_type title: The current user can create terms in the state_briefing_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_briefing_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_briefing/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateBriefingType: $schema: http://json-schema.org/draft-04/schema# title: state_briefing_type type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_briefing_type readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateBureau: $schema: http://json-schema.org/draft-04/schema# title: state_bureau type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_bureau/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateCountriesAndAreas: $schema: http://json-schema.org/draft-04/schema# title: state_countries_and_areas type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_countries_and_areas readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateCountry: $schema: http://json-schema.org/draft-04/schema# title: state_country type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_country/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateDocumentType: $schema: http://json-schema.org/draft-04/schema# title: state_document_type type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_document_type readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateExtContent: $schema: http://json-schema.org/draft-04/schema# title: state_ext_content type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_document_type title: The current user can assign terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_document_type title: The current user can create terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_ext_content/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer StateLiveDraftTags: $schema: http://json-schema.org/draft-04/schema# title: state_live_draft_tags type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_live_draft_tags readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StatePeople: $schema: http://json-schema.org/draft-04/schema# title: state_people type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_biography_types: description: The terms assigned to the post in the state_biography_types taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_biography_types title: The current user can assign terms in the state_biography_types taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_biography_types: type: array items: type: integer - rel: https://api.w.org/action-create-state_biography_types title: The current user can create terms in the state_biography_types taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_biography_types: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_people/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer StatePolicyIssue: $schema: http://json-schema.org/draft-04/schema# title: state_policy_issue type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-author title: The current user can change the author on this post. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: author: type: integer - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_document_type title: The current user can assign terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_document_type title: The current user can create terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_policy_issue/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StatePolicyIssues: $schema: http://json-schema.org/draft-04/schema# title: state_policy_issues type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_policy_issues readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StatePressRelease: $schema: http://json-schema.org/draft-04/schema# title: state_press_release type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false footnotes: type: string title: '' description: '' default: '' template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_document_type title: The current user can assign terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_document_type title: The current user can create terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_press_release/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateReport: $schema: http://json-schema.org/draft-04/schema# title: state_report type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_report_types: description: The terms assigned to the post in the state_report_types taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_years: description: The terms assigned to the post in the state_years taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_report_types title: The current user can assign terms in the state_report_types taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_report_types: type: array items: type: integer - rel: https://api.w.org/action-create-state_report_types title: The current user can create terms in the state_report_types taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_report_types: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_years title: The current user can assign terms in the state_years taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_years: type: array items: type: integer - rel: https://api.w.org/action-create-state_years title: The current user can create terms in the state_years taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_years: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_report/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateReportTypes: $schema: http://json-schema.org/draft-04/schema# title: state_report_types type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_report_types readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateRssFeeds: $schema: http://json-schema.org/draft-04/schema# title: state_rss_feeds type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_rss_feeds readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateStandardLand: $schema: http://json-schema.org/draft-04/schema# title: state_standard_land type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-author title: The current user can change the author on this post. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: author: type: integer - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_document_type title: The current user can assign terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_document_type title: The current user can create terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_standard_land/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateState: $schema: http://json-schema.org/draft-04/schema# title: state_state type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer menu_order: description: The order of the post in relation to other posts. type: integer meta: description: Meta fields. type: object properties: _acf_changed: type: boolean title: '' description: '' default: false template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_state/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer StateStates: $schema: http://json-schema.org/draft-04/schema# title: state_states type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_states readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateSubjects: $schema: http://json-schema.org/draft-04/schema# title: state_subjects type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_subjects readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object StateTermColl: $schema: http://json-schema.org/draft-04/schema# title: state_term_coll type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true author: description: The ID for the author of the post. type: integer excerpt: description: The excerpt for the post. type: object properties: raw: description: Excerpt for the post, as it exists in the database. type: string rendered: description: HTML excerpt for the post, transformed for display. type: string readOnly: true protected: description: Whether the excerpt is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_document_type: description: The terms assigned to the post in the state_document_type taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_subjects: description: The terms assigned to the post in the state_subjects taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-author title: The current user can change the author on this post. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: author: type: integer - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_document_type title: The current user can assign terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-create-state_document_type title: The current user can create terms in the state_document_type taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_document_type: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_subjects title: The current user can assign terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-create-state_subjects title: The current user can create terms in the state_subjects taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_subjects: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_term_coll/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateTripTravel: $schema: http://json-schema.org/draft-04/schema# title: state_trip_travel type: object properties: date: description: The date the post was published, in the site's timezone. type: - string - 'null' format: date-time date_gmt: description: The date the post was published, as GMT. type: - string - 'null' format: date-time guid: description: The globally unique identifier for the post. type: object readOnly: true properties: raw: description: GUID for the post, as it exists in the database. type: string readOnly: true rendered: description: GUID for the post, transformed for display. type: string readOnly: true id: description: Unique identifier for the post. type: integer readOnly: true link: description: URL to the post. type: string format: uri readOnly: true modified: description: The date the post was last modified, in the site's timezone. type: string format: date-time readOnly: true modified_gmt: description: The date the post was last modified, as GMT. type: string format: date-time readOnly: true slug: description: An alphanumeric identifier for the post unique to its type. type: string status: description: A named status for the post. type: string enum: - publish - future - draft - pending - private - acf-disabled - congress - press type: description: Type of post. type: string readOnly: true password: description: A password to protect access to the content and excerpt. type: string permalink_template: description: Permalink template for the post. type: string readOnly: true generated_slug: description: Slug automatically generated from the post title. type: string readOnly: true class_list: description: An array of the class names for the post container element. type: array readOnly: true items: type: string parent: description: The ID for the parent of the post. type: integer title: description: The title for the post. type: object properties: raw: description: Title for the post, as it exists in the database. type: string rendered: description: HTML title for the post, transformed for display. type: string readOnly: true content: description: The content for the post. type: object properties: raw: description: Content for the post, as it exists in the database. type: string rendered: description: HTML content for the post, transformed for display. type: string readOnly: true block_version: description: Version of the content block format used by the post. type: integer readOnly: true protected: description: Whether the content is protected with a password. type: boolean readOnly: true featured_media: description: The ID of the featured media for the post. type: integer template: description: The theme file to use to display the post. type: string state_author_groups: description: The terms assigned to the post in the state_author_groups taxonomy. type: array items: type: integer state_countries_and_areas: description: The terms assigned to the post in the state_countries_and_areas taxonomy. type: array items: type: integer state_policy_issues: description: The terms assigned to the post in the state_policy_issues taxonomy. type: array items: type: integer state_states: description: The terms assigned to the post in the state_states taxonomy. type: array items: type: integer state_archive_tags: description: The terms assigned to the post in the state_archive_tags taxonomy. type: array items: type: integer state_live_draft_tags: description: The terms assigned to the post in the state_live_draft_tags taxonomy. type: array items: type: integer state_rss_feeds: description: The terms assigned to the post in the state_rss_feeds taxonomy. type: array items: type: integer acf: description: Expose advanced custom fields. type: object links: - rel: https://api.w.org/action-publish title: The current user can publish this post. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: status: type: string enum: - publish - future - rel: https://api.w.org/action-unfiltered-html title: The current user can post unfiltered HTML markup and JavaScript. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: content: raw: type: string - rel: https://api.w.org/action-assign-state_author_groups title: The current user can assign terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-create-state_author_groups title: The current user can create terms in the state_author_groups taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_author_groups: type: array items: type: integer - rel: https://api.w.org/action-assign-state_countries_and_areas title: The current user can assign terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-create-state_countries_and_areas title: The current user can create terms in the state_countries_and_areas taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_countries_and_areas: type: array items: type: integer - rel: https://api.w.org/action-assign-state_policy_issues title: The current user can assign terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-create-state_policy_issues title: The current user can create terms in the state_policy_issues taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_policy_issues: type: array items: type: integer - rel: https://api.w.org/action-assign-state_states title: The current user can assign terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-create-state_states title: The current user can create terms in the state_states taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_states: type: array items: type: integer - rel: https://api.w.org/action-assign-state_archive_tags title: The current user can assign terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_archive_tags title: The current user can create terms in the state_archive_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_archive_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_live_draft_tags title: The current user can assign terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-create-state_live_draft_tags title: The current user can create terms in the state_live_draft_tags taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_live_draft_tags: type: array items: type: integer - rel: https://api.w.org/action-assign-state_rss_feeds title: The current user can assign terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer - rel: https://api.w.org/action-create-state_rss_feeds title: The current user can create terms in the state_rss_feeds taxonomy. href: https://www.state.gov/wp-json/wp/v2/state_trip_travel/{id} targetSchema: type: object properties: state_rss_feeds: type: array items: type: integer StateYears: $schema: http://json-schema.org/draft-04/schema# title: state_years type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - state_years readOnly: true parent: description: The parent term ID. type: integer meta: description: Meta fields. type: object acf: description: Expose advanced custom fields. type: object Tag: $schema: http://json-schema.org/draft-04/schema# title: tag type: object properties: id: description: Unique identifier for the term. type: integer readOnly: true count: description: Number of published posts for the term. type: integer readOnly: true description: description: HTML description of the term. type: string link: description: URL of the term. type: string format: uri readOnly: true name: description: HTML title for the term. type: string required: true slug: description: An alphanumeric identifier for the term unique to its type. type: string taxonomy: description: Type attribution for the term. type: string enum: - post_tag readOnly: true meta: description: Meta fields. type: object Taxonomy: $schema: http://json-schema.org/draft-04/schema# title: taxonomy type: object properties: capabilities: description: All capabilities used by the taxonomy. type: object readOnly: true description: description: A human-readable description of the taxonomy. type: string readOnly: true hierarchical: description: Whether or not the taxonomy should have children. type: boolean readOnly: true labels: description: Human-readable labels for the taxonomy for various contexts. type: object readOnly: true name: description: The title for the taxonomy. type: string readOnly: true slug: description: An alphanumeric identifier for the taxonomy. type: string readOnly: true show_cloud: description: Whether or not the term cloud should be displayed. type: boolean readOnly: true types: description: Types associated with the taxonomy. type: array items: type: string readOnly: true rest_base: description: REST base route for the taxonomy. type: string readOnly: true rest_namespace: description: REST namespace route for the taxonomy. type: string readOnly: true visibility: description: The visibility settings for the taxonomy. type: object readOnly: true properties: public: description: Whether a taxonomy is intended for use publicly either via the admin interface or by front-end users. type: boolean publicly_queryable: description: Whether the taxonomy is publicly queryable. type: boolean show_ui: description: Whether to generate a default UI for managing this taxonomy. type: boolean show_admin_column: description: Whether to allow automatic creation of taxonomy columns on associated post-types table. type: boolean show_in_nav_menus: description: Whether to make the taxonomy available for selection in navigation menus. type: boolean show_in_quick_edit: description: Whether to show the taxonomy in the quick/bulk edit panel. type: boolean radio_no_term: description: Radio taxonomy should show no term option. type: bool default_term: description: Taxonomy default term ID. type: int Type: $schema: http://json-schema.org/draft-04/schema# title: type type: object properties: capabilities: description: All capabilities used by the post type. type: object readOnly: true description: description: A human-readable description of the post type. type: string readOnly: true hierarchical: description: Whether or not the post type should have children. type: boolean readOnly: true viewable: description: Whether or not the post type can be viewed. type: boolean readOnly: true labels: description: Human-readable labels for the post type for various contexts. type: object readOnly: true name: description: The title for the post type. type: string readOnly: true slug: description: An alphanumeric identifier for the post type. type: string readOnly: true supports: description: All features, supported by the post type. type: object readOnly: true has_archive: description: If the value is a string, the value will be used as the archive slug. If the value is false the post type has no archive. type: - string - boolean readOnly: true taxonomies: description: Taxonomies associated with post type. type: array items: type: string readOnly: true rest_base: description: REST base route for the post type. type: string readOnly: true rest_namespace: description: REST route's namespace for the post type. type: string readOnly: true visibility: description: The visibility settings for the post type. type: object readOnly: true properties: show_ui: description: Whether to generate a default UI for managing this post type. type: boolean show_in_nav_menus: description: Whether to make the post type available for selection in navigation menus. type: boolean icon: description: The icon for the post type. type: - string - 'null' readOnly: true template: type: - array description: The block template associated with the post type. readOnly: true template_lock: type: - string - boolean enum: - all - insert - contentOnly - false description: The template_lock associated with the post type, or false if none. readOnly: true RestError: type: object description: WordPress REST API error envelope. properties: code: type: string description: Machine-readable error code, e.g. rest_post_invalid_id. message: type: string description: Human-readable error message. data: type: object properties: status: type: integer description: HTTP status code. required: - code - message responses: BadRequest: description: Invalid parameter. content: application/json: schema: $ref: '#/components/schemas/RestError' example: code: rest_invalid_param message: 'Invalid parameter(s): per_page' data: status: 400 Unauthorized: description: Authentication required. content: application/json: schema: $ref: '#/components/schemas/RestError' example: code: rest_forbidden message: Sorry, you are not allowed to do that. data: status: 401 Forbidden: description: Authenticated but not permitted. content: application/json: schema: $ref: '#/components/schemas/RestError' example: code: rest_cannot_create message: Sorry, you are not allowed to create posts as this user. data: status: 403 NotFound: description: No route or resource matched. content: application/json: schema: $ref: '#/components/schemas/RestError' example: code: rest_post_invalid_id message: Invalid post ID. data: status: 404 x-generated-from: https://www.state.gov/wp-json/ route index + HTTP OPTIONS on each collection and item route (fetched 2026-09-07) x-apievangelist-method: derived x-method: derived x-source-url: https://www.state.gov/wp-json/ x-provenance: Derived by the API Evangelist enrichment pipeline on 2026-09-07 from the Department of State's own live machine-readable discovery documents — the 473-route index at https://www.state.gov/wp-json/ and an HTTP OPTIONS response for each collection and item route, which returns the provider-authored JSON Schema and argument list. Every path, parameter, schema and error code below appears in one of those documents. The Department does not publish an OpenAPI description; verbatim copies of the source documents are in openapi/_original/. NOT harvested, NOT scaffolded — do not treat as a provider-published contract.