-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
models/br_stf_corte_aberta/br_stf_corte_aberta__decisoes.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{{ | ||
config( | ||
schema='br_stf_corte_aberta', | ||
alias='decisoes', | ||
materialized='table', | ||
partition_by={ | ||
"field": "ano", | ||
"data_type": "int64", | ||
"range": { | ||
"start": 2000, | ||
"end": 2023, | ||
"interval": 1} | ||
}, | ||
labels = {'tema': 'direito'}, | ||
) | ||
}} | ||
|
||
SELECT | ||
SAFE_CAST(ano AS INT64) ano, | ||
SAFE_CAST(classe AS STRING) classe, | ||
SAFE_CAST(numero AS STRING) numero, | ||
INITCAP(relator) relator, | ||
SAFE_CAST(link AS STRING) link, | ||
INITCAP(subgrupo_andamento) subgrupo_andamento, | ||
INITCAP(andamento) andamento, | ||
INITCAP(observacao_andamento_decisao) observacao_andamento_decisao, | ||
INITCAP(modalidade_julgamento) modalidade_julgamento, | ||
INITCAP(tipo_julgamento) tipo_julgamento, | ||
INITCAP(meio_tramitacao) meio_tramitacao, | ||
SAFE_CAST(indicador_tramitacao AS BOOL) indicador_tramitacao, | ||
INITCAP(assunto_processo) assunto_processo, | ||
INITCAP(ramo_direito) ramo_direito, | ||
SAFE_CAST(data_autuacao AS DATE) data_autuacao, | ||
SAFE_CAST(data_decisao AS DATE) data_decisao, | ||
SAFE_CAST(data_baixa_processo AS DATE) data_baixa_processo | ||
FROM basedosdados-staging.br_stf_corte_aberta_staging.decisoes AS t |
9 changes: 9 additions & 0 deletions
9
models/br_stf_corte_aberta/br_stf_corte_aberta__dicionario.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{{ config(alias='dicionario', schema='br_stf_corte_aberta') }} | ||
|
||
SELECT | ||
SAFE_CAST(id_tabela AS STRING) id_tabela, | ||
SAFE_CAST(nome_coluna AS STRING) nome_coluna, | ||
INITCAP(chave) chave, | ||
SAFE_CAST(cobertura_temporal AS STRING) cobertura_temporal, | ||
INITCAP(valor) valor | ||
FROM basedosdados-staging.br_stf_corte_aberta_staging.dicionario AS t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
version: 2 | ||
|
||
models: | ||
- name: br_stf_corte_aberta__decisoes | ||
description: "Decisões de corte aberta do STF" | ||
columns: | ||
- name: ano | ||
description: Ano da decisão | ||
- name: classe | ||
description: Tipo da classe | ||
- name: numero | ||
description: Número de identificação do processo judicial | ||
- name: relator | ||
description: Relator do processo | ||
- name: link | ||
description: Link do processo | ||
- name: subgrupo_andamento | ||
description: Subgrupo do andamento | ||
- name: andamento | ||
description: Andamento da decisão | ||
- name: observacao_andamento_decisao | ||
description: Observação sobre o andamento da decisão | ||
- name: modalidade_julgamento | ||
description: Modalidade do julgamento (eg. virtual, presencial, monocrática) | ||
- name: tipo_julgamento | ||
description: Tipo do julgamento (eg. colegiada, monocrático) | ||
- name: meio_tramitacao | ||
description: Meio da tramitação (eg. eletrônico, físico) | ||
- name: indicador_tramitacao | ||
description: Indica se o processo está em tramitação | ||
- name: assunto_processo | ||
description: Assunto do processo | ||
- name: ramo_direito | ||
description: Ramo de atuação do direito | ||
- name: data_autuacao | ||
description: Data de autuação | ||
- name: data_decisao | ||
description: Data da decisão | ||
- name: data_baixa_processo | ||
description: Data de baixa do processo | ||
|
||
|
||
- name: br_stf_corte_aberta__dicionario | ||
description: "Dicionário de dados referente a tabela de decisões de corte aberta do STF" | ||
columns: | ||
- name: id_tabela | ||
description: ID da tabela | ||
- name: nome_coluna | ||
description: Nome da coluna | ||
- name: chave | ||
description: Chave | ||
- name: cobertura_temporal | ||
description: Cobertura temporal | ||
- name: valor | ||
description: Valor |