|
702 | 702 | "community": {
|
703 | 703 | "type": "string",
|
704 | 704 | "description": "Identificador da comunidade",
|
705 |
| - "example": "test" |
| 705 | + "example": "idcomunidadeteste" |
706 | 706 | }
|
707 | 707 | }
|
708 | 708 | },
|
709 | 709 | "secret": {
|
710 | 710 | "type": "string",
|
711 |
| - "description": "Chave secreta específica do app" |
| 711 | + "description": "Chave secreta específica do app", |
| 712 | + "example": "exemplo1-e000-11xe-2m33-4444444plo" |
712 | 713 | }
|
713 | 714 | }
|
714 | 715 | },
|
|
730 | 731 | "limit": {
|
731 | 732 | "type": "number",
|
732 | 733 | "format": "integer",
|
733 |
| - "description": "Quantidade máxima de publicações que devem ser retornadas" |
| 734 | + "description": "Quantidade máxima de publicações que devem ser retornadas", |
| 735 | + "example": 10 |
734 | 736 | },
|
735 | 737 | "after": {
|
736 | 738 | "type": "string",
|
|
761 | 763 | "limit": {
|
762 | 764 | "type": "number",
|
763 | 765 | "format": "integer",
|
764 |
| - "description": "Quantidade máxima de eventos que devem ser retornados" |
| 766 | + "description": "Quantidade máxima de eventos que devem ser retornados", |
| 767 | + "example": 10 |
765 | 768 | },
|
766 | 769 | "after": {
|
767 | 770 | "type": "string",
|
|
914 | 917 | "properties": {
|
915 | 918 | "id": {
|
916 | 919 | "type": "string",
|
917 |
| - "description": "Identificador do usuário" |
| 920 | + "description": "Identificador do usuário", |
| 921 | + "example": "61b087e1a608106241d30a8a" |
918 | 922 | },
|
919 | 923 | "name": {
|
920 | 924 | "type": "string",
|
|
1544 | 1548 | },
|
1545 | 1549 | "url": {
|
1546 | 1550 | "type": "string",
|
1547 |
| - "description": "URL para fazer download do anexo. Obrigatóriamente uma url HTTPS", |
| 1551 | + "description": "URL para fazer download do anexo. Obrigatoriamente uma url HTTPS", |
1548 | 1552 | "example": "https://calculo.pdf"
|
1549 | 1553 | }
|
1550 | 1554 | }
|
|
1686 | 1690 | },
|
1687 | 1691 | "url": {
|
1688 | 1692 | "type": "string",
|
1689 |
| - "description": "URL para fazer download do anexo. Obrigatóriamente uma url HTTPS", |
| 1693 | + "description": "URL para fazer download do anexo. Obrigatoriamente uma url HTTPS", |
1690 | 1694 | "example": "https://calculo.pdf"
|
1691 | 1695 | }
|
1692 | 1696 | }
|
|
1712 | 1716 | "properties": {
|
1713 | 1717 | "url": {
|
1714 | 1718 | "type": "string",
|
1715 |
| - "description": "URL para videoconferência. Obrigatóriamente uma url HTTPS", |
| 1719 | + "description": "URL para videoconferência. Obrigatoriamente uma url HTTPS", |
1716 | 1720 | "example": "https://meet.google.com/ABCD"
|
1717 | 1721 | },
|
1718 | 1722 | "type": {
|
|
2017 | 2021 | },
|
2018 | 2022 | "url": {
|
2019 | 2023 | "type": "string",
|
2020 |
| - "description": "URL para fazer download do anexo. Obrigatóriamente uma url HTTPS", |
| 2024 | + "description": "URL para fazer download do anexo. Obrigatoriamente uma url HTTPS", |
2021 | 2025 | "example": "https://calculo.pdf"
|
2022 | 2026 | }
|
2023 | 2027 | }
|
|
2313 | 2317 | },
|
2314 | 2318 | "url": {
|
2315 | 2319 | "type": "string",
|
2316 |
| - "description": "URL para fazer download do anexo. Obrigatóriamente uma url HTTPS", |
| 2320 | + "description": "URL para fazer download do anexo. Obrigatoriamente uma url HTTPS", |
2317 | 2321 | "example": "https://calculo.pdf"
|
2318 | 2322 | }
|
2319 | 2323 | }
|
|
2435 | 2439 | }
|
2436 | 2440 | }
|
2437 | 2441 | }
|
| 2442 | + }, |
| 2443 | + "attachments": { |
| 2444 | + "type": "array", |
| 2445 | + "description": "Arquivo com quadro horário", |
| 2446 | + "items": { |
| 2447 | + "type": "object", |
| 2448 | + "required": [ |
| 2449 | + "title", |
| 2450 | + "type", |
| 2451 | + "url" |
| 2452 | + ], |
| 2453 | + "properties": { |
| 2454 | + "title": { |
| 2455 | + "type": "string", |
| 2456 | + "description": "Título do anexo", |
| 2457 | + "example": "Horarios.pdf" |
| 2458 | + }, |
| 2459 | + "type": { |
| 2460 | + "type": "string", |
| 2461 | + "enum": [ |
| 2462 | + "file", |
| 2463 | + "link", |
| 2464 | + "image" |
| 2465 | + ], |
| 2466 | + "description": "Tipo do anexo", |
| 2467 | + "example": "file`" |
| 2468 | + }, |
| 2469 | + "url": { |
| 2470 | + "type": "string", |
| 2471 | + "description": "URL para fazer download do anexo. Obrigatoriamente uma url HTTPS", |
| 2472 | + "example": "https://Horarios.pdf" |
| 2473 | + } |
| 2474 | + } |
| 2475 | + } |
2438 | 2476 | }
|
2439 | 2477 | }
|
2440 | 2478 | }
|
|
2729 | 2767 | },
|
2730 | 2768 | "url": {
|
2731 | 2769 | "type": "string",
|
2732 |
| - "description": "URL do arquivo. Obrigatóriamente uma url HTTPS", |
| 2770 | + "description": "URL do arquivo. Obrigatoriamente uma url HTTPS", |
2733 | 2771 | "example": "https://hospitalexample.com.br/prontuariojaneiro.pdf"
|
2734 | 2772 | }
|
2735 | 2773 | }
|
|
2930 | 2968 | "properties": {
|
2931 | 2969 | "link": {
|
2932 | 2970 | "type": "string",
|
2933 |
| - "description": "URL de download do boleto. Obrigatóriamente uma url HTTPS", |
| 2971 | + "description": "URL de download do boleto. Obrigatoriamente uma url HTTPS", |
2934 | 2972 | "example": "https://boleto.pdf"
|
2935 | 2973 | },
|
2936 | 2974 | "code": {
|
|
2981 | 3019 | },
|
2982 | 3020 | "url": {
|
2983 | 3021 | "type": "string",
|
2984 |
| - "description": "Link para baixar o anexo. Obrigatóriamente uma url HTTPS", |
| 3022 | + "description": "Link para baixar o anexo. Obrigatoriamente uma url HTTPS", |
2985 | 3023 | "example": "https://url.para-download.com"
|
2986 | 3024 | }
|
2987 | 3025 | }
|
|
3547 | 3585 | "fields": {
|
3548 | 3586 | "type": "object",
|
3549 | 3587 | "description": "Campos personalizados para o grupo",
|
3550 |
| - "nullable": true |
| 3588 | + "nullable": true, |
| 3589 | + "properties": { |
| 3590 | + "@education:basic": { |
| 3591 | + "type": "object", |
| 3592 | + "description": "Campo personalizado de educação básica", |
| 3593 | + "required": [ |
| 3594 | + "nivel", |
| 3595 | + "periodo", |
| 3596 | + "tipo" |
| 3597 | + ], |
| 3598 | + "properties": { |
| 3599 | + "nivel": { |
| 3600 | + "type": "string", |
| 3601 | + "enum": [ |
| 3602 | + "EI:G0", |
| 3603 | + "EI:G1", |
| 3604 | + "EI:G2", |
| 3605 | + "EI:G3", |
| 3606 | + "EI:G4", |
| 3607 | + "EI:G5", |
| 3608 | + "EF:A1", |
| 3609 | + "EF:A2", |
| 3610 | + "EF:A3", |
| 3611 | + "EF:A4", |
| 3612 | + "EF:A5", |
| 3613 | + "EF:A6", |
| 3614 | + "EF:A7", |
| 3615 | + "EF:A8", |
| 3616 | + "EF:A9", |
| 3617 | + "EM:S1", |
| 3618 | + "EM:S2", |
| 3619 | + "EM:S3" |
| 3620 | + ], |
| 3621 | + "description": "Identificador da turma", |
| 3622 | + "example": "EM:S3" |
| 3623 | + }, |
| 3624 | + "periodo": { |
| 3625 | + "description": "Lista de identificadores de períodos relacionados a esse componente", |
| 3626 | + "type": "array", |
| 3627 | + "items": { |
| 3628 | + "type": "string", |
| 3629 | + "description": "Identificadores de períodos", |
| 3630 | + "example": [ |
| 3631 | + "manha", |
| 3632 | + "tarde" |
| 3633 | + ] |
| 3634 | + } |
| 3635 | + }, |
| 3636 | + "tipo": { |
| 3637 | + "type": "string", |
| 3638 | + "enum": [ |
| 3639 | + "regular", |
| 3640 | + "idiomas", |
| 3641 | + "extracurricular", |
| 3642 | + "integral" |
| 3643 | + ], |
| 3644 | + "description": "Tipo de ensino", |
| 3645 | + "example": "regular" |
| 3646 | + } |
| 3647 | + } |
| 3648 | + } |
| 3649 | + } |
3551 | 3650 | },
|
3552 | 3651 | "tags": {
|
3553 | 3652 | "type": "array",
|
|
0 commit comments